-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.ts
106 lines (104 loc) · 2.88 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import { type Config } from 'tailwindcss';
const tailwindConfig: Config = {
content: ['./src/**/*.{html,scss,ts}'],
theme: {
extend: {
screens: {
mob: { min: '1px', max: '700px' },
tab: { min: '700px', max: '1279px' },
desk: { min: '1279px' },
},
fontFamily: {
sans: ['Varela', 'system-ui', 'sans-serif'],
},
colors: {
dark: {
DEFAULT: '#191919',
},
yellow: {
DEFAULT: '#FFD64D',
},
green: {
DEFAULT: '#1AB77E',
},
orange: {
DEFAULT: '#FF710A',
},
'full-white': '#FFFFFF',
white: {
DEFAULT: '#F8F8F8',
},
},
spacing: {
'5px': '5px',
'15px': '15px',
'30px': '30px',
'35px': '35px',
'50px': '50px',
},
fontSize: {
title: [
'10px',
{
lineHeight: '14px',
fontWeight: '400',
},
],
'span-12': [
'12px',
{
lineHeight: '21px',
fontWeight: '400',
},
],
span: [
'14px',
{
lineHeight: '21px',
fontWeight: '400',
},
],
'span-16': [
'16px',
{
lineHeight: '21px',
fontWeight: '500',
},
],
'span-18': [
'18px',
{
lineHeight: '22px',
fontWeight: '500',
},
],
h3: [
'25px',
{
lineHeight: '27px',
fontWeight: '500',
},
],
h5: [
'16px',
{
lineHeight: '24px',
fontWeight: '400',
},
],
},
borderRadius: {
'4px': '4px',
'5px': '5px',
'10px': '10px',
'15px': '15px',
'25px': '25px',
},
borderWidth: {
'2px': '2px',
},
},
},
plugins: [],
};
export default tailwindConfig;