-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
111 lines (110 loc) · 2.3 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
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
107
108
109
110
111
const plugin = require('tailwindcss/plugin');
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}', './src/**/*.module.scss', './public/index.html'],
theme: {
extend: {
colors: {
primary: '#2D2D2D',
primeBlack: 'rgba(45, 45, 45, 0.03)',
primeBlack20: 'rgba(45, 45, 45, 0.2)',
primeBlack50: 'rgba(45, 45, 45, 0.5)',
primeBlack80: 'rgba(45, 45, 45, 0.8)',
grey: {
100: '#F8F8F8',
300: '#D5D5D5',
500: '#959595',
700: '#575757',
900: '#2D2D2D'
},
primePurple: {
100: '#F1EFFE',
300: '#B3A6FE',
900: '#414082'
}
}
},
backgroundColor: {
primary: '#F6F8FA',
secondary: '#FFFFFF',
prime: '#2D2D2D',
primeBlack: 'rgba(45, 45, 45, 0.03)',
primeBlack50: 'rgba(45, 45, 45, 0.5)',
primeBlack20: 'rgba(45, 45, 45, 0.2)',
primeBlack80: 'rgba(45, 45, 45, 0.8)',
input: '#F8F8F8',
transparent: 'transparent',
grey: {
100: '#F8F8F8',
300: '#D5D5D5',
500: '#959595',
700: '#575757',
900: '#2D2D2D'
},
primePurple: {
100: '#F1EFFE',
300: '#B3A6FE',
900: '#414082'
}
},
boxShadow: {
sm: '4px 4px 0px #2D2D2D',
md: '0px 4px 8px rgba(0, 0, 0, 0.25)',
figma: '8px 8px 0px #2D2D2D'
},
borderRadius: {
md: '5px',
lg: '8px',
xl: '10px',
xxl: '20px',
full: '9999px'
},
fontFamily: {
Urbanist: 'Urbanist, sans-serif'
},
fontSize: {
sm: [
'13px',
{
lineHeight: '16px'
}
],
base: [
'16px',
{
lineHeight: '19px'
}
],
lg: [
'18px',
{
lineHeight: '22px'
}
],
xl: [
'20px',
{
lineHeight: '24px'
}
],
'2xl': [
'24px',
{
lineHeight: '29px'
}
]
}
},
plugins: [
plugin(function ({ addUtilities }) {
addUtilities({
'.no-scrollbar::-webkit-scrollbar': {
display: 'none'
},
'.no-scrollbar': {
'-ms-overflow-style': 'none',
'scrollbar-width': 'none'
}
});
})
]
};