ai-react-ui
Version:
An AI-friendly React UI component library
38 lines (37 loc) • 899 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.defaultTheme = void 0;
exports.defaultTheme = {
colors: {
primary: "#007AFF",
secondary: "#5856D6",
background: "#FFFFFF",
text: "#000000",
error: "#FF3B30",
success: "#34C759",
warning: "#FF9500",
},
spacing: {
small: "8px",
medium: "16px",
large: "24px",
},
typography: {
sizes: {
small: "14px",
medium: "16px",
large: "20px",
},
weights: {
normal: 400,
medium: 500,
bold: 700,
},
},
elevation: {
none: "none",
small: "0 2px 4px rgba(0,0,0,0.1)",
medium: "0 4px 8px rgba(0,0,0,0.1)",
large: "0 8px 16px rgba(0,0,0,0.1)",
},
};