-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
105 lines (103 loc) · 2.58 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
const { green } = require('@mui/material/colors');
const plugin = require("tailwindcss/plugin");
module.exports = {
content: ['./src/**/*.{ts,tsx}', './index.html'],
darkMode: 'class',
theme: {
extend: {
screens: {
sm: '375px',
md: { max: '820px' },
lg: '976px',
xl: '1440px',
md_: '820px',
sm_: { max: '360px' },
'md-sm': { max: '1024px' },
'semi-sm': '120px',
'semi-md': '721px',
'semi-md-col': { max: '721px' },
},
colors: {
primary: '#1F2A37',
secondary: '#D8DCE3',
'light-bg': '#F9F9FB',
'light-text': '#111827',
'header-text': '#173B3F',
'dark-text-fill': '#F3F4F6',
'dark-bg': '#1F2A37',
'dark-frame-bg': '#262E3D',
'dark-tertiary': '#374151',
'divider-bg': '#E5E7EB',
'dark-45': '#00000073',
'border-dark': '#5f5b5b80',
},
colors: {
primary: '#173B3F',
secondary: '#F9F9FB',
tertiary: '#F3F4F6',
green: '#56C870',
'light-bg': '#F9F9FB',
'light-text': '#111827',
'header-text': '#173B3F',
'dark-text-fill': '#F3F4F6',
'dark-bg': '#1F2A37',
'dark-frame-bg': '#262E3D',
'dark-tertiary': '#374151',
'divider-bg': '#E5E7EB',
'dark-45': '#00000073',
'border-dark': '#5f5b5b80',
md: '768px',
lg: '976px',
xl: '1440px',
cgray: '#ABB8C3',
'light-gray': '#F9F9FB',
cg: '#6B7280',
ltb: '#F3F4F6',
'button-color': '#173B3F',
'bulk-email': '#DDE0E3',
'black-text': '#1F2A37',
'row-gray': '#F9FAFB',
bdr: '#E5E7EB',
dots: '#6B7280',
white: '#FFFFFF',
black: '#000000',
},
fontSize: {
fb: '14px',
},
borderRadius: {
'bt-rd': '8px',
},
padding: {
'5px': '5.5px',
'4px': '4.5px',
},
margin: {
'5px': '5.5px',
},
zIndex: {
60: '60',
100: '100',
},
},
variants: {
backgroundColor: ['active'],
textColor: ['active'],
},
plugins: [
require('flowbite/plugin'),
plugin(({ addUtilities }) => {
addUtilities({
/* Chrome, Safari, and Opera */
".scrollbar-hidden::-webkit-scrollbar": {
display: "none",
},
".scrollbar-hidden": {
"scrollbar-width": "none", /* Firefox */
"-ms-overflow-style": "none", /* IE and Edge */
},
});
}),
],
},
};