-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (44 loc) · 1.41 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
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
module.exports = {
mode: 'jit',
darkMode: 'media',
purge: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],
theme: {
extend: {
colors: {
blueGray: colors.blueGray,
orange: colors.orange,
fuchsia: colors.fuchsia,
purple: {
'450' : '#9c80ee'
},
primary: '#9c80ee',
},
fontFamily: {
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
},
height: {
'screen-1/5' : '13vh',
'screen-1/2': '50vh',
'screen-3/5' : '62vh',
'screen-3/4': '75vh',
'screen-4/5': '80vh',
},
width: {
'screen-9/10': '90vw',
},
dropShadow: {
'purple': '0px 1px 2px rgba(156,128,238,0.32)',
'blue': '0px 1px 2px rgba(96,165,250,0.2)',
}
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
};