/** @type {import('tailwindcss').Config} */ module.exports = { darkMode: "class", content: [ "./index.html", "./index-ca.html", "./index-en.html", "./huella.html", "./privacidad.html", "./privacidad-ca.html", "./privacidad-en.html", ], theme: { extend: { colors: { primary: "#8c2bee", "background-light": "#f7f6f8", "background-dark": "#191022", }, fontFamily: { display: ["Space Grotesk", "sans-serif"], serif: ["Instrument Serif", "serif"], }, borderRadius: { DEFAULT: "0.5rem", lg: "1rem", xl: "1.5rem", full: "9999px", }, }, }, plugins: [], };