zhereh-frontend

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

tailwind.config.js (625B)


      1 /** @type {import('tailwindcss').Config} */
      2 export default {
      3   content: ['./src/**/*.{html,js,svelte,ts}'],
      4   theme: {
      5     extend: {
      6       fontFamily: {
      7         'poppins': ['Poppins', 'sans-serif']
      8       }
      9     },
     10   },
     11   daisyui: {
     12     themes: [
     13       {
     14         mytheme: {
     15           "primary": "#00d1b2",
     16           "secondary": "#a989f9",
     17           "accent": "#ffcce8",
     18           "neutral": "#322541",
     19           "base-100": "#ffffff",
     20           "info": "#abceed",
     21           "success": "#65e2b2",
     22           "warning": "#eeb21b",
     23           "error": "#f71d62",
     24         },
     25       },
     26     ],
     27   },
     28   plugins: [require("daisyui")],
     29 }
     30