/** @type {import('tailwindcss').Config} */ export default { content: ["./src/**/*.html", "./index.html", "./src/**/*.{js,ts,jsx,tsx}"], theme: { colors: { black: "rgb(var(--black) / )", red: "rgb(var(--red) / )", green: "rgb(var(--green) / )", yellow: "rgb(var(--yellow) / )", blue: "rgb(var(--blue) / )", magenta: "rgb(var(--magenta) / )", cyan: "rgb(var(--cyan) / )", white: "rgb(var(--white) / )", brightblack: "rgb(var(--brightblack) / )", brightred: "rgb(var(--brightred) / )", brightgreen: "rgb(var(--brightgreen) / )", brightyellow: "rgb(var(--brightyellow) / )", brightblue: "rgb(var(--brightblue) / )", brightmagenta: "rgb(var(--brightmagenta) / )", brightcyan: "rgb(var(--brightcyan) / )", brightwhite: "rgb(var(--brightwhite) / )", background: "rgb(var(--background) / )", selection_foreground: "rgb(var(--selection_foreground) / )", cursor: "rgb(var(--cursor) / )", foreground: "rgb(var(--foreground) / )", selection_background: "rgb(var(--selection_background) / )", } }, extend: {}, safelist: [{ pattern: /(bg|text|border)-(transparent|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|color10|color11|color12|color13|color14|color15|background|selection_background|cursor|foreground|selection_background)/, }], };