From 4627569924c6255ae6ed3a7df2023d3de8e643b7 Mon Sep 17 00:00:00 2001 From: Ahmed Hussien Date: Mon, 9 Sep 2024 13:36:21 +0300 Subject: [PATCH 1/3] upgrade BackgroundPrimary color --- packages/ui/src/theme/roots/palette/entity/default-palette.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui/src/theme/roots/palette/entity/default-palette.ts b/packages/ui/src/theme/roots/palette/entity/default-palette.ts index ea2838fb..04611850 100644 --- a/packages/ui/src/theme/roots/palette/entity/default-palette.ts +++ b/packages/ui/src/theme/roots/palette/entity/default-palette.ts @@ -35,8 +35,8 @@ export const groupedPalette = { [Color.BackgroundActive]: 'rgba(243, 247, 250, 1)', // #F3F7FA [Color.BackgroundBaseLight]: 'rgba(235, 239, 252, 1)', // #EBEFFC [Color.BackgroundBaseMedium]: 'rgba(227, 231, 251, 1)', // #E3E7FB - [Color.BackgroundPrimary]: 'rgba(248, 250, 251, 1)', // #f8fafb - [Color.BackgroundPrimaryLight]: 'rgba(243, 245, 247, 1)', // ##F3F5F7 + [Color.BackgroundPrimary]: 'rgba(243, 245, 247, 1)', // #F3F5F7 + [Color.BackgroundPrimaryLight]: 'rgba(243, 245, 247, 1)', // Not used #F3F5F7 [Color.BackgroundPrimaryHover]: 'rgba(239, 243, 246, 1)', // #eff3f6 [Color.BackgroundPrimaryActive]: 'rgba(93, 109, 126, 1)', // #5d6d7e [Color.BackgroundPrimary_0_5_Opacity]: 'rgba(255, 255, 255, 0.500)', From 75f2fdd23daf43beb697a453020297c5d75140ee Mon Sep 17 00:00:00 2001 From: Ahmed Hussien Date: Tue, 10 Sep 2024 14:01:02 +0300 Subject: [PATCH 2/3] upgrade BackgroundPrimary color --- packages/ui/src/theme/roots/palette/entity/default-palette.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/ui/src/theme/roots/palette/entity/default-palette.ts b/packages/ui/src/theme/roots/palette/entity/default-palette.ts index 04611850..76816be1 100644 --- a/packages/ui/src/theme/roots/palette/entity/default-palette.ts +++ b/packages/ui/src/theme/roots/palette/entity/default-palette.ts @@ -36,7 +36,8 @@ export const groupedPalette = { [Color.BackgroundBaseLight]: 'rgba(235, 239, 252, 1)', // #EBEFFC [Color.BackgroundBaseMedium]: 'rgba(227, 231, 251, 1)', // #E3E7FB [Color.BackgroundPrimary]: 'rgba(243, 245, 247, 1)', // #F3F5F7 - [Color.BackgroundPrimaryLight]: 'rgba(243, 245, 247, 1)', // Not used #F3F5F7 + // Todo: deprecate this key + [Color.BackgroundPrimaryLight]: 'rgba(243, 245, 247, 1)', // Not used instead use the BackgroundPrimary #F3F5F7 [Color.BackgroundPrimaryHover]: 'rgba(239, 243, 246, 1)', // #eff3f6 [Color.BackgroundPrimaryActive]: 'rgba(93, 109, 126, 1)', // #5d6d7e [Color.BackgroundPrimary_0_5_Opacity]: 'rgba(255, 255, 255, 0.500)', From 7b27016e5c1d9885cb0de1cd775721fe8f4785bb Mon Sep 17 00:00:00 2001 From: Ahmed Hussien Date: Tue, 10 Sep 2024 14:03:24 +0300 Subject: [PATCH 3/3] upgrade BackgroundPrimary color --- packages/ui/src/theme/roots/palette/entity/default-palette.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/ui/src/theme/roots/palette/entity/default-palette.ts b/packages/ui/src/theme/roots/palette/entity/default-palette.ts index 76816be1..add55139 100644 --- a/packages/ui/src/theme/roots/palette/entity/default-palette.ts +++ b/packages/ui/src/theme/roots/palette/entity/default-palette.ts @@ -37,7 +37,8 @@ export const groupedPalette = { [Color.BackgroundBaseMedium]: 'rgba(227, 231, 251, 1)', // #E3E7FB [Color.BackgroundPrimary]: 'rgba(243, 245, 247, 1)', // #F3F5F7 // Todo: deprecate this key - [Color.BackgroundPrimaryLight]: 'rgba(243, 245, 247, 1)', // Not used instead use the BackgroundPrimary #F3F5F7 + // Not used instead use the BackgroundPrimary + [Color.BackgroundPrimaryLight]: 'rgba(243, 245, 247, 1)', // #F3F5F7 [Color.BackgroundPrimaryHover]: 'rgba(239, 243, 246, 1)', // #eff3f6 [Color.BackgroundPrimaryActive]: 'rgba(93, 109, 126, 1)', // #5d6d7e [Color.BackgroundPrimary_0_5_Opacity]: 'rgba(255, 255, 255, 0.500)',