-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (49 loc) · 1.23 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
/** @type {import('tailwindcss').Config} */
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
daisyui: {
themes: [
"light",
{
synthwave: {
...require("daisyui/src/theming/themes")["synthwave"],
"#faq": {
color: "white",
},
".footer-text": {
color: "white",
},
".footer-contact": {
color: "white",
opacity: 0.6,
},
".footer-contact:hover": {
color: "#e55039",
},
".pricing-heading": {
color: "black",
},
"#card-section": {
backgroundColor: "#1A103D",
border: "1px solid white",
paddingTop: "20px",
paddingLeft: "20px",
paddingRight: "20px",
},
".country-pic-header": {
color: "white",
},
".country-pic-description": {
color: "white",
opacity: 0.8,
},
},
},
],
},
plugins: [require("daisyui")],
});