Finish theming implementation (finally...)

This commit is contained in:
grimsi
2024-05-14 10:22:17 +02:00
parent 47f8febbd2
commit f9d4e16604
45 changed files with 475 additions and 14951 deletions
+21
View File
@@ -0,0 +1,21 @@
export type Theme = {
name?: string,
colors: {
background?: string,
foreground?: string,
primary: {
50: string,
100: string,
200: string,
300: string,
400: string,
500: string,
600: string,
700: string,
800: string,
900: string,
DEFAULT: string
},
focus?: string,
}
}