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 14:28:48 +02:00

35 lines
704 B
JavaScript

const colors = require("tailwindcss/");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["content/**/*.md", "layouts/**/*.html"],
theme: {
fontFamily: {
main: [
"Spline Sans",
"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"',
],
},
fontWeight: {
bold: 700,
semibold: 500,
},
extend: {
//
},
},
plugins: [],
};