-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.js
43 lines (43 loc) · 814 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
module.exports = {
borders: ["none", "solid 1px", "solid 2px"],
colors: {
text: "#000",
background: "#fff",
primary: "#07c",
secondary: "#05a",
accent: "#609",
muted: "#f6f6f6f"
},
fonts: {
sans: '"IBM Plex Sans", sans-serif',
serif: '"IBM Plex Serif", serif'
},
fontSizes: {
"0": "1rem",
"1": "1.25rem",
"2": "1.75rem",
"3": "2.5rem",
"4": "3.5rem",
"-1": "0.75rem",
base: 16
},
fontWeights: {
medium: 500,
normal: 400,
bold: 700
},
letterSpacings: {
normal: "normal",
caps: "0.125rem",
tight: "-0.0625rem"
},
lineHeights: [1, 1.25, 1.5, 2],
radii: [0, 4, 8, 16, 9999, "50%"],
shadows: [
"none",
"0 1px 1px rgba(0, 0, 0, 0.05)",
"0 1px 3px rgba(0, 0, 0, 0.1)"
],
sizes: ["initial", "48rem", "64rem"],
space: [0, 4, 8, 16, 32, 64, 128, 256, 512]
};