-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (45 loc) · 1.15 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
screens: {
xs: "320px",
sm: "375px",
sml: "500px",
md: "667px",
mdl: "768px",
lg: "960px",
lgl: "1024px",
xl: "1280px",
},
fontFamily: {
bodyfont: ["Poppins", "sans-serif"],
titleFont: ["Montserrat", "sans-serif"],
},
colors: {
bodyColor: "#191919",
textColor: "rgba(255, 255, 255, 0.85)",
designColor: "#edff20",
titleRoundBg:
"linear-gradient(135deg,rgba(120,204,109,.15) 0%,rgba(120,204,109,1%) 100%)",
},
animation: {
"spin-slow": "spin 15s linear infinite",
"reverse-spin": "reverse-spin 15s linear infinite",
},
keyframes: {
"reverse-spin": {
from: {
transform: "rotate(360deg)",
},
},
},
boxShadow: {
greenShadow: "0px 0px 188px -14px rgba(237,255,32,1)",
testShwdow: "11px 0px 13px -15px rgba(0,0,0,1)",
},
},
},
plugins: [require("tailwind-scrollbar")],
};