-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (46 loc) · 1.25 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
screens: {
xs: "400px",
// => @media (min-width: 400px) { ... }
sm: "540px",
// => @media (min-width: 540px) { ... }
md: "720px",
// => @media (min-width: 720px) { ... }
lg: "960px",
// => @media (min-width: 960px) { ... }
xl: "1140px",
// => @media (min-width: 1240px) { ... }
"2xl": "1320px",
// => @media (min-width: 1320px) { ... }
},
container: {
center: true,
padding: "16px",
},
extend: {
colors: {
dark: "#090E34",
"dark-700": "#090e34b3",
primary: "#3056D3",
secondary: "#13C296",
"body-color": "#637381",
warning: "#FBBF24",
},
boxShadow: {
input: "0px 7px 20px rgba(0, 0, 0, 0.03)",
pricing: "0px 39px 23px -27px rgba(0, 0, 0, 0.04)",
"switch-1": "0px 0px 5px rgba(0, 0, 0, 0.15)",
"testimonial-4": "0px 60px 120px -20px #EBEFFD",
"testimonial-5": "0px 10px 39px rgba(92, 115, 160, 0.08)",
"contact-3": "0px 4px 28px rgba(0, 0, 0, 0.08)",
},
},
},
plugins: [],
}