mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 16:20:03 +00:00
20 lines
441 B
TypeScript
20 lines
441 B
TypeScript
import {Theme} from "../theme";
|
|
|
|
export const Rose: Theme = {
|
|
name: 'rose',
|
|
colors: {
|
|
primary: {
|
|
50: '#ffe4ed',
|
|
100: '#fbb9c8',
|
|
200: '#f28da4',
|
|
300: '#ec607f',
|
|
400: '#e5345b',
|
|
500: '#cb1a41',
|
|
600: '#9f1233',
|
|
700: '#730b23',
|
|
800: '#470415',
|
|
900: '#1e0006',
|
|
DEFAULT: '#E11D48'
|
|
}
|
|
}
|
|
}; |