/** @type {import('tailwindcss').Config} */ module.exports = { content: ["./src/**/*.{html,tsx,ts,js,jsx}"], theme: { extend: { colors: { ielts: { reading: {DEFAULT: "#FF6384", transparent: "rgba(255, 99, 132, 0.5)"}, listening: {DEFAULT: "#36A2EB", transparent: "rgba(54, 162, 235, 0.5)"}, writing: {DEFAULT: "#FFCE56", transparent: "rgba(255, 206, 86, 0.5)"}, speaking: {DEFAULT: "#4bc0c0", transparent: "rgba(75, 192, 192, 0.5)"}, }, }, }, }, plugins: [require("daisyui")], };