mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 16:20:03 +00:00
20 lines
447 B
TypeScript
20 lines
447 B
TypeScript
import {Theme} from '../theme';
|
|
|
|
export const Neutral: Theme = {
|
|
name: 'neutral',
|
|
colors: {
|
|
primary: {
|
|
50: '#fceff2',
|
|
100: '#ddd7d9',
|
|
200: '#c1bfbf',
|
|
300: '#a6a6a6',
|
|
400: '#8c8c8c',
|
|
500: '#737373',
|
|
600: '#595959',
|
|
700: '#413f40',
|
|
800: '#292526',
|
|
900: '#16090d',
|
|
DEFAULT: '#525252'
|
|
}
|
|
}
|
|
}; |