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 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'
|
|
}
|
|
}
|
|
}; |