mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 16:20:03 +00:00
20 lines
441 B
TypeScript
20 lines
441 B
TypeScript
import {Theme} from '../theme';
|
|
|
|
export const Blue: Theme = {
|
|
name: 'blue',
|
|
colors: {
|
|
primary: {
|
|
50: '#e3eeff',
|
|
100: '#b6cdfe',
|
|
200: '#88abf7',
|
|
300: '#5b8af1',
|
|
400: '#2d69ec',
|
|
500: '#134fd2',
|
|
600: '#0b3da4',
|
|
700: '#052c77',
|
|
800: '#001a4a',
|
|
900: '#00091e',
|
|
DEFAULT: '#2563EB'
|
|
}
|
|
}
|
|
}; |