aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview/darkmode.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/webview/darkmode.ts')
-rw-r--r--src/webview/darkmode.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/webview/darkmode.ts b/src/webview/darkmode.ts
index 99ee68757..34f987b51 100644
--- a/src/webview/darkmode.ts
+++ b/src/webview/darkmode.ts
@@ -1,8 +1,7 @@
1import { join } from 'path'; 1import { join } from 'path';
2import { pathExistsSync, readFileSync } from 'fs-extra'; 2import { pathExistsSync, readFileSync } from 'fs-extra';
3 3
4// TODO: Go back to 'debug' from 'console.log' when https://github.com/electron/electron/issues/31689 is fixed 4const debug = require('../preload-safe-debug')('Ferdium:DarkMode');
5// const debug = require('debug')('Ferdium:DarkMode');
6 5
7const chars = [...'abcdefghijklmnopqrstuvwxyz']; 6const chars = [...'abcdefghijklmnopqrstuvwxyz'];
8 7
@@ -27,7 +26,7 @@ export function injectDarkModeStyle(recipePath: string) {
27 26
28 document.querySelector('head')?.appendChild(styles); 27 document.querySelector('head')?.appendChild(styles);
29 28
30 console.log('Injected Dark Mode style with ID', ID); 29 debug('Injected Dark Mode style with ID', ID);
31 } 30 }
32} 31}
33 32
@@ -37,7 +36,7 @@ export function removeDarkModeStyle() {
37 if (style) { 36 if (style) {
38 style.remove(); 37 style.remove();
39 38
40 console.log('Removed Dark Mode Style with ID', ID); 39 debug('Removed Dark Mode Style with ID', ID);
41 } 40 }
42} 41}
43 42