-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (49 loc) · 987 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
44
45
46
47
48
49
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./assets/**/*.js",
"./templates/**/*.html.twig",
],
theme: {
container: {
center: true,
padding: {
DEFAULT: '1rem',
lg: '2rem',
},
},
extend: {
colors: {
border: "#e2e8f0",
background: "#ffffff",
foreground: "#020817",
primary: {
DEFAULT: "#0f172a",
foreground: "#f8fafc",
},
secondary: {
DEFAULT: "#f1f5f9",
foreground: "#0f172a",
},
destructive: {
DEFAULT: "#ef4444",
foreground: "#f8fafc",
},
muted: {
DEFAULT: "#f1f5f9",
foreground: "#64748b",
},
accent: {
DEFAULT: "#f1f5f9",
foreground: "#0f172a",
},
},
borderRadius: {
lg: "0.6rem",
md: "0.4rem",
sm: "0.2rem",
},
},
},
plugins: [],
}