resources.js 639 B

12345678910111213141516171819202122232425262728293031
  1. /*!
  2. * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
  3. * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
  4. * v1.0.0-beta.82
  5. */
  6. const autoTheme = "calcite-theme-auto";
  7. const darkTheme = "calcite-theme-dark";
  8. const lightTheme = "calcite-theme-light";
  9. export const THEMES = [
  10. {
  11. name: "light",
  12. className: lightTheme
  13. },
  14. {
  15. name: "dark",
  16. className: darkTheme
  17. },
  18. {
  19. name: "auto",
  20. className: autoTheme
  21. }
  22. ];
  23. export const CSS_UTILITY = {
  24. autoTheme,
  25. darkTheme,
  26. lightTheme,
  27. rtl: "calcite--rtl"
  28. };
  29. export const TEXT = {
  30. loading: "Loading"
  31. };