-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
36 lines (34 loc) · 913 Bytes
/
tailwind.config.mjs
File metadata and controls
36 lines (34 loc) · 913 Bytes
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
"main-bg-color": "#1C1C1C"
},
fontFamily: {
sans: ["Nunito Variable", ...defaultTheme.fontFamily.sans],
},
keyframes: {
animatedgradient: {
"0%": { backgroundPosition: "0% 50%" },
"50%": { backgroundPosition: "100% 50%" },
"100%": { backgroundPosition: "0% 50%" },
},
fadeIn: {
"0%": { opacity: "0"},
"100%": { opacity: "100%"}
}
},
backgroundSize: {
"300%": "300%",
},
animation: {
gradient: "animatedgradient 6s ease infinite alternate",
fadeIn: "fadeIn 0.5s ease-in"
},
},
},
plugins: [],
};