UNPKG

@recastui/themes

Version:

Recastui Design System component themes with Tailwindcss and CVA

10 lines (8 loc) 867 B
declare const colors: readonly ["main", "tomato", "red", "crimson", "pink", "plum", "purple", "violet", "indigo", "blue", "cyan", "teal", "green", "grass", "orange", "brown", "sky", "mint", "lime", "yellow", "amber", "gold", "bronze", "error", "info", "success", "warning"]; declare const trueColors: readonly ["main", "tomato", "red", "crimson", "pink", "plum", "purple", "violet", "indigo", "blue", "cyan", "teal", "green", "grass", "orange", "brown", "sky", "mint", "lime", "yellow", "amber", "gold", "bronze"]; type RecastColors = (typeof colors)[number]; type TrueColors = (typeof trueColors)[number]; type SolidTextMappingType = Record<RecastColors, string>; declare const solidTextMapping: SolidTextMappingType; declare const stateColors: string[]; export { RecastColors, SolidTextMappingType, TrueColors, colors, solidTextMapping, stateColors, trueColors };