@questionable-focus/stationery-cupboard
Version:
A collection of business document templates for React applications
49 lines (48 loc) • 1.02 kB
TypeScript
export interface Theme {
fontFamily: {
heading: string;
body: string;
};
fontSize: {
heading1: string;
heading2: string;
heading3: string;
body: string;
small: string;
};
colors: {
primary: string;
secondary: string;
accent: string;
background: string;
text: string;
muted: string;
border: string;
success: string;
error: string;
};
spacing: {
xs: string;
sm: string;
md: string;
lg: string;
xl: string;
};
documents: {
header: {
background: string;
color: string;
};
footer: {
background: string;
color: string;
};
table: {
headerBackground: string;
headerColor: string;
rowBackground: string;
rowColor: string;
alternateRowBackground: string;
};
};
}