-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
55 lines (50 loc) · 1.33 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
50
51
52
53
54
55
/** @type {import('tailwindcss').Config} */
import { keepTheme } from "keep-react/keepTheme";
const config = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
keyframes: {
fadeIn: {
"0%": { opacity: 0, transform: "translateY(-10px)" },
"100%": { opacity: 1, transform: "translateY(0)" },
},
},
animation: {
"fade-in": "fadeIn 0.3s ease-out",
},
colors: {
primary: "#3686FF",
"dark-bg": "#0F172A",
"dark-card": "#1E293B",
"dark-box": "#293548",
"dark-text-color": "#c4c7ce",
"dark-heading-color": "rgb(56 189 248)",
"dark-border-color": "#e5e7eb",
"button-bg": "#3686FF",
"button-bg-hover": "#4890fc",
"light-text-color": "#a5a5a5b8",
"light-bg": "#e5e7eb6e",
"gray-text": "#8b8b8b",
"light-input": "#F1F5F9",
},
},
},
plugins: [
function ({ addUtilities }) {
const newUtilities = {
".wrapper-container": {
width: "1280px",
margin: "auto",
},
};
addUtilities(newUtilities, ["responsive", "hover"]);
},
require("daisyui"),
],
darkMode: "selector",
};
export default keepTheme(config);