From ef5d23abb620ac4288e7a08b7bc7ef1045babb97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hasret=20Sultan=20=C3=9Cnal?= Date: Mon, 11 Nov 2024 15:41:46 +0300 Subject: [PATCH] feat: change tailwind primary colors variables --- tailwind.config.js | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/tailwind.config.js b/tailwind.config.js index 6f099f9..819b760 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -26,8 +26,32 @@ export default { extend: { colors: { primary: { - dark: '#008029', + 50: '#eefff2', + 100: '#d7ffe3', + 200: '#b2ffc9', + 300: '#76ffa1', + 400: '#33f571', + 500: '#09de4d', + 600: '#00b73b', + 700: '#049132', + 800: '#0a712c', + 900: '#0a5d27', + 950: '#003413', + dark: { + 50: '#f6f6f6', + 100: '#e7e7e7', + 200: '#d1d1d1', + 300: '#b0b0b0', + 400: '#888888', + 500: '#6d6d6d', + 600: '#5d5d5d', + 700: '#4f4f4f', + 800: '#454545', + 900: '#3d3d3d', + 950: '#1e1e1e', + }, DEFAULT: '#00B73B', + white: '#ffffff' }, secondary: { dark: '#0D3B66',