Skip to content

Commit a28c1d9

Browse files
committed
fix(App): Fix background colors
1 parent 30f445c commit a28c1d9

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/index.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ import { openOverlay } from './electron/ipc-api/overlayWindow';
6161
import { asarPath } from './helpers/asar-helpers';
6262
import { isValidExternalURL } from './helpers/url-helpers';
6363
import userAgent from './helpers/userAgent-helpers';
64-
import { darkThemeGrayDarker, themeGrayLightest, windowsTitleBarHeight } from './theme/default/legacy';
64+
import {
65+
darkThemeGrayDarker, darkThemeGrayDarkest, themeGrayLightest, windowsTitleBarHeight
66+
} from './theme/default/legacy';
6567

6668
/* eslint-enable import/first */
6769
const debug = require('debug')('Franz:App');
@@ -184,7 +186,7 @@ const createWindow = () => {
184186
minWidth: 600,
185187
minHeight: 500,
186188
frame: !isMac,
187-
backgroundColor: !settings.get('darkMode') ? '#3498db' : '#1E1E1E',
189+
backgroundColor: !settings.get('darkMode') ? themeGrayLightest : darkThemeGrayDarkest,
188190
titleBarStyle: 'hidden',
189191
autoHideMenuBar: true,
190192
titleBarOverlay: {

0 commit comments

Comments
 (0)