-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.cjs
97 lines (97 loc) · 2.15 KB
/
tailwind.config.cjs
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
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['proxima_nova', 'sans-serif'],
},
fontSize: {
'd-title-1': [
'2.25rem', // 36px
{
letterSpacing: '0',
lineHeight: '2.25rem', // 36px
},
],
'm-title-1': [
'1.5rem', // 24px
{
letterSpacing: '0',
lineHeight: '1.5rem', // 24px
},
],
'd-title-2': [
'1.25rem', // 20px
{
letterSpacing: '0',
lineHeight: '1.25rem', // 20px
},
],
'm-title-3': [
'1rem', // 16px
{
letterSpacing: '0',
lineHeight: '1rem', // 16px
},
],
'd-headline-semibold': [
'0.875rem', // 14px
{
letterSpacing: '0',
lineHeight: '0.875rem', // 14px
},
],
'd-text-primary': [
'1rem', // 16px
{
letterSpacing: '0',
lineHeight: '1.625rem', // 26px
},
],
'd-text-secondary': [
'0.875rem', // 14px
{
letterSpacing: '0',
lineHeight: '0.875rem', // 14px
},
],
},
colors: {
black: '#2E3048',
blue: {
100: '#4479FE',
10: '#F7F9FD',
20: '#EEF2F7',
},
green: '#34C759',
'hover-blue-2': '#E9EFF7',
'hover-blue': '#366AE0',
orange: '#FF9500',
red: '#ED5564',
white: {
100: '#FFFFFF',
30: 'rgba(255, 255, 255, 0.5)',
},
yellow: '#FFD103',
grey: {
100: '#404258',
20: '#E0E6EB',
50: '#ADB0B8',
70: '#8693B6',
},
},
gradientColorStops: {
'blue-start': '#4479FE',
'blue-end': '#4498F9',
},
spacing: {
15: '3.75rem', // 60px
7.5: '1.875rem', // 30px
},
dropShadow: {
normal: '0px 2px 10px rgba(223, 228, 234, 0.5)',
},
},
},
plugins: [],
};