From 44fae99ef7a4353109c99a8e09530fe37b2309e8 Mon Sep 17 00:00:00 2001 From: vedant10304 Date: Mon, 21 Jul 2025 11:55:35 +0530 Subject: [PATCH] feat: add color-blink animation --- source/_base.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/source/_base.css b/source/_base.css index ccbfd151c..d163107fa 100644 --- a/source/_base.css +++ b/source/_base.css @@ -66,3 +66,14 @@ opacity: 0; } } +@keyframes color-blink { + 0% { color: red; } + 50% { color: yellow; } + 100% { color: red; } +} + +.color-blink { + animation-name: color-blink; + animation-duration: 1s; + animation-iteration-count: infinite; +}