-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (32 loc) · 816 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (32 loc) · 816 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./webapp/templates/**/*.html',
],
darkMode: "class",
theme: {
extend: {
colors: {
"primary": "#166434",
"accent": "#F59E0B",
"background-light": "#F9FAFB",
"background-dark": "#122017",
"dark-charcoal": "#1F2937",
"medium-gray": "#6B7280",
},
fontFamily: {
"display": ["Inter", "sans-serif"]
},
borderRadius: {
"DEFAULT": "0.5rem",
"lg": "0.5rem",
"xl": "0.75rem",
"full": "9999px"
},
},
},
plugins: [
// require('@tailwindcss/forms'),
// require('@tailwindcss/container-queries'),
],
}