Add colors.js

This commit is contained in:
René Preuß
2022-10-30 14:45:08 +01:00
parent 04dc159ef5
commit 27ea349b22

22
colors.js Normal file
View File

@@ -0,0 +1,22 @@
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'
},
};