mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 16:20:03 +00:00
20 lines
445 B
TypeScript
20 lines
445 B
TypeScript
import {Theme} from '../theme';
|
|
|
|
export const Violet: Theme = {
|
|
name: 'violet',
|
|
colors: {
|
|
primary: {
|
|
50: '#f2e7ff',
|
|
100: '#d4bdf8',
|
|
200: '#b592ee',
|
|
300: '#9867e5',
|
|
400: '#7b3cdd',
|
|
500: '#6122c3',
|
|
600: '#4b1a99',
|
|
700: '#36126e',
|
|
800: '#200944',
|
|
900: '#0d021c',
|
|
DEFAULT: '#6D28D9'
|
|
}
|
|
}
|
|
}; |