-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththemeSetting.js
38 lines (37 loc) · 977 Bytes
/
themeSetting.js
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
export const themeSetting = {
wave: {
anime: 'wave',
color: {
/**
* light mode color Array
* @type {Array<String>} <wave, progress, cursor, timeLine>*/
light: ['#4F4A85', '#383351', '#000000', '#2D5B88'],
/**
* dark mode color Array
* @type {Array<String>} <wave, progress, cursor, timeLine>*/
dark: ['#132029', '#5180b0', '#74c5fb', '#d7f7fa']
}
},
waveR: {
anime: 'waveR',
color: {
light: ['#4F4A85', '#383351', '#000000', '#2D5B88'],
dark: ['#132029', '#5180b0', '#74c5fb', '#d7f7fa']
}
},
rgb: {
anime: 'wave',
color: {
light: [['red', 'yellow', 'green'], '#383351', '#000000', '#2D5B88'],
dark: ['#132029', '#5180b0', '#74c5fb', '#d7f7fa']
}
},
nayutan: {
anime: 'wave',
background: "#fa8072",
color: {
light: ['#4F4A85', '#383351', '#000000', '#2D5B88'],
dark: ['#555555', '#ffffff', '#ffffff', '#d7f7fa']
}
}
};