maz-ui
Version:
A standalone components library for Vue.Js 3 & Nuxt.Js 3
34 lines (33 loc) • 636 B
JavaScript
const baseColors = {}, scaleColors = {
primary: "primary",
secondary: "secondary",
accent: "accent",
destructive: "destructive",
success: "success",
warning: "warning",
contrast: "contrast",
info: "info",
foreground: "foreground",
surface: "background",
divider: "border",
elevation: "shadow",
overlay: "overlay",
muted: "muted"
}, noForegroundColors = ["surface", "foreground", "overlay", "divider", "muted", "elevation"], colorScales = [
"50",
"100",
"200",
"300",
"400",
"500",
"600",
"700",
"800",
"900"
];
export {
baseColors,
colorScales,
noForegroundColors,
scaleColors
};