-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
31 lines (30 loc) · 1.04 KB
/
tailwind.config.ts
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
27
28
29
30
31
import type { Config } from "tailwindcss";
import defaultTheme from 'tailwindcss/defaultTheme';
export default {
content: ["./app/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ['"MS Reference Sans Serif"', ...defaultTheme.fontFamily.sans],
serif: [...defaultTheme.fontFamily.serif],
mono: [...defaultTheme.fontFamily.mono],
'ps-sans-nouveaux': ['"PX Sans Nouveaux"', 'sans-serif'],
'perfect-dos-vga': ['"Perfect DOS VGA 437"', 'sans-serif'],
'perfect-dos-vga-win': ['"Perfect DOS VGA 437 Win"', 'sans-serif'],
'ms-reference': ['"MS Reference Sans Serif"', 'sans-serif'],
'micro': ['"Micro 5"', 'sans-serif'],
},
colors: {
'windows-teal': '#008080',
'windows-gray-primary': '#c3c3c3',
'windows-white': '#fdffff',
'windows-gray-secondary': '#818181',
'windows-blue': '#010081',
},
boxShadow: {
'windows-inset': 'inset 1px 1px 3px #818181',
},
},
},
plugins: [],
} satisfies Config;