File size: 1,122 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 |
import { defineRecipe } from "../def"
export const kbdRecipe = defineRecipe({
className: "kbd",
base: {
display: "inline-flex",
alignItems: "center",
fontWeight: "medium",
fontFamily: "mono",
flexShrink: "0",
whiteSpace: "nowrap",
wordSpacing: "-0.5em",
userSelect: "none",
px: "1",
borderRadius: "l2",
},
variants: {
variant: {
raised: {
bg: "colorPalette.subtle",
color: "colorPalette.fg",
borderWidth: "1px",
borderBottomWidth: "2px",
borderColor: "colorPalette.muted",
},
outline: {
borderWidth: "1px",
color: "colorPalette.fg",
},
subtle: {
bg: "colorPalette.muted",
color: "colorPalette.fg",
},
plain: {
color: "colorPalette.fg",
},
},
size: {
sm: {
textStyle: "xs",
height: "4.5",
},
md: {
textStyle: "sm",
height: "5",
},
lg: {
textStyle: "md",
height: "6",
},
},
},
defaultVariants: {
size: "md",
variant: "raised",
},
})
|