-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (47 loc) · 1.28 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
/** @type {import('tailwindcss').Config} */
module.exports = {
themes: [
{
mytheme: {
"primary": "#661AE6",
"secondary": "#D926AA",
"accent": "#1FB2A5",
"neutral": "#191D24",
"base-100": "#2A303C",
"info": "#3ABFF8",
"success": "#36D399",
"warning": "#FBBD23",
"error": "#F87272",
},
},
],
content: [
"./pages/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
keyframes: {
fadeOut: {
'from': { opacity : '1' },
'to': { opacity: '0' },
},
},
fontFamily: {
dollar: ["dollar", "sans"],
clue: ["clue", "sans"],
category: ["category", "sans"],
},
}
},
plugins: [
require('tailwind-scrollbar'),
require('daisyui'),
require('prettier-plugin-tailwindcss'),
],
daisyui: {
themes: ["light", "dark", "cupcake", "bumblebee", "emerald", "corporate", "synthwave", "retro", "cyberpunk", "valentine", "halloween", "garden", "forest", "aqua", "lofi", "pastel", "fantasy", "wireframe", "black", "luxury", "dracula", "cmyk", "autumn", "business", "acid", "lemonade", "night", "coffee", "winter"],
},
}