-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
44 lines (42 loc) · 954 Bytes
/
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
const plugin = require('tailwindcss/plugin');
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
screens: {
print: { raw: 'print' },
},
aspectRatio: {
'9/16': '9 / 16',
'16/9': '16 / 9',
},
},
},
plugins: [
require('daisyui'),
plugin(function ({ addVariant }) {
addVariant('no-print', '@media not print');
}),
],
daisyui: {
themes: [
'autumn',
'halloween',
{
halloween: {
...require('daisyui/src/theming/themes')['halloween'],
primary: '#f28c18',
secondary: '#B51288',
accent: '#51a800',
neutral: '#2e1a05',
'base-100': '#212121',
info: '#22d3ee',
success: '#65a30d',
warning: '#db7706',
error: '#dc2828',
},
},
],
darkTheme: 'halloween',
},
};