optimized content loading with smaller css

This commit is contained in:
2026-02-18 21:47:14 +01:00
parent eab650b610
commit d8d054c9a8
23 changed files with 1107 additions and 239 deletions

20
tailwind.config.js Normal file
View File

@@ -0,0 +1,20 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/web/templates/**/*.html"],
theme: {
extend: {
colors: {
'brand': {
'bg': '#3d4848',
'bg-light': '#4a5858',
'bg-dark': '#2d3838',
'highlight': '#ffc700',
'highlight-dark': '#e6b300',
},
'linkedin': '#0A66C2',
}
},
},
plugins: [],
}