Files
gameyfin/src/main/frontend/theming/themes/gameyfin-classic.ts
T
grimsi ff0d34e3a5 Added colorblind theme
Refactored other themes & theming in general
2024-09-25 20:33:59 +02:00

31 lines
752 B
TypeScript

import {Theme} from '../theme';
export const GameyfinClassic: Theme = {
name: 'gameyfin-classic',
colors: {
primary: {
DEFAULT: '#16A34A',
100: '#b8f7cf',
200: '#8ef0b2',
300: '#62ea94',
400: '#38e476',
500: '#20ca5d',
600: '#159d47',
700: '#0b7032',
800: '#02431d',
900: '#001804'
},
secondary: {
DEFAULT: '#ca208d',
100: '#f8cfe9',
200: '#f0a0d3',
300: '#e970bc',
400: '#e140a6',
500: '#ca208d',
600: '#a21970',
700: '#7a1354',
800: '#510d38',
900: '#29061c'
}
}
};