-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 958 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
44 lines (44 loc) · 958 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
39
40
41
42
43
44
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app-core/app/Views/**/*.php",
"./public/**/*.php",
"./index.php"
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#065F46',
50: '#ecfdf5',
100: '#d1fae5',
200: '#a7f3d0',
300: '#6ee7b7',
400: '#34d399',
500: '#10b981',
600: '#059669',
700: '#047857',
800: '#065f46',
900: '#064e3b',
},
secondary: {
DEFAULT: '#24a871',
}
},
fontFamily: {
"display": ["Inter", "sans-serif"],
"manrope": ["Manrope", "sans-serif"]
},
borderRadius: {
"DEFAULT": "0.375rem",
"lg": "0.625rem",
"xl": "1rem",
"full": "9999px"
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/container-queries'),
],
}