Frontmatter
| id | 9275 |
| title | Fix invalid CSS variable in dark theme Splitter |
| state | Closed |
| labels | bugdesignai |
| assignees | tobiu |
| createdAt | Feb 23, 2026, 11:24 PM |
| updatedAt | Feb 23, 2026, 11:25 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9275 |
| author | tobiu |
| commentsCount | 2 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 23, 2026, 11:25 PM |
Fix invalid CSS variable in dark theme Splitter
tobiu assigned to @tobiu on Feb 23, 2026, 11:24 PM

tobiu
Feb 23, 2026, 11:24 PM
Input from Gemini 3.1 Pro:
✦ I have updated the dark theme's Splitter component to correctly reference the
--purple-500variable. The change has been committed under598c70a45and pushed. I will now close this ticket.

tobiu
Feb 23, 2026, 11:25 PM
Completed
tobiu closed this issue on Feb 23, 2026, 11:25 PM
The
Splittercomponent's dark theme styling (resources/scss/theme-neo-dark/component/Splitter.scss) was referencing a non-existent CSS variable for its hover state:var(--blue-500).This ticket corrects the reference to use the existing
var(--purple-500)variable from theCore.scssdesign tokens, ensuring the hover color is properly applied in the dark theme.