-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (34 loc) · 1.11 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./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/**/*.js'
],
theme: {
extend: {
colors: {
"nu-primary": "#110133",
"nu-secondary": "#2F80ED",
"nu-green": "#33DB92",
"nu-orange": "orange",
"nu-red": "#fe4c6a",
"nu-gray": {
100: "#F4F5F8",
200: "#E6E6E6",
300: "#C4C4C4",
400: "#7A7A7A",
},
},
boxShadow: {
drop: "0 10px 30px 0 rgba(0, 0, 0, 0.1)",
},
fontFamily: {
sans: ['Montserrat', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
};