Added file structure for sections about | hero | header | projects, picked the fonts and colors

This commit is contained in:
AdamBtech
2025-05-20 10:44:59 +02:00
parent 28089215f2
commit 4517ca0201
19 changed files with 141 additions and 13 deletions

23
tailwind.config.js Normal file
View File

@@ -0,0 +1,23 @@
// tailwind.config.js
module.exports = {
theme: {
extend: {
fontFamily: {
terminal: ["JetBrains Mono", "monospace"],
"terminal-retro": ["VT323", "monospace"],
"terminal-nier": ["Major Mono Display", "monospace"],
},
colors: {
nier: {
dark: "#2a2a2a",
darker: "#1f1f1f",
light: "#e9dcc9",
accent: "#c8b086",
highlight: "#d9cdb9",
subtle: "#3a3a3a",
red: "#9e3f3f",
},
},
},
},
};