forked from react-ui-kit/dribbble2react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.js
56 lines (52 loc) · 834 Bytes
/
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
const colors = {
accent: "#F72B2B",
primary: "#D61B1F",
secondary: "#3A3232",
tertiary: "#ED6004",
black: "#000000",
white: "#FFFFFF",
gray: "#D9D2D2",
gray2: "#F6F5F5",
};
const sizes = {
// global sizes
base: 12,
font: 12,
border: 10,
// font sizes
h1: 32,
h2: 26,
h3: 18,
title: 16,
body: 12,
caption: 12,
small: 8,
};
const fonts = {
h1: {
fontFamily: "Montserrat-Bold",
fontSize: sizes.h1
},
h2: {
fontFamily: "Montserrat-Bold",
fontSize: sizes.h2
},
h3: {
fontFamily: "Montserrat-Bold",
fontSize: sizes.h3
},
title: {
fontFamily: "Montserrat-Bold",
fontSize: sizes.title
},
body: {
fontSize: sizes.body
},
caption: {
fontSize: sizes.caption
},
small: {
fontSize: sizes.small
}
};
export { colors, sizes, fonts };