fix: black SVG icons now render white — invert(1) filter; proper fullscreen icon

- Pipedal SVGs have no fill (default black) — added invert(0.95) brightness(2)
  to render them white on dark backgrounds
- Status bar icons: brightness(0.7) was making them invisible on dark bg
- Fullscreen icon: replaced ic_drawer_2 (cabinet) with proper inline
  Material-style expand SVG in amber
This commit is contained in:
2026-06-12 19:35:46 -04:00
parent 62c373b989
commit f67e6bd8c7
2 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ function BlockIcon({ type, size = 14, style = {} }) {
alt={type || 'fx'}
style={{
width: size, height: size, flexShrink: 0,
filter: 'brightness(1.2) contrast(1.1)',
filter: 'invert(0.95) brightness(2)',
objectFit: 'contain',
...style,
}}