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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
| /** Default theme settings */
| export const themeSettings: App.Theme.ThemeSetting = {
| themeScheme: 'auto',
| grayscale: false,
| colourWeakness: false,
| recommendColor: false,
| themeColor: '#0E42D2',
| themeRadius: 6,
| otherColor: {
| info: '#0E42D2',
| success: '#009A29',
| warning: '#D25F00',
| error: '#CB2634'
| },
| isInfoFollowPrimary: true,
| layout: {
| mode: 'vertical',
| scrollMode: 'content'
| },
| page: {
| animate: true,
| animateMode: 'fade-slide'
| },
| header: {
| height: 56,
| breadcrumb: {
| visible: true,
| showIcon: true
| },
| multilingual: {
| visible: true
| },
| globalSearch: {
| visible: true
| }
| },
| tab: {
| visible: true,
| cache: true,
| height: 44,
| mode: 'chrome',
| closeTabByMiddleClick: true
| },
| fixedHeaderAndTab: true,
| sider: {
| inverted: false,
| width: 230,
| collapsedWidth: 64,
| mixWidth: 90,
| mixCollapsedWidth: 64,
| mixChildMenuWidth: 200,
| autoSelectFirstMenu: false
| },
| footer: {
| visible: false,
| fixed: false,
| height: 48,
| right: true
| },
| watermark: {
| visible: import.meta.env.VITE_WATERMARK === 'Y',
| text: 'RuoYi-Plus-Soybean',
| enableUserName: true,
| enableTime: false,
| timeFormat: 'YYYY-MM-DD HH:mm'
| },
| table: {
| bordered: true,
| bottomBordered: true,
| singleColumn: false,
| singleLine: true,
| size: 'small',
| striped: false
| },
| tokens: {
| light: {
| colors: {
| container: 'rgb(255, 255, 255)',
| layout: 'rgb(247, 250, 252)',
| inverted: 'rgb(0, 20, 40)',
| 'base-text': 'rgb(31, 31, 31)'
| },
| boxShadow: {
| header: '0 1px 2px rgb(0, 21, 41, 0.08)',
| sider: '2px 0 8px 0 rgb(29, 35, 41, 0.05)',
| tab: '0 1px 2px rgb(0, 21, 41, 0.08)'
| }
| },
| dark: {
| colors: {
| container: 'rgb(28, 28, 28)',
| layout: 'rgb(18, 18, 18)',
| 'base-text': 'rgb(224, 224, 224)'
| }
| }
| }
| };
|
| /**
| * Override theme settings
| *
| * If publish new version, use `overrideThemeSettings` to override certain theme settings
| */
| export const overrideThemeSettings: Partial<App.Theme.ThemeSetting> = {};
|
|