-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.umirc.ts
74 lines (72 loc) · 1.9 KB
/
.umirc.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import { defineConfig } from '@umijs/max';
export default defineConfig({
antd: {
dark:true,
compact: true,
},
theme:{
'primary-color': '#FF6D00',
'heading-color': '#EBEBEB',
'text-color': '#EBEBEB',
'text-color-secondary': '#696969',
'table-header-bg': '#1d1d1d',
'table-body-sort-bg': '#696969',
'table-row-hover-bg': '#262626',
'table-header-cell-split-color': '#696969',
'table-header-sort-bg': '#262626',
'table-header-filter-active-bg': '#434343',
'table-header-sort-active-bg': '#303030',
'table-fixed-header-sort-active-bg': '#222',
'table-filter-btns-bg': '#1f1f1f',
'table-expanded-row-bg': '#1d1d1d',
'table-filter-dropdown-bg': '#1f1f1f',
'table-expand-icon-bg': 'transparent',
'select-background': 'transparent',
'select-dropdown-bg': '#1f1f1f',
'select-clear-background': '#fff',
'select-selection-item-bg': '#696969',
'select-selection-item-border-color': '#303030',
'select-multiple-disabled-background': '#fff',
'select-multiple-item-disabled-color': '#595959',
'select-multiple-item-disabled-border-color': '#1f1f1f',
'select-item-selected-color': '#696969',
'select-item-selected-bg': '#262626',
'select-item-active-bg':'#262626',
},
access: {},
model: {},
initialState: {},
request: {},
layout: {
title: 'TigerGraph/CosmoGraph',
style:{
backgroud: '#0D0D0D',
theme:'dark',
}
},
routes: [
{
path: '/',
redirect: '/home',
},
{
name: 'Home',
path: '/home',
component: './home',
icon: 'HomeOutlined',
},
{
name: 'Cosmograph Visualization',
path: '/cosmograph',
component: './Cosmograph',
icon: 'ForkOutlined',
},
{
name: 'Tigergraph Configuration',
path: '/tgconfig',
component: './Tgconfig',
icon: 'SettingOutlined',
},
],
npmClient: 'yarn',
});