Theme (Dark / Light Mode)
The app supports dark/light mode

Last updated
The app supports dark/light mode

Last updated
export const themes: ThemeColors = {
light: {
background: "#f7f7f7",
surface: "#ffffff",
primary: "#6002ee",
secondary: "#6002ee",
onBackground: "#101010",
onSurface: "#1c1c1c",
onPrimary: "#ffffff",
onSecondary: "#ffffff",
// extras
type: "light",
font: "Avenir Next"
},
dark: {
background: "#101010",
surface: "#1c1c1c",
primary: "#bb86fb",
secondary: "#59dbc6",
onBackground: "#cecece",
onSurface: "#e1e1e1",
onPrimary: "#000000",
onSecondary: "#000000",
// extras
type: "dark",
font: "Avenir Next"
}
};