-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
45 lines (41 loc) · 1014 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
45
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./features/**/*.{js,ts,jsx,tsx}",
"node_modules/daisyui/dist/**/*.js",
],
theme: {
extend: {},
colors: {
gray: colors.gray,
green: colors.green,
blue: colors.blue,
red: colors.red,
white: colors.white,
black: colors.black,
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
dark: {
...require("daisyui/src/colors/themes")["[data-theme=dark]"],
primary: "rgb(58, 96, 233)",
secondary: "rgb(220, 81, 74)",
accent: "rgb(95, 127, 246)",
// neutral: "#3d4451",
neutral: "white",
"base-100": "#2A303C",
info: "#7abff6",
success: "#36D399",
warning: "#FBBD23",
error: "#F87272",
},
},
],
},
};