Files
gameyfin/frontend/theming/themes/slate.ts
T
2024-05-14 10:22:17 +02:00

20 lines
443 B
TypeScript

import {Theme} from "../theme";
export const Slate: Theme = {
name: 'slate',
colors: {
primary: {
50: '#eaf3ff',
100: '#cfd7e4',
200: '#b2bdcd',
300: '#95a3b7',
400: '#7788a1',
500: '#5e6f88',
600: '#48566a',
700: '#323e4d',
800: '#1d2531',
900: '#040d17',
DEFAULT: '#475569'
}
}
};