From ce958e93fbd915beba1457a30dd6d4ca3f164fea Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Mon, 23 Mar 2026 17:46:05 +0100 Subject: [PATCH] Caret color --- src/components/WelcomeTypewriter.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/WelcomeTypewriter.astro b/src/components/WelcomeTypewriter.astro index 7bfc3b2..26744bd 100644 --- a/src/components/WelcomeTypewriter.astro +++ b/src/components/WelcomeTypewriter.astro @@ -42,7 +42,7 @@ .welcome-typewriter-nostyle { min-height: 1em; - border-right: 2px solid orange; + border-right: 2px solid rgb(var(--accent-base)); margin: 0 auto; display: block; overflow-x: hidden; @@ -70,7 +70,7 @@ display: inline-block; height: 1em; width: 0px; - border-right: 2px solid orange; + border-right: 2px solid rgb(var(--accent-base)); animation: blink-caret 1s step-end infinite; } @@ -79,7 +79,7 @@ } @keyframes blink-caret { - from, to { border-color: orange } + from, to { border-color: rgb(var(--accent-base)) } 50% { border-color: transparent; } }