judge4c/src/config/monaco-theme.ts

10 lines
263 B
TypeScript
Raw Normal View History

import { MonacoTheme } from "@/types/monaco-theme";
// Define theme configurations
const MonacoThemeConfig = {
light: MonacoTheme.GitHubLightDefault, // Light theme
dark: MonacoTheme.GitHubDarkDefault, // Dark theme
};
export { MonacoThemeConfig };