We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ced17 commit 645d2bbCopy full SHA for 645d2bb
packages/app/src/app/overmind/effects/vscode/initializers.ts
@@ -1,4 +1,5 @@
1
import codeSandboxTheme from '@codesandbox/common/lib/themes/codesandbox.json';
2
+import codeSandboxBlackTheme from '@codesandbox/common/lib/themes/codesandbox-black';
3
4
export function initializeThemeCache() {
5
try {
@@ -81,6 +82,11 @@ export function initializeCodeSandboxTheme() {
81
82
'/extensions/ngryman.codesandbox-theme-0.0.1/themes/CodeSandbox-color-theme.json',
83
JSON.stringify(codeSandboxTheme)
84
);
85
+
86
+ fs.writeFileSync(
87
+ '/extensions/codesandbox-black-0.0.1/themes/codesandbox-black.json',
88
+ JSON.stringify(codeSandboxBlackTheme)
89
+ );
90
}
91
92
export function installCustomTheme(id: string, name: string, theme: string) {
0 commit comments