This repository has been archived on 2022-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
public-web/tailwind.config.js
2022-10-21 12:44:56 +02:00

17 lines
295 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["content/**/*.md", "layouts/**/*.html"],
theme: {
fontFamily: {
main: "Spline Sans",
},
fontWeight: {
bold: 700,
semibold: 500,
},
extend: {
//
},
},
plugins: [],
};