-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.ts
53 lines (52 loc) · 1.81 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
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}',
],
theme: {
extend: {
backgroundImage: {
'multi-gradient': "url('/gradient-bg.png')",
'patterned': "url('/bg-24.png')",
'diamond-gradient': "url('/diamond-gradient.png')",
'conic-gradient': 'bg-[linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(to bottom right, #68B566 0%, rgba(9, 11, 8, 0.80) 29%, rgba(32, 36, 32, 0.80) 50%) bottom right / 50% 50% no-repeat, linear-gradient(to bottom left, #68B566 0%, rgba(9, 11, 8, 0.80) 29%, rgba(32, 36, 32, 0.80) 50%) bottom left / 50% 50% no-repeat, linear-gradient(to top left, #68B566 0%, rgba(9, 11, 8, 0.80) 29%, rgba(32, 36, 32, 0.80) 50%) top left / 50% 50% no-repeat, linear-gradient(to top right, #68B566 0%, rgba(9, 11, 8, 0.80) 29%, rgba(32, 36, 32, 0.80) 50%) top right / 50% 50% no-repeat]'
},
colors: {
'brand-400': '#5CBB55',
'brand-200': '#5EFF81',
'brand-800': '#31832B',
bg: '#050505',
},
fontSize: {
'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