-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
67 lines (67 loc) · 1.48 KB
/
config.json
File metadata and controls
67 lines (67 loc) · 1.48 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
{
"app": {
"name": "CrewDeck",
"version": "1.0.0",
"description": "iRacing Session Manager - Gestion des performances d'équipe",
"author": "Racing Team",
"license": "MIT"
},
"theme": {
"colors": {
"primary": "#06b6d4",
"secondary": "#3b82f6",
"accent": "#f59e0b",
"danger": "#ef4444",
"success": "#10b981",
"bg_primary": "#0f172a",
"bg_secondary": "#1e293b",
"bg_tertiary": "#334155",
"text_primary": "#f1f5f9",
"text_secondary": "#cbd5e1",
"text_tertiary": "#94a3b8"
},
"darkMode": true,
"borderRadius": "8px"
},
"features": {
"driverManagement": true,
"sessionTracking": true,
"lapTimeRecording": true,
"analytics": true,
"dataExport": true,
"keyboardShortcuts": true,
"localStorage": true,
"vantaBackground": true
},
"ui": {
"animationDuration": "300ms",
"transitionTiming": "ease",
"responsiveBreakpoints": {
"mobile": 768,
"tablet": 1024,
"desktop": 1440
}
},
"storage": {
"drivers_key": "crewdeck_drivers",
"sessions_key": "crewdeck_sessions"
},
"defaults": {
"maxDriversPerTeam": 4,
"maxSessionsStored": 100,
"timeFormat": "MM:SS.mmm",
"dateFormat": "YYYY-MM-DD"
},
"keyboard": {
"shortcuts": {
"dashboard": "D",
"drivers": "P",
"sessions": "S",
"analytics": "A",
"addDriver": "N",
"newSession": "T",
"export": "E",
"help": "?"
}
}
}