-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
40 lines (38 loc) · 1.28 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
purge: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inria Sans', ...defaultTheme.fontFamily.sans],
serif: ['Inria Serif', ...defaultTheme.fontFamily.sans],
},
colors: {
theme: {
blue: {
100:'#2B91BF',
200:'#2682ab',
300:'#227498',
400:'#1e6585',
500:'#195772',
600:'#15485f',
700:'#113a4c',
800:'#0c2b39',
900:'#081d26',
},
light: '#F8F3DA',
slate: '#708090',
charcoal: '#333333',
davy: '#555555',
}
}
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
};