12345678910111213141516171819202122232425262728 |
- /**
- * Don't modify this file!
- * Colors generated by themes!
- */
- /* eslint-disable */
- export const colors = {
- 'light': '#ddd',
- 'stable': '#b2b2b2',
- 'positive': '#387ef5',
- 'calm': '#11c1f3',
- 'balanced': '#33cd5f',
- 'energized': '#ffc900',
- 'assertive': '#ef473a',
- 'royal': '#886aea',
- 'dark': '#444',
- }
- export const isPresetColor = (color) => {
- if (!color) {
- return false
- }
- return colors[color] ? colors[color] : color
- }
- /* eslint-enable */
|