export const SKIN_DARK = 'dark'; export const SKIN_LIGHT = 'light'; export const COLOR_GREEN = 'green'; export const COLOR_BLUE = 'blue'; export const COLOR_DARK_BLUE = 'darkBlue'; export const COLOR_VIOLET = 'violet'; export const COLOR_LIGHT_VIOLET = 'lightViolet'; export const COLOR_ORANGE = 'orange'; export const COLOR_RED = 'red'; export const COLOR_BLACK = 'black'; export const COLOR_LIGHT = 'light'; export const colors = [ COLOR_GREEN, COLOR_BLUE, COLOR_DARK_BLUE, COLOR_VIOLET, COLOR_LIGHT_VIOLET, COLOR_ORANGE, COLOR_RED, COLOR_BLACK, COLOR_LIGHT ]; export const skins = [SKIN_DARK, SKIN_LIGHT];