starbase-81/tailwind.config.js

22 lines
514 B
JavaScript
Raw Normal View History

2023-04-19 21:40:25 +00:00
/** @type {import('tailwindcss').Config} */
export default {
2023-04-19 22:00:42 +00:00
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
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",
2023-04-20 01:10:21 +00:00
],
2023-04-19 22:00:42 +00:00
theme: {
extend: {
colors: {
bg: "#f8fafc",
border: "#336699",
},
2023-04-19 22:00:42 +00:00
},
},
plugins: [],
};