this repo has no description
1/** @type {import('tailwindcss').Config} */
2module.exports = {
3 content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
4 theme: {
5 extend: {
6 animation: {
7 fadeInDown: "fadeInDown 2s forwards",
8 fadeIn: "fadeIn 2s forwards",
9 },
10
11 keyframes: {
12 fadeInDown: {
13 from: {
14 opacity: 0,
15 transform: "translateY(-50%)",
16 },
17 to: {
18 opacity: 1,
19 transform: "translateY(0)",
20 },
21 },
22 fadeIn: {
23 from: {
24 opacity: 0,
25 },
26 to: {
27 opacity: 1,
28 },
29 },
30 },
31 },
32 },
33 plugins: [
34 require("@tailwindcss/typography"),
35 require("tailwind-animation-delay"),
36 ],
37};