2023-11-13 17:16:39 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2024-01-17 09:14:24 +00:00
|
|
|
content: ["./src/**/*.{html,js,ts,jsx,tsx}"],
|
2023-11-13 17:16:39 +00:00
|
|
|
theme: {
|
|
|
|
extend: {},
|
2023-11-13 17:38:52 +00:00
|
|
|
fontFamily: {
|
2024-01-17 09:14:24 +00:00
|
|
|
body: ["Source Sans 3", "sans-serif"],
|
|
|
|
title: ["Work Sans", "sans-serif"],
|
2023-11-13 17:38:52 +00:00
|
|
|
},
|
2023-11-13 17:16:39 +00:00
|
|
|
},
|
2024-01-17 09:14:24 +00:00
|
|
|
plugins: [require("flowbite/plugin")],
|
|
|
|
};
|