mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-16 08:15:48 +00:00
20 lines
445 B
TypeScript
20 lines
445 B
TypeScript
import {Theme} from "../theme";
|
|
|
|
export const Purple: Theme = {
|
|
name: 'purple',
|
|
colors: {
|
|
primary: {
|
|
50: '#ffe6ff',
|
|
100: '#f2b9f9',
|
|
200: '#e78df3',
|
|
300: '#dc5fed',
|
|
400: '#d132e6',
|
|
500: '#b91acd',
|
|
600: '#9012a0',
|
|
700: '#670b73',
|
|
800: '#3f0547',
|
|
900: '#19001b',
|
|
DEFAULT: '#DD62ED'
|
|
}
|
|
}
|
|
}; |