Project
ide
Description
SystemSpecsDialog in src/components/SystemSpecs.tsx styles many strings with fixed Tailwind palette classes (text-neutral-400, text-neutral-500, text-red-400). Those colors do not follow the app’s CSS variable theme (var(--cortex-text-secondary), var(--cortex-text-inactive) or tertiary, var(--cortex-error), etc.), so contrast and hue can drift from the rest of the IDE when the user changes theme or when tokens are updated.
Error Message
Debug Logs
System Information
Cortex IDE: v1.1.0 · OS: Ubuntu · Bounty Challenge: v1.1.0
Screenshots
Steps to Reproduce
Open Help → About (system specs dialog).
Open DevTools → Elements and inspect subtitle lines (version under title, section labels like “Operating System”, helper text, error text, “Live updates”, extension version).
Note Computed styles come from Tailwind neutral / red utilities, not var(--cortex-…) tokens.
Expected Behavior
Secondary, inactive, and error text use semantic Cortex tokens (or shared utility classes mapped to them) so the About dialog matches global theming.
Actual Behavior
Multiple nodes use text-neutral-400, text-neutral-500, and text-red-400
Additional Context
No response