mirror of
https://git.kh3group.com/georgebiri/khy_website.git
synced 2026-07-02 06:23:33 +00:00
13 lines
316 B
JavaScript
13 lines
316 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./*.html", "./src/**/*.{html,js}", "./scripts/**/*.js"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
montserrat: ["Montserrat", "sans-serif"],
|
|
playfair: ["Playfair Display", "serif"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|