fix: selection of tags was not visible

This commit is contained in:
2026-02-15 21:00:59 +01:00
parent 30e3493d9f
commit 97c0ee6877

View File

@@ -1,6 +1,17 @@
/* VS Code-inspired CSS Variables and Global Styles */ /* VS Code-inspired CSS Variables and Global Styles */
:root { :root {
/* Simplified variable aliases for component use */
--background-primary: #1e1e1e;
--background-secondary: #252526;
--background-tertiary: #2d2d2d;
--background-hover: #2a2d2e;
--text-primary: #cccccc;
--text-secondary: #858585;
--border-color: #454545;
--accent-color: #007acc;
--accent-color-transparent: rgba(0, 122, 204, 0.25);
/* Background colors */ /* Background colors */
--vscode-editor-background: #1e1e1e; --vscode-editor-background: #1e1e1e;
--vscode-sideBar-background: #252526; --vscode-sideBar-background: #252526;