@agnikul-ui/panda-preset
Version:
Panda CSS Preset for Agnikul UI
59 lines (58 loc) • 1.97 kB
JavaScript
// src/colors/error.ts
import { defineSemanticTokens, defineTokens } from "@pandacss/dev";
var tokens = defineTokens.colors({
light: {
"25": { value: "#fffbfa" },
"50": { value: "#fef3f2" },
"100": { value: "#fee4e2" },
"200": { value: "#fecdca" },
"300": { value: "#fda29b" },
"400": { value: "#f97066" },
"500": { value: "#f04438" },
"600": { value: "#d92d20" },
"700": { value: "#b42318" },
"800": { value: "#912018" },
"900": { value: "#7a271a" },
"950": { value: "#7a271a" }
},
dark: {
"25": { value: "#7a271a" },
"50": { value: "#7a271a" },
"100": { value: "#912018" },
"200": { value: "#b42318" },
"300": { value: "#d92d20" },
"400": { value: "#f04438" },
"500": { value: "#f97066" },
"600": { value: "#fda29b" },
"700": { value: "#fecdca" },
"800": { value: "#fee4e2" },
"900": { value: "#fef3f2" },
"950": { value: "#fffbfa" }
}
});
var semanticTokens = defineSemanticTokens.colors({
bg: {
soft_surface: { value: { _light: "{colors.error.25}", _dark: "{colors.error.900}" } },
default: { value: { _light: "{colors.error.500}", _dark: "{colors.error.500}" } },
subtle: { value: { _light: "{colors.error.100}", _dark: "{colors.error.700}" } },
emphasized: { value: { _light: "{colors.error.600}", _dark: "{colors.error.400}" } }
},
fg: {
primary: { value: { _light: "{colors.error.600}", _dark: "{colors.error.400}" } },
secondary: { value: { _light: "{colors.error.500}", _dark: "{colors.error.500}" } },
tertiary: { value: { _light: "{colors.error.300}", _dark: "{colors.error.700}" } }
},
border: {
subtle: { value: { _light: "{colors.error.200}", _dark: "{colors.error.600}" } },
default: { value: { _light: "{colors.error.500}", _dark: "{colors.error.400}" } }
}
});
var error_default = {
name: "error",
tokens,
semanticTokens
};
export {
error_default
};
//# sourceMappingURL=chunk-BN3JWDMR.js.map