forked from AbdelrhamanHaridy/qwiktest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (46 loc) · 1.69 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
45
46
47
48
49
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
purge: [
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: "var(--primary-color)",
secondary: "var(--secondary-color)",
'qt-primary': '#38b355',
'qt-secondary': '#4f4d91',
'qt-lite': '#7cc9c1',
'qt-option': '#63d0f2',
},
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
},
},
variants: {
flex: ['responsive', 'direction'],
flexDirection: ['responsive', 'direction'],
justifyContent: ['responsive', 'direction'],
textAlign: ['responsive', 'direction'],
float: ['responsive', 'direction'],
margin: ['responsive', 'direction'],
padding: ['responsive', 'direction'],
transformOrigin: ['responsive', 'direction'],
position: ['responsive', 'direction'],
inset: ['responsive', 'direction'],
space: ['responsive', 'direction'],
translate: ['responsive', 'direction'],
borderWidth: ['responsive', 'direction'],
borderRadius: ['responsive', 'direction'],
scale: ['group-hover'],
extend: {
opacity: ['disabled']
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography'), require('@tailwindcss/line-clamp'), require('@tailwindcss/aspect-ratio'), require('tailwindcss-dir')()],
};