Our app offers multiple color themes that can be selected from your profile settings. Each theme maintains consistency across both light and dark modes while providing its own unique aesthetic.
Default
Ocean
Emerald
Rose
Violet
You can change your theme anytime by:
Each theme automatically adjusts for light and dark mode preferences while maintaining its distinct color palette.
#15191F#fff6ec#FFFFFF#739DFF#868687#FC7575#23868C#FFFFFF#8E8E93#FFFFFF#15191F#1C1C1E#739DFF#868687#FC7575#23868C#FFFFFF#8E8E93When users switch their device's display settings, our app automatically detects and applies the corresponding theme. This ensures a smooth transition between light and dark modes, offering optimal readability and comfort in any environment.
javascript
export const Colors = {
default: {
light: {
text: '#15191F',
background: '#fff6ec',
cardBackground: '#FFFFFF',
primary: '#739DFF',
secondary: '#868687',
error: '#FC7575',
success: '#23868C',
whitetext: '#FFFFFF',
buttonDisabled: '#8E8E93',
},
dark: {
text: '#FFFFFF',
background: '#15191F',
cardBackground: '#1C1C1E',
primary: '#739DFF',
secondary: '#868687',
error: '#FC7575',
success: '#23868C',
whitetext: '#FFFFFF',
buttonDisabled: '#8E8E93',
},
},
};