17 lines
348 B
TypeScript
17 lines
348 B
TypeScript
export const darkTheme = {
|
|
text: "#edecf3",
|
|
background: "#0f0e16",
|
|
primary: "#60496f",
|
|
secondary: "#1f141e",
|
|
accent: "#31202f",
|
|
statusbar: "light",
|
|
}
|
|
|
|
export const lightTheme = {
|
|
text: "#0e1b17",
|
|
background: "#e1efea",
|
|
primary: "#519e85",
|
|
secondary: "#ebf5f1",
|
|
accent: "#5dac92",
|
|
statusbar: "dark",
|
|
} |