import React, { useEffect, useState } from 'react'; export function MinimalThemeTest() { const [cssVars, setCssVars] = useState>({}); useEffect(() => { const root = document.documentElement; const styles = getComputedStyle(root); setCssVars({ background: styles.getPropertyValue('--background'), foreground: styles.getPropertyValue('--foreground'), primary: styles.getPropertyValue('--primary-500'), glassBg: styles.getPropertyValue('--glass-bg'), }); }, []); return (

Theme Debug Panel

CSS Variables:

{JSON.stringify(cssVars, null, 2)}

Test Elements:

Direct CSS var test
Tailwind class test
Gradient test
); }