// tailwind.config.js
module.exports = {
  content: [
    "./src/**/*.{js,ts,jsx,tsx,html}", 
  ],
  theme: {
    extend: {
      colors: {
        navitem: "#777", 
      },
    },
  },
  plugins: [
    require("tw-animate-css"),
  ],
};
