Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 35 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Coverage | 100% |
Changes | 0 |
1 | import { Theme } from "../types"; |
||
2 | |||
3 | 1 | export const defaultTheme: Theme = { |
|
4 | body: { |
||
5 | dark: "linear-gradient(to right, #3c4a5f, #4d5f7d)", |
||
6 | default: "linear-gradient(to right, #eaebec, #cccdcf)", |
||
7 | }, |
||
8 | header: { |
||
9 | style: { |
||
10 | height: "20%", |
||
11 | borderBottom: "2px solid #c0c0c0", |
||
12 | }, |
||
13 | }, |
||
14 | footer: { |
||
15 | style: { |
||
16 | height: "10%", |
||
17 | borderTop: "2px solid #c0c0c0", |
||
18 | }, |
||
19 | }, |
||
20 | router: { |
||
21 | style: { height: "70%" }, |
||
22 | }, |
||
23 | drawer: { |
||
24 | style: { |
||
25 | borderRight: "2px solid #c0c0c0", |
||
26 | }, |
||
27 | }, |
||
28 | }; |
||
29 | |||
30 | 1 | export const defaultEngineConfig = { |
|
31 | redux: { ui: true, modal: true, epics: [], reducers: {}, preload: {} }, |
||
32 | }; |
||
33 | |||
34 | export const defaultAppConfig = {}; |
||
35 |