-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (42 loc) · 980 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
module.exports = {
mode: 'jit',
content: [
'./app/redaxo/data/addons/developer/**/*.php',
], theme: {
extend: {
colors: {
primary: {
DEFAULT: '#0D6EFD',
'50': '#C3DBFF',
'100': '#AFCFFE',
'200': '#86B7FE',
'300': '#5E9EFE',
'400': '#3586FD',
'500': '#0D6EFD',
'600': '#0255D0',
'700': '#013E99',
'800': '#012861',
'900': '#001129'
},
secondary: {
DEFAULT: '#6B7280',
'50': '#CDD0D5',
'100': '#C2C5CC',
'200': '#ACB0BA',
'300': '#969BA7',
'400': '#7F8694',
'500': '#6B7280',
'600': '#515761',
'700': '#383C43',
'800': '#1E2024',
'900': '#050506'
},
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
],
};