-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.js
33 lines (32 loc) · 1 KB
/
style.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
const HEADER_COLOR = 'rgba(43,84,126,1)';
const HOLDS_BUTTON_COLOR = 'rgba(70,130,180,.8)';
const HOLDS_BUTTON_COLOR_LIGHT = 'rgba(70,130,180,.1)';
const ROUTE_BUTTON_COLOR = 'rgba(70,180,130,.8)';
const ROUTE_BUTTON_COLOR_LIGHT = 'rgba(70,180,130,.1)';
const PLACEHOLDER_COLOR = 'rgba(0,0,0,.3)';
const SCREEN_BACKGROUND_COLOR = 'rgba(120, 180, 240, .08)';
const SCREEN_BACKGROUND_COLOR_DARK = 'rgba(40, 60, 80, 1)';
const HIGHLIGHT_COLOR = 'rgba(255,255,255,.8)';
const START_HOLD_COLOR = 'rgba(0,255,0,.6)';
const END_HOLD_COLOR = 'rgba(255,0,0,.6)';
const HOLD_COLOR = 'rgba(255,255,255,.6)';
const START_TOGGLE_COLOR = 'green';
const END_TOGGLE_COLOR = 'rgba(255,0,0,.8)'
export {
// Colors
HEADER_COLOR,
HOLDS_BUTTON_COLOR,
HOLDS_BUTTON_COLOR_LIGHT,
ROUTE_BUTTON_COLOR_LIGHT,
ROUTE_BUTTON_COLOR,
PLACEHOLDER_COLOR,
SCREEN_BACKGROUND_COLOR,
SCREEN_BACKGROUND_COLOR_DARK,
HIGHLIGHT_COLOR,
START_HOLD_COLOR,
END_HOLD_COLOR,
HOLD_COLOR,
START_TOGGLE_COLOR,
END_TOGGLE_COLOR,
// Dimensions
};