diff --git a/apps/client/src/stylesheets/theme-dark.css b/apps/client/src/stylesheets/theme-dark.css index d4702d6c5..5bff3262f 100644 --- a/apps/client/src/stylesheets/theme-dark.css +++ b/apps/client/src/stylesheets/theme-dark.css @@ -115,3 +115,7 @@ body .todo-list input[type="checkbox"]:not(:checked):before { .use-note-color { --custom-color: var(--dark-theme-custom-color); } + +span.fancytree-active { + color: var(--dark-theme-custom-color, var(--active-item-text-color)); +} diff --git a/apps/client/src/stylesheets/theme-light.css b/apps/client/src/stylesheets/theme-light.css index cad8d9b4b..f421827d4 100644 --- a/apps/client/src/stylesheets/theme-light.css +++ b/apps/client/src/stylesheets/theme-light.css @@ -99,3 +99,7 @@ html { .use-note-color { --custom-color: var(--light-theme-custom-color); } + +span.fancytree-active { + color: var(--light-theme-custom-color, var(--active-item-text-color)); +}