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

Background (0dp elevation surface overlay)
Surface (with 1dp elevation surface overlay)
Primary
Secondary
On background
On Surface
On Primary
On Secondary
to update your colors, go to src/theme/theme.colors.ts
and update the dark and light colors of your choice:
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"
}
};
Last updated
Was this helpful?