forked from andreykobal/Amber-mint-page
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
40 lines (40 loc) · 966 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
/** @type {import('tailwindcss').Config} */
const withMT = require("@material-tailwind/react/utils/withMT")
module.exports = withMT({
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
primary: "#6ECCFF",
accent: "#FFBCDD",
background: "#F2F6FF",
ampink: "#FFBCDD",
},
fontFamily: {
headline: ["SF Pro Display"],
sans: ["SF Pro Display", "Helvetica", "Arial", "sans-serif"],
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
theme: {
"base-100": "#ffffff", // dark or light theme
primary: "#6eccff",
secondary: "#ffbcdd",
accent: "#1FB2A6",
neutral: "#191D24",
info: "#3ABFF8",
success: "#36D399",
warning: "#FBBD23",
error: "#F87272",
},
},
],
},
variants: {
linearGradients: ["hover", "responsive"],
},
})