mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-16 08:15:48 +00:00
20 lines
458 B
TypeScript
20 lines
458 B
TypeScript
import {Theme} from '../theme';
|
|
|
|
export const GameyfinBlue: Theme = {
|
|
name: 'gameyfin-blue',
|
|
colors: {
|
|
primary: {
|
|
50: '#e7eaff',
|
|
100: '#bdc3f9',
|
|
200: '#919bee',
|
|
300: '#6672e5',
|
|
400: '#3c4add',
|
|
500: '#2231c3',
|
|
600: '#1a2699',
|
|
700: '#101b6f',
|
|
800: '#070f45',
|
|
900: '#02041d',
|
|
DEFAULT: '#2332c8'
|
|
}
|
|
}
|
|
}; |