-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (49 loc) · 1.42 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
49
50
51
52
53
54
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
mode: 'jit',
purge: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
theme: {
extend: {
fontFamily: {
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('daisyui'),
],
daisyui: {
themes: [
{
'mytheme': {
'primary' : '#fcc915',
'primary-focus' : '#f4a304',
'primary-content' : '#2a2e37',
'secondary': '#f000b8',
'secondary-focus': '#bd0091',
'secondary-content': '#ffffff',
'accent': '#37cdbe',
'accent-focus': '#2aa79b',
'accent-content': '#ffffff',
'neutral': '#3d4451',
'neutral-focus': '#2a2e37',
'neutral-content': '#ffffff',
'base-100': '#fdfffe',
'base-200': '#f8f7f7',
'base-300': '#c1c1c1',
'base-content': '#1f2937',
'info': '#2094f3',
'success': '#009485',
'warning': '#ff9900',
'error': '#E4565E',
},
},
],
},
};