mirror of
https://github.com/Theodor-Springmann-Stiftung/webseite.git
synced 2025-10-28 08:45:33 +00:00
15 lines
382 B
JavaScript
15 lines
382 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{html,js,svelte,ts,tmpl,liquid}", "./index.html"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
script: ["Rancho", "ui-serif"],
|
|
sans: ['"Source Sans 3"', '"Merriweather Sans"', "ui-sans-serif"],
|
|
serif: ['"Merriweather"', "ui-serif"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|