aboutsummaryrefslogtreecommitdiff
path: root/cmd/_old/tourian/tailwind.config.js
blob: 724e1371da64840e048a601430f447a98df3e1d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./tmpl/*.html",
    "./tmpl/**/*.html",
    "./static/**/*.html",
    "./**/*.templ",
    "./*.templ",
  ],
  theme: {
    extend: {
      fontFamily: {
        sans: ["Inter", "sans-serif"],
        mono: ["Iosevka Curly Iaso", "monospace"],
        serif: ["Podkova", "serif"],
      },
    },
  },
  plugins: [require("@tailwindcss/typography")],
};