+
+
-
+
SVG to PNG converter
diff --git a/tailwind.config.ts b/tailwind.config.ts
index 021c393..e29ad1b 100644
--- a/tailwind.config.ts
+++ b/tailwind.config.ts
@@ -8,6 +8,36 @@ const config: Config = {
],
theme: {
extend: {
+ animation: {
+ shift: "shift 4s ease-in-out infinite",
+ scalePulse: "scalePulse 10s ease-in-out infinite",
+ },
+ keyframes: {
+ scalePulse: {
+ "0%": {
+ transform: "scale(1)",
+ },
+ "50%": {
+ transform: "scale(1.3)",
+ },
+ "100%": {
+ transform: "scale(1)",
+ },
+ },
+ shift: {
+ "0%": {
+ transform: "rotate(0deg)",
+ borderRadius: "0%",
+ },
+ "50%": {
+ borderRadius: "50%",
+ },
+ "100%": {
+ transform: "rotate(360deg)",
+ borderRadius: "0%",
+ },
+ },
+ },
colors: {
background: "var(--background)",
foreground: "var(--foreground)",