From f67e6bd8c776831690b0be03fbea1e3e14275b3d Mon Sep 17 00:00:00 2001 From: Shawn Date: Fri, 12 Jun 2026 19:35:46 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20black=20SVG=20icons=20now=20render=20whi?= =?UTF-8?q?te=20=E2=80=94=20invert(1)=20filter;=20proper=20fullscreen=20ic?= =?UTF-8?q?on?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- src/App.jsx | 10 ++++++---- src/BlockChain.jsx | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 8465be6..298c900 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -639,10 +639,10 @@ export default function App(){
{["stomp","preset"].map(m=>(
diff --git a/src/BlockChain.jsx b/src/BlockChain.jsx index 6071b2e..887e241 100644 --- a/src/BlockChain.jsx +++ b/src/BlockChain.jsx @@ -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, }}