-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
43 lines (43 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
"onedark-crust": "#1E2227",
"onedark-base": "#21252B",
"onedark-mantle": "#323842",
"onedark-text": "#F6F7F9",
"onedark-red": "#E06C75",
"onedark-green": "#98C379",
"onedark-yellow": "#E5C07B",
"onedark-blue": "#61AFEF",
"onedark-purple": "#C678DD",
"onedark-fountainblue": "#56B6C2",
"onedark-gray": "#ABB2BF",
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
mytheme: {
"primary": "#E06C75",
"secondary": "#61AFEF",
"accent": "#98C379",
"neutral": "#ABB2BF",
"base-100": "#21252B",
"info": "#61AFEF",
"success": "#98C379",
"warning": "#E5C07B",
"error": "#E06C75",
},
},
],
},
};