UNPKG

@hitachivantara/uikit-styles

Version:

UI Kit styling solution for the Next Design System.

67 lines (66 loc) 1.6 kB
import ds3 from "./themes/ds3.mjs"; import ds5 from "./themes/ds5.mjs"; import pentahoPlus from "./themes/pentahoPlus.mjs"; import { amber, blue, cyan, emerald, fuchsia, green, indigo, lime, neutral, orange, palette, pink, purple, red, rose, sky, slate, teal, violet, yellow } from "./palette.mjs"; import { getColor, theme } from "./theme.mjs"; import { makeColors, makeTheme } from "./makeTheme.mjs"; import { getThemesList, getThemesVars, hasMultipleArgs, mapCSSVars, mergeTheme, parseTheme, spacingUtil, spacingUtilOld } from "./utils.mjs"; import { CssBaseline, CssScopedBaseline } from "./CssBaseline.mjs"; import { breakpoints } from "./tokens/breakpoints.mjs"; import { colors } from "./tokens/colors.mjs"; import { radii } from "./tokens/radii.mjs"; import { space } from "./tokens/space.mjs"; import { sizes } from "./tokens/sizes.mjs"; import { fontFamily, fontSizes, fontWeights, lineHeights } from "./tokens/typography.mjs"; import { zIndices } from "./tokens/zIndices.mjs"; const themes = { ds3, ds5, pentahoPlus }; export { CssBaseline, CssScopedBaseline, amber, blue, breakpoints, colors, cyan, ds3, ds5, emerald, fontFamily, fontSizes, fontWeights, fuchsia, getColor, getThemesList, getThemesVars, green, hasMultipleArgs, indigo, lime, lineHeights, makeColors, makeTheme, mapCSSVars, mergeTheme, neutral, orange, palette, parseTheme, pentahoPlus, pink, purple, radii, red, rose, sizes, sky, slate, space, spacingUtil, spacingUtilOld, teal, theme, themes, violet, yellow, zIndices };