-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.2 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}'
],
theme: {
fontFamily: {
cinzel: ['var(--font-cinzel)'],
raleway: ['var(--font-raleway)']
},
colors: {
arrow: '#A4B7EF',
bg: {
primary: '#E5E5E5',
secondary: '#ECF2FF'
},
border: '#1A355F',
gradient: {
bg: {
top: '#f7faff',
bottom: '#e6ebfe'
},
header: {
top: '#2A3665',
middle: '#2A2D65',
bottom: '#303D74'
}
},
primary: '#0A1A2E',
white: '#FFFFFF',
black: '#000000',
transparent: 'transparent'
},
extend: {
spacing: {
15: '3.75rem',
18: '4.5rem',
26: '6.5rem',
30: '7.5rem',
34: '8.5rem',
38: '9.5rem',
97.5: '24.375rem'
},
fontSize: {
'2.5xl': '1.75rem',
'4.5xl': '2.5rem',
'6.5xl': '4rem'
},
opacity: {
2: '0.02',
3: '0.03'
},
screens: {
'0.5xl': '1152px'
}
}
}
};