From 8eaaa63df0423853423de304e94d12a3759ea3e7 Mon Sep 17 00:00:00 2001 From: lora322 <39804183+lora322@users.noreply.github.com> Date: Sat, 30 Aug 2025 13:45:51 -0400 Subject: [PATCH] Update styleSlice.ts changed theme from Pastel Emerald Green to white --- frontend/src/stores/styleSlice.ts | 40 +++++++++++++++---------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/frontend/src/stores/styleSlice.ts b/frontend/src/stores/styleSlice.ts index 45f6c9d..c7f286c 100644 --- a/frontend/src/stores/styleSlice.ts +++ b/frontend/src/stores/styleSlice.ts @@ -31,31 +31,31 @@ interface StyleState { } const initialState: StyleState = { - asideStyle: styles.pastelEmeraldTheme.aside, + asideStyle: styles.white.aside, asideScrollbarsStyle: styles.white.asideScrollbars, asideBrandStyle: styles.white.asideBrand, - asideMenuItemStyle: styles.pastelEmeraldTheme.asideMenuItem, - asideMenuItemActiveStyle: styles.pastelEmeraldTheme.asideMenuItemActive, - activeLinkColor: styles.pastelEmeraldTheme.activeLinkColor, + asideMenuItemStyle: styles.white.asideMenuItem, + asideMenuItemActiveStyle: styles.white.asideMenuItemActive, + activeLinkColor: styles.white.activeLinkColor, asideMenuDropdownStyle: styles.white.asideMenuDropdown, - navBarItemLabelStyle: styles.pastelEmeraldTheme.navBarItemLabel, - navBarItemLabelHoverStyle: styles.pastelEmeraldTheme.navBarItemLabelHover, + navBarItemLabelStyle: styles.white.navBarItemLabel, + navBarItemLabelHoverStyle: styles.white.navBarItemLabelHover, navBarItemLabelActiveColorStyle: - styles.pastelEmeraldTheme.navBarItemLabelActiveColor, - overlayStyle: styles.pastelEmeraldTheme.overlay, + styles.white.navBarItemLabelActiveColor, + overlayStyle: styles.white.overlay, darkMode: false, - bgLayoutColor: styles.pastelEmeraldTheme.bgLayoutColor, - iconsColor: styles.pastelEmeraldTheme.iconsColor, - cardsColor: styles.pastelEmeraldTheme.cardsColor, - focusRingColor: styles.pastelEmeraldTheme.focusRingColor, - corners: styles.pastelEmeraldTheme.corners, - cardsStyle: styles.pastelEmeraldTheme.cardsStyle, - linkColor: styles.pastelEmeraldTheme.linkColor, - websiteHeder: styles.pastelEmeraldTheme.websiteHeder, - borders: styles.pastelEmeraldTheme.borders, - shadow: styles.pastelEmeraldTheme.shadow, - websiteSectionStyle: styles.pastelEmeraldTheme.websiteSectionStyle, - textSecondary: styles.pastelEmeraldTheme.textSecondary, + bgLayoutColor: styles.white.bgLayoutColor, + iconsColor: styles.white.iconsColor, + cardsColor: styles.white.cardsColor, + focusRingColor: styles.white.focusRingColor, + corners: styles.white.corners, + cardsStyle: styles.white.cardsStyle, + linkColor: styles.white.linkColor, + websiteHeder: styles.white.websiteHeder, + borders: styles.white.borders, + shadow: styles.white.shadow, + websiteSectionStyle: styles.white.websiteSectionStyle, + textSecondary: styles.white.textSecondary, }; export const styleSlice = createSlice({