@agnikul-ui/panda-preset
Version:
Panda CSS Preset for Agnikul UI
33 lines (32 loc) • 994 B
JavaScript
// src/colors/base.ts
import { defineSemanticTokens, defineTokens } from "@pandacss/dev";
var tokens = defineTokens.colors({
light: {
"25": { value: "#ffffff" },
"50": { value: "#000000" }
},
dark: {
"25": { value: "#ffffff" },
"50": { value: "#000000" }
}
});
var semanticTokens = defineSemanticTokens.colors({
bg: {
white: { value: { _light: "{colors.base.white}", _dark: "{colors.neutral.light.900}" } },
white_inverted: { value: { _light: "{colors.base.white}", _dark: "{colors.neutral.light.800}" } }
},
fg: {
primary: { value: { _light: "{colors.brand.light.500}", _dark: "{colors.brand.dark.500}" } },
secondary: { value: { _light: "{colors.brand.light.500}", _dark: "{colors.brand.dark.500}" } },
tertiary: { value: { _light: "{colors.brand.light.100}", _dark: "{colors.brand.dark.800}" } }
}
});
var base_default = {
name: "base",
tokens,
semanticTokens
};
export {
base_default
};
//# sourceMappingURL=chunk-QHF6UJ7Q.js.map