-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
37 lines (36 loc) · 1008 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./hooks/**/*.{js,ts,jsx,tsx}",
"./dashboards/**/*.{js,ts,jsx,tsx}",
"./lib/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
maxWidth: {
hero: "780px",
},
fontFamily: {
sans: ["Inter", "sans-serif"],
},
colors: {
black: "#0F172A", // Slate 900
primary: "#2563EB",
success: "#22C55E", // Green 500
danger: "#DC2626", // Red 600
warning: "#FBBF24", // Amber 400
dim: "#64748B", // Slate 500
washed: "#F1F5F9", // Slate 100
outline: "#E2E8F0", // Slate 200
outlineHover: "#94A3B8", // Slate 400
background: "#F8FAFC", // Slate 500
},
gridTemplateColumns: {
14: "repeat(14, minmax(0, 1fr))",
},
},
},
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/line-clamp")],
};