- Add package.json, tailwind.config.js and css/source.css with @tailwind directives - Generate css/styles.css (24 KB) via Tailwind CLI v3.4 - Remove cdn.tailwindcss.com and inline tailwind.config from all HTML pages - Add preload of css/styles.css - Add cross-language hreflang alternates in HTML and sitemap.xml
33 lines
703 B
JavaScript
33 lines
703 B
JavaScript
/** @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: [],
|
|
}; |