From 0eddfa4073201e33d6aa4c9fada293ef391511dd Mon Sep 17 00:00:00 2001 From: Art Date: Fri, 3 Feb 2023 13:33:13 +0100 Subject: [PATCH] fix(ui-toolkit): dark and light shades mismatch (#2841) --- libs/tailwindcss-config/src/theme.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libs/tailwindcss-config/src/theme.js b/libs/tailwindcss-config/src/theme.js index 6937e8809..6385dfd58 100644 --- a/libs/tailwindcss-config/src/theme.js +++ b/libs/tailwindcss-config/src/theme.js @@ -99,20 +99,20 @@ module.exports = { // DARK dark: { - 400: '#161616', - 300: '#262626', + 100: '#161616', + 150: '#262626', 200: '#404040', - 150: '#8B8B8B', - 100: '#C0C0C0', + 300: '#8B8B8B', + 400: '#C0C0C0', }, // LIGHT light: { - 400: '#F0F0F0', - 300: '#E9E9E9', + 100: '#F0F0F0', + 150: '#E9E9E9', 200: '#D2D2D2', - 150: '#939393', - 100: '#626262', + 300: '#939393', + 400: '#626262', }, }, danger: '#FF077F',