-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
43 lines (42 loc) · 927 Bytes
/
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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layouts/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
transitionProperty:{
height:"height"
},
colors:{
primary:{
DEFAULT:"#01080E",
light:"#011221",
lighter:"#011627",
dark:"#010C15"
},
secondary:{
DEFAULT:"#607B96",
blue:"#3C9D93",
purple:"#4D5BCE",
},
accent:{
DEFAULT:"#FEA55F",
green:"#43D9AD",
orange:"#E99287",
pink:"#C98BDF"
},
gradients:{
DEFAULT:"#4D5BCE",
secondary:"#43D9AD"
},
lines:"#1E2D3D"
},
fontFamily:{
headline:"Fira Code, monospace"
},
},
},
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/line-clamp")],
}