sparkle gif ☆ ☆ ☆sugar petals fashion scrapbook☆ ☆ ☆sparkle gif

city chic

June 2, 2025
Cute strawberry-themed picnic outfit

✨/✨/✨/✨/✨/✨/✨/✨/

y2k bby glam

May 20, 2025
Girl in a pink floral dress among flowers

2 glam 2 give a damn

leopard print frenzy

May 5, 2025
Bold leopard print outfit

Sometimes you gotta bring the wild side out—this leopard print combo was fierce and fabulous! 🐆💕

for (let i = 0; i < maxStars; i++) { const star = document.createElement("div"); star.style.position = "fixed"; star.style.width = "8px"; star.style.height = "8px"; star.style.borderRadius = "50%"; star.style.backgroundColor = colors[i % colors.length]; star.style.pointerEvents = "none"; star.style.opacity = "0.7"; star.style.transition = "transform 0.5s, opacity 0.5s"; document.body.appendChild(star); stars.push({ el: star, x: 0, y: 0 }); } let index = 0; document.addEventListener("mousemove", (e) => { const star = stars[index]; star.x = e.clientX; star.y = e.clientY; star.el.style.transform = `translate(${star.x}px, ${star.y}px) scale(1)`; star.el.style.opacity = "1"; setTimeout() => { star.el.style.opacity = "0"; star.el.style.transform = `translate(${star.x}px, ${star.y}px) scale(0.5)`; }, 300); index = (index + 1) % stars.length; });