30 lines
589 B
JavaScript
30 lines
589 B
JavaScript
// src/components/kbd.ts
|
|
import {
|
|
cssVar,
|
|
defineStyle,
|
|
defineStyleConfig
|
|
} from "@chakra-ui/styled-system";
|
|
var $bg = cssVar("kbd-bg");
|
|
var baseStyle = defineStyle({
|
|
[$bg.variable]: "colors.gray.100",
|
|
_dark: {
|
|
[$bg.variable]: "colors.whiteAlpha.100"
|
|
},
|
|
bg: $bg.reference,
|
|
borderRadius: "md",
|
|
borderWidth: "1px",
|
|
borderBottomWidth: "3px",
|
|
fontSize: "0.8em",
|
|
fontWeight: "bold",
|
|
lineHeight: "normal",
|
|
px: "0.4em",
|
|
whiteSpace: "nowrap"
|
|
});
|
|
var kbdTheme = defineStyleConfig({
|
|
baseStyle
|
|
});
|
|
|
|
export {
|
|
kbdTheme
|
|
};
|
|
//# sourceMappingURL=chunk-AFCBUAM5.mjs.map
|