-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
49 lines (49 loc) · 1.61 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
46
47
48
49
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
montserrat: ["Montserrat", 'sans-serif'],
h1: ["Krona One", 'sans-serif'],
averia: ["Averia Serif Libre", 'cursive']
},
animation: {
blob: "blob 4s infinite",
redBlob: "redBlob 4s infinite",
},
keyframes: {
blob: {
"0%": {
transform: "translate(0px, 0px) scale(1)",
},
"33%": {
transform: "translate(30px, -50px) scale(1.2)",
},
"66%": {
transform: "translate(-20px, 20px) scale(0.9)",
},
"100%": {
transform: "translate(0px, 0px) scale(1.0)",
},
},
redBlob: {
"0%": {
transform: "translate(0px, 0px) scale(1)",
},
"33%": {
transform: "translate(0px, 50px) scale(1.2)",
},
"66%": {
transform: "translate(0px, 90px) scale(0.9)",
},
"100%": {
transform: "translate(0px, 0px) scale(1.0)",
},
},
},
},
},
plugins: [],
}