mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-16 16:20:04 +00:00
ff0d34e3a5
Refactored other themes & theming in general
31 lines
752 B
TypeScript
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'
|
|
}
|
|
}
|
|
}; |