@hitachivantara/uikit-styles
Version:
UI Kit styling solution.
25 lines (24 loc) • 686 B
JavaScript
import { breakpoints } from "./breakpoints.js";
import { colors } from "./colors.js";
import { radii } from "./radii.js";
import { space } from "./space.js";
import { fontFamily, fontSizes, fontWeights, lineHeights } from "./typography.js";
import { zIndices } from "./zIndices.js";
//#region src/tokens/index.ts
/**
* Base theme tokens to use when merging with theme, used to merge with the makeTheme utility.
* Mostly just the uses the `tokens` directly, but also adds other properties like `typography` or component vars.
*/
var baseTheme = {
breakpoints,
colors,
radii,
space,
zIndices,
fontFamily,
fontSizes,
fontWeights,
lineHeights
};
//#endregion
export { baseTheme };