From 56507f0362098105ed3f9e0d7521d87221ad95a0 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Fri, 7 Mar 2025 11:27:00 +0800 Subject: [PATCH] feat(monaco-theme): Add default light and dark theme configurations --- src/config/monaco-theme.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/config/monaco-theme.ts b/src/config/monaco-theme.ts index 5f96ed2..9dadae5 100644 --- a/src/config/monaco-theme.ts +++ b/src/config/monaco-theme.ts @@ -12,4 +12,8 @@ const MonacoThemeConfig = { }, }; -export { MonacoThemeConfig }; +// Default Light and Dark theme configurations +const DefaultLightThemeConfig = MonacoThemeConfig[MonacoTheme.GitHubLightDefault]; +const DefaultDarkThemeConfig = MonacoThemeConfig[MonacoTheme.GitHubDarkDefault]; + +export { MonacoThemeConfig, DefaultLightThemeConfig, DefaultDarkThemeConfig };