12345678910111213141516171819202122232425262728293031 |
- /*!
- * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
- * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
- * v1.0.0-beta.82
- */
- const autoTheme = "calcite-theme-auto";
- const darkTheme = "calcite-theme-dark";
- const lightTheme = "calcite-theme-light";
- export const THEMES = [
- {
- name: "light",
- className: lightTheme
- },
- {
- name: "dark",
- className: darkTheme
- },
- {
- name: "auto",
- className: autoTheme
- }
- ];
- export const CSS_UTILITY = {
- autoTheme,
- darkTheme,
- lightTheme,
- rtl: "calcite--rtl"
- };
- export const TEXT = {
- loading: "Loading"
- };
|