2020-10-03 11:20:12 +00:00
|
|
|
export type ColorKey = keyof typeof themeColors;
|
2019-11-10 17:38:47 +00:00
|
|
|
|
|
|
|
export const themeColors = {
|
2020-10-03 11:20:12 +00:00
|
|
|
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
|
|
|
};
|