import type { CSSProperties } from "../CSSProperties"; export type TextEmphasisLonghands = Required< Pick >; export function textEmphasis( style: NonNullable, color: NonNullable = "currentcolor", ): TextEmphasisLonghands { return { textEmphasisStyle: style, textEmphasisColor: color, }; }