UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

51 lines (50 loc) 851 B
//#region src/footer/theme.ts const baseStyle = { link: {} }; const defaultProps = { variant: "default" }; const parts = [ "container", "column", "content", "heading", "link", "row", "section", "trademark" ]; const sizes = {}; const variants = { default: { container: { bg: "darkBlue.main", color: "white" }, link: { color: "white" } }, developer: { container: { bg: "darkBlue.main", color: "white" }, link: { color: "digiGreen.main" } }, light: { container: { bg: "white", color: "darkBlue.main" }, row: { color: "black" }, link: { color: "seaBlue.main" }, heading: { color: "darkBlue.main" } } }; var theme_default = { baseStyle, defaultProps, parts, sizes, variants }; //#endregion export { theme_default as default }; globalThis.__vuiVersion__ = "5.3.1" //# sourceMappingURL=theme.js.map