@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
31 lines (30 loc) • 621 B
JavaScript
/*!
* All material copyright ESRI, All Rights Reserved, unless otherwise specified.
* See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
*/
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"
};