diff --git a/colors.js b/colors.js index 810db34..ffaf462 100644 --- a/colors.js +++ b/colors.js @@ -1,22 +1,25 @@ -export let colors = { +let colors = { primary: { - '50': '#78FFED', - '100': '#63FFEA', - '200': '#3AFFE4', - '300': '#12FFDF', - '400': '#00E8C8', + DEFAULT: '#00BFA5', + '50': '#A6FFF3', + '100': '#8CFFEF', + '200': '#59FFE8', + '300': '#26FFE1', + '400': '#00F2D1', '500': '#00BFA5', - '600': '#008775', - '700': '#004F44', - '800': '#001714', - '900': '#000000' + '600': '#00917D', + '700': '#006356', + '800': '#00352E', + '900': '#000706' }, base: { - 'DEFAULT': '#070709', + DEFAULT: '#070709', '500': '#3a3a3d', '600': '#26262c', '700': '#1f1f23', '800': '#18181b', '900': '#0e0e10' }, -}; \ No newline at end of file +}; + +module.exports = (colors.__esModule ? colors : { default: colors }).default \ No newline at end of file