Files
LK_Landing_Page/tailwind.config.js
T
2024-04-13 11:11:29 +01:00

28 lines
614 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"custom-bglight": "#1C1C1F",
"custom-bgdark": "#06060B",
"text-gold": "#FACC97",
"gold-light": "#FACC97",
"gold-dark": "#54330F",
},
fontFamily: {
baijam: ['"Bai Jamjuree"', "sans-serif"],
},
spacing: {
"4-75": "4.75rem",
8: "8rem",
"13-62": "13.625rem",
20: "12rem",
21: "21rem",
22: "22rem",
},
},
},
plugins: [],
};