-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.34 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
animation: {
'infinite-scroll': 'infinite-scroll 25s linear infinite',
},
keyframes: {
'infinite-scroll': {
from: { transform: 'translateX(0)' },
to: { transform: 'translateX(-100%)' },
}
},
fontFamily: {
roboto: ["Roboto Serif", "serif"],
poppins: ["Poppins", "sans-serif"],
inter: ["Inter", "sans-serif"],
},
colors: {
'register-rgba': 'rgba(241, 154, 62, 1)',
'input-rgba': 'rgba(220, 226, 222, 0.99)',
'section-rgba': 'rgba(23, 75, 58, 1)',
'box-rgba': 'rgba(41, 45, 42, 1)',
'footeritem': 'rgba(255, 255, 255, 0.78)',
'loginitem': 'rgba(0, 0, 0, 0.71)',
'loginfieldbg': 'rgba(73, 159, 104, 0.17)',
'forgotpass': 'rgba(35, 120, 199, 1)',
},
},
},
plugins: [
function({ addUtilities }) {
addUtilities({
'.scrollbar-hide': {
/* For Chrome, Edge, and Safari */
'-webkit-overflow-scrolling': 'touch',
'scrollbar-width': 'none', /* Firefox */
'&::-webkit-scrollbar': {
display: 'none', /* Chrome, Safari */
},
},
});
},
],
};