| 12345678910111213141516171819202122232425262728 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: ["./*.{html,js}"],
- theme: {
- extend: {
- fontFamily: {
- monts: ['Montserrat'],
- poppins: ['Poppins']
- }
- },
- },
- daisyui: {
- themes: [
- {
- mytheme: {
- primary: "#000000",
- secondary: "#e05d06",
- accent: "#37cdbe",
- neutral: "#3d4451",
- "base-100": "#ffffff",
- },
- }
- ],
- },
- plugins: [require("daisyui")],
- }
|