-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
65 lines (65 loc) · 1.5 KB
/
Copy pathtailwind.config.js
File metadata and controls
65 lines (65 loc) · 1.5 KB
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
55
56
57
58
59
60
61
62
63
64
65
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "media",
content: ["./index.html", "./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
'sans': ['Inter', 'sans-serif'],
},
keyframes: {
expand: {
'0%': { maxHeight: '0px', opacity: '0' },
'100%': { maxHeight: '500px', opacity: '1' },
},
collapse: {
'0%': { maxHeight: '500px', opacity: '1' },
'100%': { maxHeight: '0px', opacity: '0' },
},
},
animation: {
expand: 'expand 0.5s ease-out forwards',
collapse: 'collapse 0.5s ease-out forwards',
},
},
},
daisyui: {
themes: [
{
light: {
"primary": "#4c4f69",
"secondary": "#5c5f77",
"accent": "#6c6f85",
"neutral": "#ccd0da",
"base-100": "#eff1f1",
"info": "#1e66f5",
"success": "#40a02b",
"warning": "#df8e1d",
"error": "#d20f39",
},
dark: {
"primary": "#c6d0f5",
"secondary": "#b5bfe2",
"accent": "#a5adce",
"neutral": "#292c3c",
"base-100": "#303446",
"info": "#8caaee",
"success": "#a6d189",
"warning": "#e5c890",
"error": "#e78284",
},
},
"nord",
"black",
"lofi",
"retro",
"night",
"cyberpunk",
"aqua",
"valentine",
],
},
plugins: [
require('daisyui'),
],
}