mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 15:26:33 +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 };
|