@raminy/css-config
Version:
Tailwind CSS v4 configuration with predefined themes, semantic color tokens, and SCSS utilities for theme customization and generation.
13 lines (12 loc) • 411 B
JavaScript
import e from "./theme-names.module.scss.mjs";
const l = e.variablePrefix, m = e.tailwindVariablePrefix, c = e.defaultTheme, i = JSON.parse(e.themes.match(/^'(.*)'$/)[1]), s = JSON.parse(e.themeDetails.match(/^'(.*)'$/)[1]), h = Object.entries(i).map(([t, a]) => ({
name: t,
color: a,
details: s[t]
}));
export {
c as defaultTheme,
m as tailwindVariablePrefix,
h as themes,
l as variablePrefix
};