Skip to content

Commit

Permalink
feat: Updated background colors.
Browse files Browse the repository at this point in the history
  • Loading branch information
sprout2000 committed Sep 13, 2021
1 parent 46e25b7 commit de33f88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const createWindow = () => {
minWidth: 800,
minHeight: isDarwin ? 558 : 602,
show: false,
backgroundColor: store.get('darkmode') ? '#1e1e23' : '#dddddd',
backgroundColor: store.get('darkmode') ? '#1e1e1e' : '#f6f6f6',
webPreferences: {
sandbox: true,
safeDialogs: true,
Expand Down
4 changes: 2 additions & 2 deletions src/web/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

@media (prefers-color-scheme: dark) {
.container {
background: #1e1e23;
background: #1e1e1e;
}
}

@media (prefers-color-scheme: light) {
.container {
background: #dddddd;
background: #f6f6f6;
}
}

Expand Down

0 comments on commit de33f88

Please sign in to comment.