-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
96 lines (95 loc) · 2.72 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens:{
"md":"620px",
"sc0":"750px",
"sc1":"990px",
"sc4":"1300px",
"sc2":"1440px",
"sc3":"2560px"
},
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
fontFamily:{
heading:['Nunito Sans'],
body:['DM Sans'],
plusJakarta: ['"Plus Jakarta Sans"', 'sans-serif'],
},
keyframes:{
move:{
'100%':{transform:'translateX(100%)'}
},
float:{
'0%':{transform:'translateY(-20px)'},
'50%':{transform:'translateY(20px)'},
'100%':{transform:'translateY(-20px)'}
},
'infinite-scroll': {
// from: { transform: 'translateX(0)' },
// to: { transform: 'translateX(100%)' }
'0%,100%':{transform:'translateX(0%)'},
'50%':{transform:'translateX(100%)'},
},
'infinite-scroll-reverse': {
from: { transform: 'translateX(0)' },
to: { transform: 'translateX(-100%)' }
}
,
typing: {
"0%": {
width: "0%",
visibility: "hidden"
},
"50%":{
width:"50%",
visibility:"visible"
},
"100%": {
width: "100%",
visibility:"visible"
}
},
blink: {
"50%": {
borderColor: "transparent"
},
"100%": {
borderColor: "white"
}
},
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" },
},
},
animation:{
'infinite-scroll': 'infinite-scroll 15s linear infinite',
'infinite-scroll-reverse': 'infinite-scroll-reverse 15s linear infinite',
move: 'move 1s ease-in-out ',
float : 'float 5s infinite ease-in-out',
typing: "typing 2s steps(20) infinite alternate, blink .7s infinite",
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
}
},
},
plugins: [
require('tailwind-scrollbar'),
require('tailwind-scrollbar-hide')
],
darkMode:'class'
};