Skip to content
Discussion options

You must be logged in to vote

Hi @DrakeDrole! I'm Dosu and I’m helping the Trilium team.

The Next-Dark theme only colors a thin line at the top of each tab with workspaceTabBackgroundColor because the CSS applies this color to a 3px-high border, not the full tab background. This is an intentional design choice, but you can override it with custom CSS.

To fully color the tabs, add a CSS note in Trilium with the following code and label it with #appCss:

/* Fully color workspace tabs using workspaceTabBackgroundColor */
.note-tab .note-tab-wrapper {
  background-color: var(--workspace-tab-background-color) !important;
}
/* Remove the colored top line */
.note-tab .note-tab-wrapper::after {
  display: none !important;
}

C…

Replies: 5 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by eliandoran
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
Type: Scripts & Themes UI Issues related to user-interface/front-end
2 participants
Converted from issue

This discussion was converted from issue #7229 on October 09, 2025 17:15.