-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
52 lines (51 loc) · 1.67 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
const { url } = require("inspector");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./public/**/*.html",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/flowbite-react/lib/**/*.js",
],
theme: {
fontFamily: {
Metric: ['"Metric-Regular"', "serif"],
Figtree: ['"Figtree"', 'sans-serif'], // New font added
},
extend: {
backgroundImage: {
categoryBackground: "url('../public/categoryBackground.png')",
nutcrackerBackground: "url('../public/background.png')",
vendorBackground: "url('../public/vendorBackground.png')",
mapBackground: "url('/assets/MapCover.png')",
welcomeImage: "url('../public/welcomeImage.png')",
},
colors: {
ballet: "#33323c",
},
height: {
128: "32rem",
},
letterSpacing: {
tightest: "-.075em",
tighter: "-.05em",
tight: "-.025em",
normal: "0",
wide: ".025em",
wider: ".05em",
widest: ".1em",
widest: ".20em",
},
dropShadow: {
glow: [
"0 35px 60px -15px rgba(255, 255, 0, 0.3)", // Modified to use yellow color
],
},
screens: {
s: "400px",
},
},
},
plugins: [require("flowbite/plugin"), require("@tailwindcss/forms")],
};