Initial commit

This commit is contained in:
unknown
2021-05-06 19:03:31 +02:00
commit 573814ddac
25 changed files with 18830 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
export interface Theme {
name: string;
colors: {
background: string;
primary: string;
accent: string;
}
}