@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
14 lines • 773 B
JavaScript
export const LIBRARY_COMPONENT = 'component';
export const LIBRARY_DOT = 'dot';
export const LIBRARY_SVG = 'svg';
export const THEME_APPEARANCE_LIGHT = 'light';
export const THEME_APPEARANCE_DARK = 'dark';
export const THEME_APPEARANCE_PURE_DARK = 'pureDark';
export const THEME_COLOR_BLUE = 'blue';
export const THEME_COLOR_GREEN = 'green';
export const THEME_COLOR_ORANGE = 'orange';
export const THEME_COLOR_RED = 'red';
export const THEME_COLOR_YELLOW = 'yellow';
export const LIBRARIES = [LIBRARY_COMPONENT, LIBRARY_DOT, LIBRARY_SVG];
export const THEME_APPEARANCES = [THEME_APPEARANCE_LIGHT, THEME_APPEARANCE_DARK, THEME_APPEARANCE_PURE_DARK];
export const THEME_COLORS = [THEME_COLOR_BLUE, THEME_COLOR_GREEN, THEME_COLOR_ORANGE, THEME_COLOR_RED, THEME_COLOR_YELLOW];