aboutsummaryrefslogtreecommitdiffstats
path: root/tailwind.config.js
blob: f5a256ca28723b8e46954874ec7dc822851e5476 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/** @type {import('npm:tailwindcss').Config} */
export default {
  content: ['./src/**/*.{html,js,svelte,ts}'],
  theme: {
    extend: {
      fontFamily: {
        bios: ['Ac437 IBM EGA 8x14', 'Hack', 'monospace'].map((v) =>
          JSON.stringify(v)
        ),
        // TODO: Find more accurate grub2 default font!
        grub: [
          'Px437 DOS/V re. JPN12',
          'Ac437 IBM EGA 8x14',
          'Hack',
          'monospace',
        ].map((v) => JSON.stringify(v)),
        mono: ['PxPlus IBM EGA 8x14', 'Hack', 'monospace'].map((v) =>
          JSON.stringify(v)
        ),
      },
    },
  },
  plugins: [],
};