starbase-81/tailwind.config.js
2023-12-17 22:20:44 -08:00

19 lines
453 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./dist/index.html"],
safelist: [
/* Built from icon.tsx */
{
pattern:
/bg-(black|white|slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-(50|100|200|300|400|500|600|700|800|900|950)/,
},
"bg-transparent",
"bg-black",
"bg-white",
],
theme: {
extend: {},
},
plugins: [],
};