-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
48 lines (48 loc) · 1.27 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
/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
preflight: false,
container: false,
},
darkMode: ["class", '[data-theme="dark"]'],
content: ["./src/**/*.{jsx,tsx,html}"],
theme: {
extend: {
fontFamily: {
'menseal': ["'Menseal'", 'sans-serif'], // Adding 'Menseal' font family
'sora': ["'Sora'", 'sans-serif']
},
boxShadow: {
'primary-purple': '0px 0px 16px 0px #7857FF99',
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-100%)' },
},
},
animation: {
marquee: 'marquee 10s linear infinite',
},
borderRadius: {
sm: "4px",
},
screens: {
sm: "410px",
mid: "450px",
md: "768px",
lg: "997px",
},
backgroundImage: {
'custom-gradient': 'linear-gradient(-45deg, rgba(120,87,255,1) 0%, rgba(87,46,255,1) 36%, rgba(80,36,255,1) 72%, rgba(120,87,255,1) 100%);',
},
colors: {
'footer-bg': 'var(--footer-bg)',
'primary-dark': 'var(--primary-dark)',
'secondary-dark': 'var(--secondary-dark)',
'primary-brand': 'var(--primary-brand)',
},
},
},
plugins: [],
};