-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.js
55 lines (55 loc) · 1.5 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx}"],
mode: "jit",
theme: {
extend: {
fontFamily:{
'Andan':['Caveat'],
},
colors: {
primary: "#050816",
secondary: "#aaa6c3",
tertiary: "#242625",
"black-100": "#100d25",
"black-200": "#090325",
"white-100": "#f3f3f3",
},
boxShadow: {
card: "0px 35px 120px -15px #211e35",
},
screens: {
xs: "450px",
},
backgroundImage: {
"hero-pattern": "url('/src/assets/herob.png')",
circularLight:'repeating-radial-gradient(rgba(255,255,255,0.5) 2px,#000 8px,#000 110px);',
circularLightLg:'repeating-radial-gradient(rgba(255,255,255,0.5) 2px,#000 8px,#000 80px);',
circularLightMd:'repeating-radial-gradient(rgba(255,255,255,0.5) 2px,#000 8px,#000 60px);',
circularLightSm:'repeating-radial-gradient(rgba(255,255,255,0.5) 2px,#000 8px,#000 45px);',
},
animation:{
blob:"blob 9s infinite",
},
keyframes:{
blob:{
"0%":{
transform:"translate(0px,0px) scale(1)",
},
"33%":{
transform:"translate(10px,-10px) scale(1.1)",
},
"66%":{
transform:"translate(-10px,20px) scale(0.9)",
},
"100%":{
transform:"translate(0px,0px) scale(1)"
},
}
},
},
},
plugins: [
require('tailwind-scrollbar-hide')
],
};