Files
LK_Landing_Page/tailwind.config.js
T
2024-06-05 03:57:46 +01:00

23 lines
542 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"],
},
backgroundImage: {
"hero-pattern": "url('./src/assets/HeroImg.svg')",
},
},
},
plugins: [],
};