-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathtailwind.config.js
86 lines (82 loc) · 2.04 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/templates/**/*.{html,js}"],
theme: {
colors: {
primary: {
DEFAULT: "#559FFF",
dark: "#4887D9",
darker: "#4078BF"
},
general: "#161616",
grey: "#B6B6B6",
"dark-grey": "#626262",
"off-white": "#F0F0F0",
sub: "#7A7A7A",
night: "#161616",
disabled: "#D9D9D9",
"light-grey": "#D9D9D9",
white: "#FFFFFF",
success: "#00BA88",
error: "#FA3C6A",
base: "#fafafa",
transparent: "#00000000",
},
fontFamily: {
sans: [
"Mulish",
"Inter",
"Roboto",
'"Noto Sans"',
'"Open Sans"',
'"Helvetica Neue"',
'"Segoe UI"',
"BlinkMacSystemFont",
"-apple-system",
"Cantarell",
"Arial",
"sans-serif",
],
},
fontSize: {
small: [
"1rem",
{
lineHeight: "1.5rem",
},
],
medium: [
"1.25rem",
{
lineHeight: "1.875rem",
},
],
large: [
"1.5625rem",
{
lineHeight: "2.34375rem",
},
],
"display-medium": [
"2.375rem",
{
lineHeight: "2.375rem",
},
],
"display-large": [
"3rem",
{
lineHeight: "3rem",
},
],
},
extend: {
"width": {
"page": "73.75rem",
}
},
},
plugins: [
require('@tailwindcss/typography'),
]
};