Fix
The note area on highlight cards now adapts to dark mode and all nine themes.
Previously the note container used a hardcoded white background (#fcfcfc) and the rendered note text followed var(--text-normal), which turns light in dark mode — so the note text became invisible on the white surface. This also left an out-of-place white box on the new dark themes.
Replaced the hardcoded colors with theme-aware CSS variables (--background-secondary-rgb, --hl-glass-border, --text-normal), matching the glassmorphism pattern used elsewhere in the sidebar.
修复
高亮卡片上的笔记区域现已适配暗色模式及全部 9 个主题。
此前笔记容器使用硬编码的白色背景(#fcfcfc),而渲染出的笔记文字跟随 var(--text-normal),在暗色模式下变为浅色 —— 因此笔记文字在白色背景上根本看不清。这也导致新暗色主题上出现一块突兀的白框。
已将硬编码颜色替换为主题自适应的 CSS 变量(--background-secondary-rgb、--hl-glass-border、--text-normal),与侧栏其他位置使用的毛玻璃风格保持一致。