-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (43 loc) · 958 Bytes
/
tailwind.config.js
File metadata and controls
43 lines (43 loc) · 958 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./",
"./components/**/*.{vue,js,ts}",
"./layouts/**/*.{vue,js,ts}",
"./pages/**/*.{vue,js,ts}",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}"
],
theme: {
extend: {},
},
daisyui: {
themes: [
{
mytheme: {
"primary": "#6b7280",
"secondary": "#4b5563",
"secondary-100": "#444d59",
"accent": "#f97316",
"neutral": "#565c67",
"base-100": "#374151",
"info": "#67e8f9",
"success": "#00ff00",
"warning": "#fbbf24",
"error": "#ff0000",
},
},
],
},
plugins: [
require('daisyui'),
function({ addUtilities }) {
const newUtilities = {
'.image-render-nearest': {
'image-rendering': 'pixelated',
},
}
addUtilities(newUtilities, ['responsive', 'hover']);
}
],
}