mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-02-04 07:06:43 +00:00
20 lines
508 B
TypeScript
20 lines
508 B
TypeScript
/*!---------------------------------------------------------
|
|
* Copyright (C) Microsoft Corporation. All rights reserved.
|
|
*----------------------------------------------------------*/
|
|
|
|
export default class ThemeUtility {
|
|
public static getMonacoTheme(theme: string): string {
|
|
switch (theme) {
|
|
case "default":
|
|
case "hc-white":
|
|
return "vs";
|
|
case "dark":
|
|
return "vs-dark";
|
|
case "hc-black":
|
|
return "hc-black";
|
|
default:
|
|
return "vs";
|
|
}
|
|
}
|
|
}
|