-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathtailwind.config.js
44 lines (43 loc) · 1.12 KB
/
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
import defaultTheme from 'tailwindcss/defaultTheme';
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.{html,js,ts,vue}',
],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
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')],
};