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 };