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