mirror of
https://github.com/mikkelsvartveit/astro-personal-website.git
synced 2025-12-22 19:22:37 +00:00
Update Tailwind config
This commit is contained in:
parent
dcccb29b7a
commit
59a09ef61a
1 changed files with 5 additions and 4 deletions
|
|
@ -1,12 +1,13 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
const defaultTheme = require("tailwindcss/defaultTheme");
|
||||
|
||||
export default {
|
||||
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
||||
theme: {
|
||||
fontFamily: {
|
||||
sans: "'Nunito', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'",
|
||||
serif:
|
||||
"'Source Serif Pro', ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif",
|
||||
mono: "Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace",
|
||||
sans: ["'Nunito'", ...defaultTheme.fontFamily.sans],
|
||||
serif: ["'Source Serif Pro'", ...defaultTheme.fontFamily.serif],
|
||||
mono: [...defaultTheme.fontFamily.mono],
|
||||
},
|
||||
extend: {},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue