module.exports = { content: { relative: true, files: [ "../public/*.html", "../app/views/**/*.html.erb", "../app/components/panda_cms/**/*.html.erb", "../app/components/panda_cms/**/*.rb", "../app/helpers/panda_cms/**/*.rb", "../app/javascript/panda_cms/**/*.js", "../vendor/javascript/**/*.js", ], }, theme: { colors: { transparent: "transparent", current: "currentColor", white: "rgb(var(--color-white) / )", black: "rgb(var(--color-black) / )", light: "rgb(var(--color-light) / )", mid: "rgb(var(--color-mid) / )", dark: "rgb(var(--color-dark) / )", highlight: "rgb(var(--color-highlight) / )", active: "rgb(var(--color-active) / )", warning: "rgb(var(--color-warning) / )", error: "rgb(var(--color-error) / )", }, }, plugins: [ require("@tailwindcss/forms"), require("@tailwindcss/aspect-ratio"), require("@tailwindcss/typography"), require("@tailwindcss/container-queries"), ], };