From 7a89fdb3564a644b3838e02ae2916ec3aca3b172 Mon Sep 17 00:00:00 2001 From: Ao Lu Date: Tue, 23 Sep 2025 22:58:57 +0800 Subject: [PATCH] Enhance selection and selected-word styling This PR added neon glow effect to selection and selected-word markers using box-shadow. (Cool setting btw) --- outRun.rstheme | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/outRun.rstheme b/outRun.rstheme index 6493018..9280532 100644 --- a/outRun.rstheme +++ b/outRun.rstheme @@ -38,6 +38,12 @@ } .ace_marker-layer .ace_selection { background: #442044; + box-shadow: 0 0 6px 2px rgba(255, 120, 120, 0.5); +} +.ace_marker-layer .ace_selected-word { + background: #442044; + border-radius: 2px; + box-shadow: 0 0 6px 2px rgba(255, 120, 120, 0.5); } .ace_marker-layer .ace_step { background: rgb(198, 219, 174);