-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
54 lines (54 loc) · 1.26 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
screens: {
'2xl': {
min: '1440px',
},
mlg: {
min: '1280px',
},
xmed: {
min: '1000px',
},
small: { min: '0px', max: '639px' },
},
},
colors: {
'pure-black': '#000',
blue: '#1DA1F2',
'blue-light': '#e0eaf3',
black: '#000',
white: '#FFFFFF',
'dark-gray': '#657786',
'light-gray': '#AAB8C2',
'x-light-gray': '#E1E8ED',
'xx-light-gray': '#F5F8FA',
'border-gray': '#2f3336',
'light-thin': '#71767b',
warning: '#F4212E',
'hover-layout': '#e7e9ea1a',
'light-hover-layout': '#62686a1a',
},
fontFamily: {
sans: ['roboto', 'Helvetica', 'Arial'],
},
},
plugins: [
function ({ addUtilities }) {
const newUtilities = {
'.no-scrollbar::-webkit-scrollbar': {
display: 'none',
},
'.no-scrollbar': {
'-ms-overflow-style': 'none',
'scrollbar-width': 'none',
},
};
addUtilities(newUtilities);
},
require('tailwind-scrollbar')({ nocompatible: true }),
],
};