mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-16 08:15:48 +00:00
20 lines
462 B
TypeScript
20 lines
462 B
TypeScript
import {Theme} from '../theme';
|
|
|
|
export const GameyfinViolet: Theme = {
|
|
name: 'gameyfin-violet',
|
|
colors: {
|
|
primary: {
|
|
50: '#f3ebff',
|
|
100: '#d5c7ed',
|
|
200: '#b7a4dd',
|
|
300: '#9a7fce',
|
|
400: '#7d5abe',
|
|
500: '#6441a5',
|
|
600: '#4e3281',
|
|
700: '#37235d',
|
|
800: '#21153a',
|
|
900: '#0d0519',
|
|
DEFAULT: '#6441a5'
|
|
}
|
|
}
|
|
}; |