mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-16 00:30:02 +00:00
31 lines
729 B
TypeScript
31 lines
729 B
TypeScript
import {Theme} from "../theme";
|
|
|
|
export const Rose: Theme = {
|
|
name: 'rose',
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#E11D48',
|
|
100: '#fbb9c8',
|
|
200: '#f28da4',
|
|
300: '#ec607f',
|
|
400: '#e5345b',
|
|
500: '#cb1a41',
|
|
600: '#9f1233',
|
|
700: '#730b23',
|
|
800: '#470415',
|
|
900: '#1e0006'
|
|
},
|
|
secondary: {
|
|
DEFAULT: '#1acba4',
|
|
100: '#cdf9ef',
|
|
200: '#9cf2df',
|
|
300: '#6aecd0',
|
|
400: '#38e5c0',
|
|
500: '#1acba4',
|
|
600: '#15a284',
|
|
700: '#107a63',
|
|
800: '#0b5142',
|
|
900: '#052921'
|
|
}
|
|
}
|
|
}; |