-
Notifications
You must be signed in to change notification settings - Fork 32
/
config.js
37 lines (36 loc) · 901 Bytes
/
config.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
const config = {
svg: {
width: 1100,
height: 600
},
colors: {
icon: "#00f0ff",
textTitle: "#00f0ff",
textLabel: "#00f0ff",
textValue: "#f8e602",
rankLetter: "#c5003c",
rankPercentage: "#c5003c",
rankProgressBar: "#00f0ff"
},
rank: {
ringBgDarkLevel: 30,
ringRadius: 80,
ringThickness: 34,
progressBarThickness: 28
},
language: {
ringRadius: 80,
ringThickness: 34
},
contribution_distribution: {
days_to_show: 60, // best to set to 60 days, if more than 60 days, the chart will be too crowded
border_color: "#00f0ff",
bullish_color: "#32cd32",
bearish_color: "#c5003c",
global_display_time_delay: 0.5,
bar_display_time_delay: 1,
bar_display_time_interval: 0.02,
bar_display_time_duration: 0.2
}
}
export default config;