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

20 lines
445 B
TypeScript

import {Theme} from '../theme';
export const Orange: Theme = {
name: 'orange',
colors: {
primary: {
50: '#ffedde',
100: '#ffcdb2',
200: '#fbac84',
300: '#f78c54',
400: '#f46c25',
500: '#da520b',
600: '#ab3f07',
700: '#7a2d03',
800: '#4b1900',
900: '#1f0600',
DEFAULT: '#EA580C'
}
}
};