feat: init basic settings

This commit is contained in:
QiShaoXuan
2022-09-22 15:39:53 +08:00
commit c0b6ee9245
91 changed files with 8017 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import '@emotion/react';
interface AffineTheme {
colors: {
primary: string;
};
}
export const theme: AffineTheme = {
colors: {
primary: '#0070f3',
},
};
declare module '@emotion/react' {
export interface Theme extends AffineTheme {}
}