blob: b884eef873e0206ad0e4b992f1adebd982594db0 [file]
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
dwdarkblue: "rgb(43,49,82)",
dwred: "rgb(234,85,86)",
dwlightblue: "rgb(66,157,188)",
dwwhite: "white",
dwblack: "black",
},},
},
// Only use this for debugging!
plugins: [
require("tailwindcss-question-mark"),
],
};