Update styleSlice.ts

changed theme from Pastel Emerald Green to white
This commit is contained in:
lora322 2025-08-30 13:45:51 -04:00 committed by GitHub
parent 338932751b
commit 8eaaa63df0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,31 +31,31 @@ interface StyleState {
} }
const initialState: StyleState = { const initialState: StyleState = {
asideStyle: styles.pastelEmeraldTheme.aside, asideStyle: styles.white.aside,
asideScrollbarsStyle: styles.white.asideScrollbars, asideScrollbarsStyle: styles.white.asideScrollbars,
asideBrandStyle: styles.white.asideBrand, asideBrandStyle: styles.white.asideBrand,
asideMenuItemStyle: styles.pastelEmeraldTheme.asideMenuItem, asideMenuItemStyle: styles.white.asideMenuItem,
asideMenuItemActiveStyle: styles.pastelEmeraldTheme.asideMenuItemActive, asideMenuItemActiveStyle: styles.white.asideMenuItemActive,
activeLinkColor: styles.pastelEmeraldTheme.activeLinkColor, activeLinkColor: styles.white.activeLinkColor,
asideMenuDropdownStyle: styles.white.asideMenuDropdown, asideMenuDropdownStyle: styles.white.asideMenuDropdown,
navBarItemLabelStyle: styles.pastelEmeraldTheme.navBarItemLabel, navBarItemLabelStyle: styles.white.navBarItemLabel,
navBarItemLabelHoverStyle: styles.pastelEmeraldTheme.navBarItemLabelHover, navBarItemLabelHoverStyle: styles.white.navBarItemLabelHover,
navBarItemLabelActiveColorStyle: navBarItemLabelActiveColorStyle:
styles.pastelEmeraldTheme.navBarItemLabelActiveColor, styles.white.navBarItemLabelActiveColor,
overlayStyle: styles.pastelEmeraldTheme.overlay, overlayStyle: styles.white.overlay,
darkMode: false, darkMode: false,
bgLayoutColor: styles.pastelEmeraldTheme.bgLayoutColor, bgLayoutColor: styles.white.bgLayoutColor,
iconsColor: styles.pastelEmeraldTheme.iconsColor, iconsColor: styles.white.iconsColor,
cardsColor: styles.pastelEmeraldTheme.cardsColor, cardsColor: styles.white.cardsColor,
focusRingColor: styles.pastelEmeraldTheme.focusRingColor, focusRingColor: styles.white.focusRingColor,
corners: styles.pastelEmeraldTheme.corners, corners: styles.white.corners,
cardsStyle: styles.pastelEmeraldTheme.cardsStyle, cardsStyle: styles.white.cardsStyle,
linkColor: styles.pastelEmeraldTheme.linkColor, linkColor: styles.white.linkColor,
websiteHeder: styles.pastelEmeraldTheme.websiteHeder, websiteHeder: styles.white.websiteHeder,
borders: styles.pastelEmeraldTheme.borders, borders: styles.white.borders,
shadow: styles.pastelEmeraldTheme.shadow, shadow: styles.white.shadow,
websiteSectionStyle: styles.pastelEmeraldTheme.websiteSectionStyle, websiteSectionStyle: styles.white.websiteSectionStyle,
textSecondary: styles.pastelEmeraldTheme.textSecondary, textSecondary: styles.white.textSecondary,
}; };
export const styleSlice = createSlice({ export const styleSlice = createSlice({