-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.js
43 lines (37 loc) · 1.07 KB
/
tailwind.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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
purge: ['./storage/framework/views/*.php', './resources/views/**/*.blade.php', './resources/js/**/*.vue'],
theme: {
extend: {
fontFamily: {
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
},
height: {
"10v": "10vh",
"20v": "20vh",
"25v": "25vh",
"30v": "30vh",
"40v": "40vh",
"50v": "50vh",
"60v": "60vh",
"70v": "70vh",
"75v": "75vh",
"80v": "80vh",
"90v": "90vh",
"100v": "100vh",
"full": "100%",
},
colors: {
orange: '#fc9622',
yellow: '#fbbf10',
}
},
},
variants: {
opacity: ['responsive', 'hover', 'focus', 'disabled'],
},
plugins: [
require('@tailwindcss/ui'),
require('@tailwindcss/custom-forms'),
],
};