| 123456789101112131415161718192021 |
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- export class EditorTheme {
- constructor(theme) {
- this._theme = theme;
- }
- get type() {
- return this._theme.type;
- }
- get value() {
- return this._theme;
- }
- update(theme) {
- this._theme = theme;
- }
- getColor(color) {
- return this._theme.getColor(color);
- }
- }
|