-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
34 lines (32 loc) · 1.26 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
32
33
34
import type { Config } from 'tailwindcss';
import { COLORS } from './share/constants/colors';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components-server/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components-client/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
colors: COLORS,
fontFamily: {
thunder: ['Thunder'],
'thunder-black': ['ThunderBlack'],
'thunder-extra-bold': ['ThunderExtBd'],
// 'thunder-italic': ['ThunderIta'],
// 'thunder-light': ['ThunderLight'],
// 'thunder-light-italic': ['ThunderLightIta'],
// 'thunder-medium': ['ThunderMed'],
// 'thunder-medium-italic': ['ThunderMedIta'],
// 'thunder-semi-bold': ['ThunderSemBd'],
// 'thunder-semi-bold-italic': ['ThunderSemBdIta'],
// 'thunder-thin': ['ThunderThin'],
// 'thunder-thin-italic': ['ThunderThinIta'],
// 'thunder-extra-bold-italic': ['ThunderExtBdIta'],
// 'thunder-extra-light': ['ThunderExtLt'],
// 'thunder-extra-light-italic': ['ThunderExtLtIta'],
},
},
plugins: [],
};
export default config;