mirror of
https://github.com/SoPat712/my-portfolio.git
synced 2025-08-21 10:18:45 -04:00
14 lines
381 B
JavaScript
14 lines
381 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{html,js,svelte,ts}"], // ✅ Good glob
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['"JetBrains Mono"', "ui-monospace", "monospace"], // ✅ JetBrains Mono, clean terminal look
|
|
},
|
|
},
|
|
},
|
|
darkMode: "class", // ✅ Great for manual dark mode toggling
|
|
plugins: [],
|
|
};
|