mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-16 16:20:04 +00:00
20 lines
464 B
TypeScript
20 lines
464 B
TypeScript
import {Theme} from '../theme';
|
|
|
|
export const GameyfinClassic: Theme = {
|
|
name: 'gameyfin-classic',
|
|
colors: {
|
|
primary: {
|
|
50: '#e1ffec',
|
|
100: '#b8f7cf',
|
|
200: '#8ef0b2',
|
|
300: '#62ea94',
|
|
400: '#38e476',
|
|
500: '#20ca5d',
|
|
600: '#159d47',
|
|
700: '#0b7032',
|
|
800: '#02431d',
|
|
900: '#001804',
|
|
DEFAULT: '#16A34A'
|
|
}
|
|
}
|
|
}; |