-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (43 loc) · 966 Bytes
/
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
const { fontFamily } = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./renderer/**/*.{js,ts,jsx,tsx}",
"./renderer/pages/**/*.{js,ts,jsx,tsx}",
"./renderer/components/**/*.{js,ts,jsx,tsx}",
],
corePlugins: {
preflight: false,
},
theme: {
extend: {},
},
darkMode: "class",
keyframes: {
blink: {
"0%, 100%": { opacity: 1 },
"50%": { opacity: 0 },
},
},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
daisyui: {
themes: [
"light",
"dark",
{
mytheme: {
primary: "#fbbf24",
secondary: "#b5e57e",
accent: "#d6b251",
neutral: "#322541",
"base-100": "#1f2937",
info: "#51c2ec",
success: "#25ad94",
warning: "#f1c241",
error: "#f24131",
},
},
],
},
};