From 7c54716965b5da07520247ef3cc5658156bb7222 Mon Sep 17 00:00:00 2001 From: David Haz Date: Mon, 1 Sep 2025 09:55:18 +0300 Subject: [PATCH] fix: update particle background color to #A7EF9E --- src/components/landing/FeatureCards/FeatureCards.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/landing/FeatureCards/FeatureCards.vue b/src/components/landing/FeatureCards/FeatureCards.vue index 3c07547..48091fc 100644 --- a/src/components/landing/FeatureCards/FeatureCards.vue +++ b/src/components/landing/FeatureCards/FeatureCards.vue @@ -81,7 +81,7 @@ const ParticleCard = defineComponent({ el.className = 'particle'; el.style.cssText = ` position:absolute;width:4px;height:4px;border-radius:50%; - background:rgba(132,0,255,1);box-shadow:0 0 6px rgba(132,0,255,.6); + background:#A7EF9E;box-shadow:0 0 6px rgba(132,0,255,.6); pointer-events:none;z-index:100;left:${x}px;top:${y}px; `; return el;