-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (44 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
"node_modules/@fuego-ui/react/index.js",
],
theme: {
colors: {
black: "#303841",
white: "#fff",
gray: "#777777",
"blue-jaunts": "#467dcd",
"light-purple-fax": "#f1f1ff",
"hip-black": "#303842",
"geeking-orange": "#f9674e",
"red-mans": "#e23d3d",
"yee-purple": "#52489c",
"ardy-green": "#1b998b",
"wilding-yellow": "#eec643",
"ocean-blue": "#81d3ca",
"shadow-black": "#22282f",
transparent: "transparent",
},
extend: {},
},
daisyui: {
themes: [
{
mytheme: {
primary: "#81d3ca",
secondary: "#D926A9",
accent: "#81d3ca",
neutral: "#2A303C",
"base-100": "#2A303C",
info: "#3ABFF8",
success: "#36D399",
warning: "#FBBD23",
error: "#F87272",
},
},
],
},
plugins: [require("daisyui")],
};