File size: 558 Bytes
be32617 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | sp_light_css = """
/* Light Theme Variables for Side Panel */
[data-theme="light"] {
--sp-bg: #f9fafb;
--sp-surface: #ffffff;
--sp-surface-hover: #f3f4f6;
--sp-surface-active: #e5e7eb;
--sp-border: #e5e7eb;
--sp-border-light: #d1d5db;
--sp-text: #111827;
--sp-text-secondary: #4b5563;
--sp-text-muted: #9ca3af;
--sp-success: #16a34a;
--sp-warning: #d97706;
}
"""
with open('extension/sidepanel/sidepanel.css', 'a', encoding='utf-8') as f:
f.write('\n' + sp_light_css + '\n')
print("Fixed sidepanel CSS variables for light mode.")
|