/** @type {import('tailwindcss').Config} */ export default { content: ["./src/**/*.html", "./index.html", "./src/**/*.{js,ts,jsx,tsx}"], safelist: [ { pattern: /hljs+/, }, ], theme: { colors: { color0: "rgb(var(--color0) / )", color1: "rgb(var(--color1) / )", color2: "rgb(var(--color2) / )", color3: "rgb(var(--color3) / )", color4: "rgb(var(--color4) / )", color5: "rgb(var(--color5) / )", color6: "rgb(var(--color6) / )", color7: "rgb(var(--color7) / )", color8: "rgb(var(--color8) / )", color9: "rgb(var(--color9) / )", color10: "rgb(var(--color10) / )", color11: "rgb(var(--color11) / )", color12: "rgb(var(--color12) / )", color13: "rgb(var(--color13) / )", color14: "rgb(var(--color14) / )", color15: "rgb(var(--color15) / )", 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: {}, hljs: { theme: "nord", custom: { general: { comment: "#FEFEFE", }, }, }, }, plugins: [require("tailwind-highlightjs")], 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)/, } };