-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconstants.js
41 lines (37 loc) · 825 Bytes
/
constants.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
39
40
41
export const COLORS = {
white: "#fff",
black: "#000",
primary_blue: "#2C2C54",
primary_red: "#A40E4C",
light_blue: "#ADD8E6",
transparent_gray: "#A40E4C0D",
dark_gray: "#a9a9a9",
orange: "#F49D6E",
navy_blue: "#000080",
blue: "#0000FF",
};
export const LAYOUT = {
row: {
display: "flex",
flexDirection: "row",
},
column: {
display: "flex",
flexDirection: "column",
},
centerMiddle: {
display: "flex",
alignItems: "center",
justifyContent: "center",
},
};
export const defaultIconSize = 40;
export const defaultIconColor = COLORS.primary_blue;
export const allBreathingSessions = {
DeepBreathing: "Deep Breathing",
SquareBreathing: "Square Breathing",
};
export const breathingHelpScreens = {
DeepBreathing: "SquareInfo3",
SquareBreathing: "DeepInfo",
}