Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | 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]; |