added name property to themes

This commit is contained in:
moist-webDev 2023-05-25 00:31:59 -04:00
parent 4b14b478d0
commit 687702df0b
1 changed files with 18 additions and 5 deletions

View File

@ -1,17 +1,30 @@
export const darkTheme = {
export type Theme = {
name: string;
text: string,
background: string,
primary: string,
secondary: string,
accent: string,
statusbar: 'light' | 'dark',
}
export const darkTheme: Theme = {
name: 'dark',
text: "#edecf3",
background: "#0f0e16",
primary: "#60496f",
secondary: "#1f141e",
accent: "#31202f",
statusbar: "light",
statusbar: 'light',
}
export const lightTheme = {
export const lightTheme: Theme = {
name: 'light',
text: "#0e1b17",
background: "#e1efea",
primary: "#519e85",
secondary: "#ebf5f1",
accent: "#5dac92",
statusbar: "dark",
}
statusbar: 'dark',
}