File size: 1,392 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
import { defineRecipe } from "../def"
export const badgeRecipe = defineRecipe({
className: "badge",
base: {
display: "inline-flex",
alignItems: "center",
borderRadius: "l2",
gap: "1",
fontWeight: "medium",
fontVariantNumeric: "tabular-nums",
whiteSpace: "nowrap",
userSelect: "none",
},
variants: {
variant: {
solid: {
bg: "colorPalette.solid",
color: "colorPalette.contrast",
},
subtle: {
bg: "colorPalette.subtle",
color: "colorPalette.fg",
},
outline: {
color: "colorPalette.fg",
shadow: "inset 0 0 0px 1px var(--shadow-color)",
shadowColor: "colorPalette.muted",
},
surface: {
bg: "colorPalette.subtle",
color: "colorPalette.fg",
shadow: "inset 0 0 0px 1px var(--shadow-color)",
shadowColor: "colorPalette.muted",
},
plain: {
color: "colorPalette.fg",
},
},
size: {
xs: {
textStyle: "2xs",
px: "1",
minH: "4",
},
sm: {
textStyle: "xs",
px: "1.5",
minH: "5",
},
md: {
textStyle: "sm",
px: "2",
minH: "6",
},
lg: {
textStyle: "sm",
px: "2.5",
minH: "7",
},
},
},
defaultVariants: {
variant: "subtle",
size: "sm",
},
})
|