Spaces:
Runtime error
Runtime error
File size: 468 Bytes
8fd7a1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
const guiColors = {
'motion-primary': 'hsla(260, 60%, 60%, 1)',
'motion-primary-transparent': 'hsla(260, 60%, 60%, 0.9)',
'motion-tertiary': 'hsla(260, 42%, 51%, 1)',
'looks-secondary': 'hsla(260, 60%, 60%, 1)',
'looks-transparent': 'hsla(260, 60%, 60%, 0.35)',
'looks-light-transparent': 'hsla(260, 60%, 60%, 0.15)',
'looks-secondary-dark': 'hsla(260, 42%, 51%, 1)'
};
const blockColors = {};
export {
guiColors,
blockColors
};
|