@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
20 lines (18 loc) • 541 B
JavaScript
import { defineStyles } from "../../core/system/config.js";
//#region src/theme/styles/text-styles.ts
const textStyles = defineStyles.textStyle({
ghost: { color: "colorScheme.outline" },
mono: {
fontFamily: "mono",
fontWeight: "medium",
letterSpacing: "widest",
whiteSpace: "nowrap"
},
outline: { color: "colorScheme.outline" },
solid: { color: "colorScheme.contrast" },
subtle: { color: "colorScheme.fg" },
surface: { color: "colorScheme.fg" }
});
//#endregion
export { textStyles };
//# sourceMappingURL=text-styles.js.map