eip-components-web
Version:
EIP components
30 lines • 549 B
TypeScript
export type Theme = {
colors: {
[colorName: string]: Color;
};
fontWeights: {
[fontWeight: string]: FontWeight;
};
sizes: {
[size: string]: Size;
};
shadows: {
[shadow: string]: string;
};
borderRadius: {
[borderRadius: string]: Size;
};
};
export type Color = {
name: string;
hex: string;
};
export type FontWeight = {
name: string;
numerical: number;
};
export type Size = {
name: string;
pixels: number;
};
//# sourceMappingURL=types.d.ts.map