mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 16:20:03 +00:00
20 lines
443 B
TypeScript
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'
|
|
}
|
|
}
|
|
}; |