From 27ea349b22887a2e36b15157d36dbb8f150086bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Preu=C3=9F?= Date: Sun, 30 Oct 2022 14:45:08 +0100 Subject: [PATCH] Add colors.js --- colors.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 colors.js diff --git a/colors.js b/colors.js new file mode 100644 index 0000000..810db34 --- /dev/null +++ b/colors.js @@ -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' + }, +}; \ No newline at end of file