1
Fork 0
tildes-reextended/source/ts/theme-colors.ts

16 lines
567 B
TypeScript
Raw Normal View History

export type ColorKey = keyof typeof themeColors;
2019-11-10 17:38:47 +00:00
export const themeColors = {
backgroundPrimary: '--background-primary-color',
backgroundSecondary: '--background-secondary-color',
foregroundPrimary: '--foreground-primary-color',
foregroundSecondary: '--foreground-secondary-color',
exemplary: '--comment-label-exemplary-color',
offtopic: '--comment-label-offtopic-color',
joke: '--comment-label-joke-color',
noise: '--comment-label-noise-color',
malice: '--comment-label-malice-color',
mine: '--stripe-mine-color',
official: '--alert-color'
2019-11-10 17:38:47 +00:00
};