ai-react-ui
Version:
An AI-friendly React UI component library
72 lines (71 loc) • 1.72 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.darkTheme = exports.lightTheme = void 0;
exports.lightTheme = {
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)",
},
};
exports.darkTheme = {
colors: {
primary: "#0A84FF",
secondary: "#5E5CE6",
background: "#000000",
text: "#FFFFFF",
error: "#FF453A",
success: "#32D74B",
warning: "#FF9F0A",
},
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(255,255,255,0.1)",
medium: "0 4px 8px rgba(255,255,255,0.1)",
large: "0 8px 16px rgba(255,255,255,0.1)",
},
};