-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
54 lines (54 loc) · 1.78 KB
/
Copy pathtailwind.config.js
File metadata and controls
54 lines (54 loc) · 1.78 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
gridTemplateColumns: {
"auto-fill-100": "repeat(auto-fill, minmax(min(100%, 100px), 1fr))",
"auto-fit-100": "repeat(auto-fit, minmax(min(100%, 100px), 1fr))",
"auto-fill-260": "repeat(auto-fill, minmax(min(100%, 260px), 1fr))",
"auto-fit-260": "repeat(auto-fit, minmax(min(100%, 260px), 1fr))"
},
animation: {
cursor: 'cursor .6s linear infinite alternate',
type: 'type 1.8s ease-out .8s 1 normal both',
'type-reverse': 'type 1.8s ease-out 0s infinite alternate-reverse both',
'infinite-scroll': 'infinite-scroll 30s linear infinite',
glow: 'glow-animation 10s ease infinite'
},
keyframes: {
'infinite-scroll': {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(-100%)' },
},
'glow-animation': {
'0%': {
'background-position': '0% 0%'
},
'25%': {
'background-position': '50% 5%'
},
'50%': {
'background-position': '100% 5%'
},
'75%': {
'background-position': '50% 5%'
},
'100%': {
'background-position': '0% 0%'
}
}
},
fontFamily: {
raleway: ["Raleway Variable", "sans-serif"],
inter: ["Inter Variable", "sans-serif"],
},
backgroundColor: {
dark: 'radial-gradient(circle at to right, rgba(166, 42, 4, 0.175), #1e2737, #1d2432)',
light: 'radial-gradient(259.53deg at 50% 0%, #32a7ea3e, #fff, #ffffff)'
}
},
},
darkMode: 'class',
plugins: [],
};