-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
123 lines (119 loc) · 2.07 KB
/
constants.ts
File metadata and controls
123 lines (119 loc) · 2.07 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// 常量定义
export const THEMES = {
GREEN: 'green',
AMBER: 'amber',
WHITE: 'white'
};
// 预定义主题
export const THEME_DEFINITIONS = {
[THEMES.GREEN]: {
primary: '#30FF50',
primaryDark: '#18A830',
accent: '#18A830',
background: '#1A1A1A',
border: '#252525',
textPrimary: '#30FF50',
textSecondary: '#18A830',
scanlineOpacity: 0.1,
crtEffect: true
},
[THEMES.AMBER]: {
primary: '#FFB000',
primaryDark: '#D08000',
accent: '#D08000',
background: '#1A1A1A',
border: '#252525',
textPrimary: '#FFB000',
textSecondary: '#D08000',
scanlineOpacity: 0.1,
crtEffect: true
},
[THEMES.WHITE]: {
primary: '#F0F0F0',
primaryDark: '#A0A0A0',
accent: '#A0A0A0',
background: '#1A1A1A',
border: '#252525',
textPrimary: '#F0F0F0',
textSecondary: '#A0A0A0',
scanlineOpacity: 0.1,
crtEffect: true
}
};
// 默认应用分类
export const DEFAULT_APP_CATEGORIES = [
{
id: 'communications',
name: 'COMMUNICATIONS'
},
{
id: 'data_processing',
name: 'DATA PROCESSING'
},
{
id: 'entertainment',
name: 'ENTERTAINMENT TERMINAL'
},
{
id: 'media',
name: 'AUDIO/VISUAL ARCHIVES'
},
{
id: 'utilities',
name: 'UTILITIES & TOOLS'
},
{
id: 'recent',
name: 'RECENTLY ACCESSED'
}
];
// 默认快速访问文件夹
export const DEFAULT_QUICK_ACCESS_FOLDERS = [
{
name: 'DOCUMENTS',
path: 'C:\\Users\\[USERNAME]\\Documents'
},
{
name: 'DOWNLOADS',
path: 'C:\\Users\\[USERNAME]\\Downloads'
},
{
name: 'PICTURES',
path: 'C:\\Users\\[USERNAME]\\Pictures'
},
{
name: 'VAULT_MUSIC',
path: 'C:\\Users\\[USERNAME]\\Music'
},
{
name: 'HOLOTAPES',
path: 'C:\\Users\\[USERNAME]\\Videos'
}
];
// 模块标签
export const MODULE_TABS = [
{
id: 'stats',
name: 'STATS'
},
{
id: 'apps',
name: 'APPS'
},
{
id: 'files',
name: 'FILES'
},
{
id: 'data',
name: 'DATA'
},
{
id: 'media',
name: 'MEDIA'
},
{
id: 'config',
name: 'CONFIG'
}
];