24 lines
657 B
JavaScript
24 lines
657 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{html,tsx,ts,js,jsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
mti: {
|
|
orange: "#FF6000",
|
|
green: "#51C21A",
|
|
blue: "#007FF8",
|
|
gray: {light: "#F9F9F9", dark: "#E0E0E0"},
|
|
},
|
|
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")],
|
|
};
|