-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (53 loc) · 1.14 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
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx, html, css}",
"./content/**/*.{js,jsx,ts,tsx,html,md,mdx}",
],
theme: {
extend: {
fontFamily: {
Montserrat: ["Montserrat", "sans-serif"],
},
fontSize: {
22: ["22px", "30px"],
},
letterSpacing: {
wider2xl: ".25em",
},
colors: {
themeBlue: {
200: "#028bf3",
300: "#0169b8",
400: "#015ea5",
500: "#01487e",
600: "#013d6b",
700: "#013257",
800: "#001c30",
},
themeOrange: {
100: "#FFEC19",
200: "#ffa800",
300: "#fc9902",
400: "#ca7a02",
600: "#975c01",
700: "#4c2e01",
},
themeYellow: {
400: "#ed950d",
},
facebookBlue: "#4267B2",
linkedInBlue: "#0072b1",
},
listStyleType: {
tickmark: "✓",
},
},
},
plugins: [
require("tailwindcss"),
require("autoprefixer"),
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
require("@tailwindcss/line-clamp"),
],
}