From 72d99cc3539bcd005e523ddd6a6b69ab256628cc Mon Sep 17 00:00:00 2001 From: Vicki League Date: Thu, 25 Apr 2024 15:58:58 -0400 Subject: [PATCH] add other colors used in layout --- libs/components/src/tw-theme.css | 6 ++++++ libs/components/tailwind.config.base.js | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/libs/components/src/tw-theme.css b/libs/components/src/tw-theme.css index 46e520a7a2..00ab2ff717 100644 --- a/libs/components/src/tw-theme.css +++ b/libs/components/src/tw-theme.css @@ -17,7 +17,11 @@ --color-background-alt3: 18 82 163; --color-background-alt4: 13 60 119; + /* Can only be used behind the extension refresh flag */ + --color-primary-100: 200 217 249; --color-primary-300: 103 149 232; + /* Can only be used behind the extension refresh flag */ + --color-primary-500: 23 93 220; --color-primary-600: 23 93 220; --color-primary-700: 18 82 163; @@ -61,7 +65,9 @@ --color-background-alt3: 47 52 61; --color-background-alt4: 16 18 21; + --color-primary-100: 8 31 73; --color-primary-300: 23 93 220; + --color-primary-500: 54 117 232; --color-primary-600: 106 153 240; --color-primary-700: 180 204 249; diff --git a/libs/components/tailwind.config.base.js b/libs/components/tailwind.config.base.js index f1dc2151cb..12af316b38 100644 --- a/libs/components/tailwind.config.base.js +++ b/libs/components/tailwind.config.base.js @@ -24,7 +24,11 @@ module.exports = { current: colors.current, black: colors.black, primary: { + // Can only be used behind the extension refresh flag + 100: rgba("--color-primary-100"), 300: rgba("--color-primary-300"), + // Can only be used behind the extension refresh flag + 500: rgba("--color-primary-500"), 600: rgba("--color-primary-600"), 700: rgba("--color-primary-700"), },