UNPKG

@momentum-ui/react-collaboration

Version:

Cisco Momentum UI Framework for React Collaboration Applications

31 lines (30 loc) 1.03 kB
import { MDTheme, ThemeNames } from './ThemeProvider.types'; declare const THEME_CLASS_PREFIX = "md-theme"; declare const THEME_CLASS_PREFIX_STABLE = "mds-theme-stable"; declare const CLASS_PREFIX = "md-theme-provider"; declare const STYLE: { wrapper: string; globals: string; typography: string; elevation: string; }; declare const THEME_NAMES: Record<string, ThemeNames>; declare const MD_THEMES: Record<string, MDTheme>; declare const THEMES: Record<string, ThemeNames | MDTheme>; declare const DEFAULTS: { THEME: ThemeNames; }; export { CLASS_PREFIX, DEFAULTS, MD_THEMES, STYLE, THEME_CLASS_PREFIX, THEME_CLASS_PREFIX_STABLE, THEME_NAMES, THEMES, }; export declare const TEAM_COLORS: { readonly default: "default"; readonly gold: "gold"; readonly orange: "orange"; readonly lime: "lime"; readonly mint: "mint"; readonly cyan: "cyan"; readonly cobalt: "cobalt"; readonly slate: "slate"; readonly violet: "violet"; readonly purple: "purple"; readonly pink: "pink"; };