Files
ui-old/colors.js
René Preuß 27ea349b22 Add colors.js
2022-10-30 14:45:08 +01:00

22 lines
482 B
JavaScript

export let colors = {
primary: {
'50': '#78FFED',
'100': '#63FFEA',
'200': '#3AFFE4',
'300': '#12FFDF',
'400': '#00E8C8',
'500': '#00BFA5',
'600': '#008775',
'700': '#004F44',
'800': '#001714',
'900': '#000000'
},
base: {
'DEFAULT': '#070709',
'500': '#3a3a3d',
'600': '#26262c',
'700': '#1f1f23',
'800': '#18181b',
'900': '#0e0e10'
},
};