-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (37 loc) 路 818 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
38 lines (37 loc) 路 818 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
mode: "jit",
theme: {
extend: {
colors: {
primary: "#1E90FF",
secondary: "#FF6347",
danger: "#DC143C",
dimWhite: "rgba(255, 255, 255, 0.7)",
dimBlue: "rgba(9, 151, 255, 0.7)",
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
}
},
scale: {
xs: "480px",
ss: "620px",
sm: "768px",
md: "1060px",
lg: "1200px",
xl: "1736px",
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/line-clamp'),
],
}