src/app/constants/default-configs.ts
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 35
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 24
mnd 0
bc 0
fnc 0
dl 0
loc 35
bpm 0
cpm 0
noi 0
c 0
b 0
f 0
ccs 3
cts 3
cp 1
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