forked from veteransaffairscanada/vac-benefits-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.js
68 lines (66 loc) · 1.71 KB
/
theme.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
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
68
let theme = {
fontFamilySerif: "Georgia",
fontFamilySansSerif: "Montserrat",
marginTop: "25px", //used in place of theme.spacing.unit *3
unit: "8px",
cardPadding: "35px",
cardPaddingMobile: "19px",
boxShadow: "0 4px 14px rgba(0,0,0,.05);",
max: {
xs: "424.5px",
sm: "767.5px",
md: "999.5px",
lg: "1919.5px"
},
min: {
xs: "425px",
sm: "768px",
md: "1000px",
lg: "1920px"
},
colour: {
blackish: "#3d3d3d",
paleGrey: "#eaebed",
paleGreyTwo: "#f4f7f9",
warmGrey: "#979797",
brownishGrey: "#646464",
paleGreyishBrown: "#f8f8f8",
greyishBrownTwo: "#505050",
greyishBrown: "#2f3437",
slateGrey: "#656972",
cerulean: "#006cc9",
darkGreyBlue: "#284162",
paleBlue: "#e3f2ff",
fernGreen: "#39824d",
darkGreen: "#295f38",
tornadoRed: "#ea4335",
red2: "#d0021b",
focusBlue: "#719EF1",
white: "#ffffff",
cardGrey: "#f3f3f3",
black: "#000000",
alertYellow: "#fbb830",
lightYellow: "#f9f4d3",
betaBlue: "#634f70",
salmon: "#ff6961",
blueGrey: "#838d9b",
paleBlueGrey: "#f1f7fc",
darkBlueGrey: "#d8dee2",
lineGrey: "#dfdfdf",
borderGreen: "#1da570",
charcoalGrey: "#31353a",
navy: "#434458",
duckEggBlue: "#dbe3e5",
darkPaleGrey: "#d5e2e9",
blueish: "#f6f9fa",
blackBlue: "#2f2f42",
blackish2: "#2e2e40"
}
};
theme.colour.textColour = theme.colour.blackish;
theme.colour.focusColour = theme.colour.focusBlue;
theme.colour.linkColour = theme.colour.cerulean;
theme.colour.linkHoverColour = theme.colour.cerulean;
theme.colour.boxBorderColour = theme.colour.darkPaleGrey;
theme.colour.bannerColour = theme.colour.blackish2;
export const globalTheme = { ...theme };