-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (39 loc) · 923 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
module.exports = {
content: ['./resources/**/*.blade.php', './resources/**/*.{html,js,ts,vue}'],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#0fa968',
50: '#ecfdf3',
100: '#d1fae1',
200: '#a7f3c9',
300: '#6ee7ac',
400: '#34d38b',
500: '#0fa968',
600: '#05965c',
700: '#04784c',
800: '#065f3e',
900: '#064e34',
},
background: '#e5e5e5',
surface: '#ffffff',
},
},
},
variants: {
aspectRatio: ['responsive', 'hover'],
opacity: ['disabled'],
cursor: ['disabled'],
},
corePlugins: {
aspectRatio: false,
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/line-clamp'),
],
};