perf: remove Google Fonts — system font stack for body and headings; rebuild site.css -48%

This commit is contained in:
Oliver
2026-03-27 18:04:06 -03:00
parent be09564a25
commit 4781e84ebc
3 changed files with 82 additions and 56 deletions
+15 -14
View File
@@ -1,27 +1,28 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html'],
content: ["./index.html"],
theme: {
extend: {
colors: {
'brand-ink': '#201824',
'brand-primary': '#603F57',
'brand-accent': '#F762B4',
'brand-sunrise': '#F8B84A',
'brand-emerald': '#39B982',
'brand-snow': '#F5F2F7',
'brand-smoke': '#E5DCE8'
"brand-ink": "#201824",
"brand-primary": "#603F57",
"brand-accent": "#F762B4",
"brand-sunrise": "#F8B84A",
"brand-emerald": "#39B982",
"brand-snow": "#F5F2F7",
"brand-smoke": "#E5DCE8",
},
fontFamily: {
brand: ['Inter', 'Segoe UI', 'system-ui', 'sans-serif']
brand: ["system-ui", "-apple-system", "Segoe UI", "sans-serif"],
},
boxShadow: {
brand: '0 20px 60px rgba(32, 24, 36, 0.15)'
brand: "0 20px 60px rgba(32, 24, 36, 0.15)",
},
backgroundImage: {
'hero-gradient': 'radial-gradient(circle at top left, rgba(247,98,180,0.35), rgba(32,24,36,0.95))'
}
}
"hero-gradient":
"radial-gradient(circle at top left, rgba(247,98,180,0.35), rgba(32,24,36,0.95))",
},
},
},
plugins: []
plugins: [],
};