theme.js 612 B

12345678910111213
  1. /*---------------------------------------------------------------------------------------------
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for license information.
  4. *--------------------------------------------------------------------------------------------*/
  5. /**
  6. * Color scheme used by the OS and by color themes.
  7. */
  8. export var ColorScheme;
  9. (function (ColorScheme) {
  10. ColorScheme["DARK"] = "dark";
  11. ColorScheme["LIGHT"] = "light";
  12. ColorScheme["HIGH_CONTRAST"] = "hc";
  13. })(ColorScheme || (ColorScheme = {}));