Added Universal Node Accent Theming

This commit is contained in:
2025-05-31 01:53:05 -06:00
parent db14d6ee0d
commit e1dae4dd96
2 changed files with 142 additions and 22 deletions

View File

@@ -88,13 +88,13 @@
position: absolute;
left: 0;
top: 0;
width: 3px; /* Accent width */
width: 3px;
height: 100%;
background: linear-gradient(
to bottom,
#58a6ff 0%,
#0475c2 100%
); /* Or any accent color(s) you want */
var(--borealis-accent, #58a6ff) 0%,
var(--borealis-accent-dark, #0475c2) 100%
);
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
@@ -104,7 +104,7 @@
border-top-left-radius: 4px;
border-top-right-radius: 4px;
font-weight: bold;
color: #58a6ff;
color: var(--borealis-title, #58a6ff);
font-size: 10px;
}
.borealis-node-content {