-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (48 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
{
relative: true,
transform: (content) => content.replace(/taos:/g, ''),
files: ['./src/*.{html,js}'],
},
'./public/**/*.{html,js}',
'./src/**/*.{html,js}',
],
daisyui: {
themes: [
{
lighttheme: {
"primary": "#56B280",
"secondary": "#A8A8A8",
"accent": "#000",
"neutral": "#ffffff",
"base-100": "#ffffff",
"base-200": "#F7F8FA",
"base-300": "#F2F2F2",
"info": "#A8A8A8",
"success": "#ffffff",
"warning": "#ffffff",
"error": "#f03258",
},
},
"dark",
],
safelist: [
'!duration-[0ms]',
'!delay-[0ms]',
'html.js :where([class*="taos:"]:not(.taos-init))',
],
},
theme: {
extend: {
backgroundImage: {
'hero': "url('../img/hero-mobile.jpg')",
},
},
},
plugins: [
require("daisyui"),
require('taos/plugin'),
],
};