From 0e49709fe313c9bd85c4c49052e25a7185a01742 Mon Sep 17 00:00:00 2001 From: David Haz Date: Sat, 19 Jul 2025 19:56:20 +0300 Subject: [PATCH] Update StarBorderDemo color options to use lightgreen --- src/demo/Animations/StarBorderDemo.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/demo/Animations/StarBorderDemo.vue b/src/demo/Animations/StarBorderDemo.vue index 9466613..bd7d62d 100644 --- a/src/demo/Animations/StarBorderDemo.vue +++ b/src/demo/Animations/StarBorderDemo.vue @@ -39,10 +39,10 @@ import { starBorder } from '@/constants/code/Animations/starBorderCode'; const thickness = ref(3); const speed = ref(6); const speedProp = ref('6s'); -const color = ref('magenta'); +const color = ref('lightgreen'); const colorOptions = [ { label: 'Magenta', value: 'magenta' }, - { label: 'Cyan', value: 'cyan' }, + { label: 'Green', value: 'lightgreen' }, { label: 'white', value: 'white' } ];