OpenGlass/sources/app/components/theme.ts

23 lines
388 B
TypeScript

export const Theme = {
// Core
background: '#000',
accent: '#fff',
divider: '#f0f0f0',
// Text
text: '#fff',
textSecondary: '#8E8E90',
textInverted: '#000',
// backgroundAccent: '#FF2E00',
warninig: '#FF2E00',
};
export const ThemeApp = {
button: {
text: Theme.textInverted,
bg: '#fff',
bgPressed: '#f0f0f0',
}
}