starbase-81/tailwind.config.js

19 lines
455 B
JavaScript
Raw Normal View History

2023-04-19 21:40:25 +00:00
/** @type {import('tailwindcss').Config} */
export default {
2023-12-18 21:09:47 +00:00
content: ["./public/index.html"],
2023-04-20 01:10:21 +00:00
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",
2023-04-20 01:10:21 +00:00
],
2023-04-19 22:00:42 +00:00
theme: {
extend: {},
2023-04-19 22:00:42 +00:00
},
plugins: [],
};