change font

This commit is contained in:
2024-07-07 18:50:21 +02:00
parent aa95e57a10
commit 28cfcd4b19
7 changed files with 41 additions and 21 deletions

View File

@@ -1,11 +1,12 @@
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
darkMode: ["class"],
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./src/**/*.{ts,tsx}",
],
prefix: "",
theme: {
@@ -17,6 +18,9 @@ module.exports = {
},
},
extend: {
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
},
colors: {
border: "hsl(var(--border))",
input: "hsl(var(--input))",
@@ -74,4 +78,4 @@ module.exports = {
},
},
plugins: [require("tailwindcss-animate")],
}
};