This commit is contained in:
Morten Olsen
2023-03-26 22:15:07 +02:00
commit 9b1a067d56
80 changed files with 7889 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
type Typography = {
family?: string;
size?: number;
spacing?: number;
weight?: string;
upperCase?: boolean;
};
type Theme = {
typography: {
Jumbo: Typography;
Title2: Typography;
Title1: Typography;
Body1: Typography;
Caption: Typography;
Overline: Typography;
Link: Typography;
};
colors: {
primary: string;
foreground: string;
background: string;
};
font: {
baseSize: number;
family?: string;
};
};
export type { Theme, Typography };