Skip to content

Commit

Permalink
dark side bg
Browse files Browse the repository at this point in the history
  • Loading branch information
think-gem committed May 13, 2024
1 parent efb8d69 commit 5367a5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/logics/theme/updateBackground.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function updateSidebarBgColor(color?: string) {
const darkMode = appStore.getDarkMode === ThemeEnum.DARK;
if (!color) {
if (darkMode) {
color = '#212121';
color = '#151515';
} else {
color = appStore.getMenuSetting.bgColor;
}
Expand Down
2 changes: 1 addition & 1 deletion src/settings/designSetting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const APP_PRESET_COLOR_LIST: string[] = [
export const SIDE_BAR_BG_COLOR_LIST: string[] = [
'#ffffff',
'#001529',
'#212121',
'#151515',
'#273352',
'#191b24',
'#191a23',
Expand Down

0 comments on commit 5367a5a

Please sign in to comment.