+
+ {
- try {
- // Example: Fetch an SVG image and parse it
- // The SVG should have a transparent background and black fill color for the best effect
-
- const response = await fetch('/path/to/your/logo.svg');
- const blob = await response.blob();
- const file = new File([blob], 'logo.svg', { type: blob.type });
- const { imageData: processedImageData } = await parseImage(file);
- imageData.value = processedImageData;
- } catch (err) {
- console.error('Error loading image:', err);
- }
- });
-`,
- utility
+ light-color="#ffffff"
+ dark-color="#000000"
+ tint-color="#27FF64"
+ />
+
+`
});
diff --git a/src/content/Animations/MetallicPaint/MetallicPaint.vue b/src/content/Animations/MetallicPaint/MetallicPaint.vue
index 32e85ee..b24f322 100644
--- a/src/content/Animations/MetallicPaint/MetallicPaint.vue
+++ b/src/content/Animations/MetallicPaint/MetallicPaint.vue
@@ -1,394 +1,566 @@
-