forked from Njong392/Abbreve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
45 lines (45 loc) · 1.03 KB
/
tailwind.config.cjs
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 = {
darkMode: "class",
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
colors: {
'deeppurple': '#A143F4',
'purple':'#C890F9',
'dark': '#0F172A',
'gray': '#7C88A2',
'ash' : '#F8FBFE'
},
fontFamily: {
'poppins': ['Poppins', 'sans-serif'],
},
animation: {
breeze: 'breeze 8s alternate-reverse infinite',
spinner: 'spinner 2s linear infinite',
},
screens: {
sm: '320px',
md: '640px',
xmd: '840px',
lg: '1024px',
xl: '1280px',
_2k: '2000px',
},
extend: {
keyframes: {
breeze: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(2%)' },
},
spinner: {
'0%': { transform: 'translate3d(-50%, -50%, 0) rotate(0deg)' },
'100%': { transform: 'translate3d(-50%, -50%, 0) rotate(360deg)' },
},
}
},
},
plugins: [],
}