UNPKG

@rtdui/core

Version:

React components library focused on usability, accessibility and developer experience

8 lines (7 loc) 655 B
export type ThemeBaseSize = "xs" | "sm" | "md" | "lg" | "xl"; export type ThemeSize = ThemeBaseSize | string; export type ThemeRadius = ThemeBaseSize | "circle" | string; export type ThemeShadow = ThemeBaseSize | "2xl"; export type ThemeColor = "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error" | "neutral" | "base1" | "base2" | "base3" | string; export type ThemeBreakpoint = ThemeBaseSize | "base" | "2xl" | string; export type ThemeMask = "squircle" | "heart" | "hexagon" | "hexagon-2" | "decagon" | "pentagon" | "diamond" | "square" | "circle" | "star" | "star-2" | "triangle" | "triangle-2" | "triangle-3" | "triangle-4";