mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-20 08:47:43 +00:00
10 lines
263 B
TypeScript
10 lines
263 B
TypeScript
|
import { MonacoTheme } from "@/types/monaco-theme";
|
||
|
|
||
|
// Define theme configurations
|
||
|
const MonacoThemeConfig = {
|
||
|
light: MonacoTheme.GitHubLightDefault, // Light theme
|
||
|
dark: MonacoTheme.GitHubDarkDefault, // Dark theme
|
||
|
};
|
||
|
|
||
|
export { MonacoThemeConfig };
|