-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.js
69 lines (69 loc) · 1.6 KB
/
tailwind.config.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
69
module.exports = {
content: ["./src/**/*.{html,ts,css}"],
theme: {
extend: {
fontFamily: {
montserat: "'Montserrat', sans-serif",
raleway: "'Raleway', sans-serif",
ubuntu: "'Ubuntu', sans-serif",
sohne: "'Leicht', sans-serif",
sohneK: "'Kraftig', sans-serif"
},
colors: {
primary: {
50: '#00c2cb',
100: "#A0DAE1",
200: "#73CCD6",
300: "#4AC3CD",
400: "#1FBEC8",
500: "#15B2BC",
600: "#0FA6AF",
700: "#09969F",
800: "#057C86",
900: '#04666C'
},
secondary: "#052b5d",
accent: {
100: '#FFE5BD',
200: '#FFD79C',
300: '#FECA7A',
400: '#fdbc5a',
500: '#ECAA47',
600: '#D99833',
700: '#C58624',
800: '#B07518',
900: '#9E650C'
},
error: "#f55f44",
grays: {
100: "#eef1f4",
200: '#F9FAFB',
600: "#4B5563"
},
skin: {
base: "#6b7280",
text: "#374151",
art: "#052b5d",
link: "#f3f4f6",
muted: "#9ca3af",
inverted: "#052b5d",
border: "#e5e7eb",
card: "#fff",
cardMuted: "#f9fafb",
borderBold: "#d1d5db",
bg: "#f9fafb",
bgMuted: "#f3f4f6"
},
},
spacing: {
px: '1px',
btnHx: '38px',
}
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
],
}