-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (50 loc) · 1019 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
51 lines (50 loc) · 1019 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
44
45
46
47
48
49
50
51
const colors = require('tailwindcss/colors')
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./public/index.html",
],
purge: {
enabled: process.env.NODE_ENV === 'production',
content: [
'./src/components/**/*.{js,jsx,ts,tsx}',
'./public/index.html',
]
},
theme: {
extend: {
colors: {
orange: colors.orange
},
sepia: {
0: '0',
25: '.25',
75: '.75',
}
},
},
daisyui: {
themes: [
{
mytheme: {
// "primary": "#FEF08A",
"primary": "#AF69EF",
"secondary": "#D926A9",
"accent": "#FDA4AF",
"neutral": "#191D24",
"base-100": "#2A303C",
"info": "#3ABFF8",
"success": "#36D399",
"warning": "#FBBD23",
"error": "#F87272",
}
},
"halloween"
]
},
plugins: [
require('@tailwindcss/typography'),
require('daisyui'),
require("tailwindcss-animate"),
],
}