mirror of
https://github.com/adam-benyekkou/my_portfolio.git
synced 2026-01-15 20:20:09 +00:00
24 lines
525 B
JavaScript
24 lines
525 B
JavaScript
// 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",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|