From b6987f86c22422e757d43a1a2b1af9616e6c58b8 Mon Sep 17 00:00:00 2001 From: Kenton <212874685+kentonjg@users.noreply.github.com> Date: Thu, 12 Jun 2025 16:15:04 +0530 Subject: [PATCH] Changed the Bullet Colour in the custom.css Using the Dracula Theme with the "Bullet Threading" plugin, the bullets disappear. Edited the default values for `--ls-block-bullet-color` from `var(--foreground)` to `var(--lx-gray-08,var(--rx-gray-08))` --- custom.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom.css b/custom.css index d518501..1fd126d 100644 --- a/custom.css +++ b/custom.css @@ -70,7 +70,7 @@ html[data-theme="dark"] { --ls-tag-text-hover-color: var(--purple-hover); --ls-block-bullet-border-color: var(--current-line); - --ls-block-bullet-color: var(--foreground); + --ls-block-bullet-color: var(--lx-gray-08,var(--rx-gray-08)); --ls-block-highlight-color: var(--current-line); --ls-block-properties-background-color: var(--light-background);