-
Notifications
You must be signed in to change notification settings - Fork 45
/
tailwind.config.ts
61 lines (58 loc) · 1.33 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/sections/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
},
colors: {
'brand-400': '#F16822',
'brand-600': '#E03000',
'brand-200': '#FDA733',
'brand-800': '#31832B',
'cream': '#FFF0DB',
'plugin-bg': '#232323',
bg: '#1D1A1A',
},
fontSize: {
'9xl': [
'5rem', {
lineHeight: '5.625rem',
letterSpacing: '-0.07rem'
}
],
'6xl': [
'3.5rem', {
lineHeight: '3.6rem',
letterSpacing: '-0.07rem'
}
],
'3xl': [
'1.85rem', {
lineHeight: '2rem',
letterSpacing: '-0.01rem'
}
],
'2xl': [
'1.5rem', {
lineHeight: '1.7rem',
letterSpacing: '0.01rem',
fontWeight: '300'
}
],
},
fontFamily: {
mono: ['var(--font-mono)'],
sans: ['var(--font-nm)'],
}
},
},
plugins: [],
}
export default config