mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 16:20:03 +00:00
20 lines
439 B
TypeScript
20 lines
439 B
TypeScript
import {Theme} from '../theme';
|
|
|
|
export const Red: Theme = {
|
|
name: 'red',
|
|
colors: {
|
|
primary: {
|
|
50: '#ffe5e5',
|
|
100: '#f9bbbb',
|
|
200: '#ef9090',
|
|
300: '#e76464',
|
|
400: '#df3939',
|
|
500: '#c62020',
|
|
600: '#9b1718',
|
|
700: '#6f0f11',
|
|
800: '#450708',
|
|
900: '#1e0000',
|
|
DEFAULT: '#DC2626'
|
|
}
|
|
}
|
|
}; |