-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
46 lines (43 loc) · 1.45 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
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
'./node_modules/flowbite/**/*.js'
],
theme: {
extend: {
fontFamily: {
sans: ['Museo Sans', ...defaultTheme.fontFamily.sans],
},
colors: {
zhp: {
100: '#a6ce39',
200: '#a6ce39',
300: '#a6ce39',
400: '#a6ce39',
500: '#78a22f',
600: '#78a22f',
700: '#78a22f',
800: '#78a22f',
900: '#78a22f',
},
cbp: {
100: 'rgb(25, 64, 147)',
200: 'rgb(37, 46, 120)',
300: 'rgb(37, 46, 120)',
400: 'rgb(37, 46, 120)',
500: 'rgb(35, 39, 64)',
600: 'rgb(35, 39, 64)',
700: 'rgb(35, 39, 64)',
800: 'rgb(35, 39, 64)',
900: 'rgb(35, 39, 64)',
}
}
},
},
plugins: [require('@tailwindcss/forms'), require('flowbite/plugin')],
};