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