Remove colors

This commit is contained in:
2025-02-08 02:38:41 -05:00
parent f4794fb817
commit 7f4e7ead40
36 changed files with 855 additions and 1138 deletions

View File

@@ -4,9 +4,25 @@ export default {
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {},
extend: {
colors: {
hBackground: "var(--h-background)",
hOnBackground: "var(--h-on-background)",
hSurface: "var(--h-surface)",
hOnSurface: "var(--h-on-surface)",
hPrimary: "var(--h-primary)",
hOnPrimary: "var(--h-on-primary)",
hSecondary: "var(--h-secondary)",
hOnSecondary: "var(--h-on-secondary)",
hTertiary: "var(--h-tertiary)",
hOnTertiary: "var(--h-on-tertiary)",
hError: "var(--h-error)",
hOnError: "var(--h-on-error)",
}
}
},
plugins: [],
plugins: []
}