-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
48 lines (46 loc) · 1.23 KB
/
tailwind.config.ts
File metadata and controls
48 lines (46 loc) · 1.23 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
gambarino: ['var(--font-gambarino)'],
},
fontSize: {
'heading-2xl': [
'var(--heading-2xl-size)',
{ lineHeight: 'var(--heading-2xl-height)' },
],
'heading-xl': [
'var(--heading-xl-size)',
{ lineHeight: 'var(--heading-xl-height)' },
],
'heading-lg': [
'var(--heading-lg-size)',
{ lineHeight: 'var(--heading-lg-height)' },
],
'heading-md': [
'var(--heading-md-size)',
{ lineHeight: 'var(--heading-md-height)' },
],
'heading-sm': [
'var(--heading-sm-size)',
{ lineHeight: 'var(--heading-sm-height)' },
],
},
colors: {
background: 'var(--background)',
foreground: 'var(--foreground)',
red700: 'var(--red700)',
neutral100: 'var(--neutral100)',
neutral500: 'var(--neutral500)',
neutral600: 'var(--neutral600)',
pampas: 'var(--pampas)',
},
},
},
};
export default config;