From f70c258d98dc638d1e83d084b6476b5c7ea5f595 Mon Sep 17 00:00:00 2001 From: M1ngdaXie <156019134+M1ngdaXie@users.noreply.github.com> Date: Thu, 26 Mar 2026 15:18:21 -0700 Subject: [PATCH] =?UTF-8?q?feat(pixel):=20restyle=20menubar=20=E2=80=94=20?= =?UTF-8?q?opaque=20bg,=20cyan=20text,=20pixel=20border?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/MenuBar/MenuBar.css | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/components/MenuBar/MenuBar.css b/src/components/MenuBar/MenuBar.css index d2c0a0e..3e41357 100644 --- a/src/components/MenuBar/MenuBar.css +++ b/src/components/MenuBar/MenuBar.css @@ -4,10 +4,8 @@ left: 0; right: 0; height: var(--menubar-height); - background: rgba(20, 20, 28, 0.72); - backdrop-filter: var(--glass-blur); - -webkit-backdrop-filter: var(--glass-blur); - border-bottom: 1px solid var(--glass-border); + background: #080816; + border-bottom: 2px solid rgba(0, 255, 255, 0.2); display: flex; align-items: center; justify-content: space-between; @@ -26,19 +24,20 @@ font-size: 14px; margin-right: 8px; cursor: default; + color: var(--pixel-cyan); } .menubar-item { - font-size: 12px; - font-weight: 500; - color: rgba(255,255,255,0.85); + font-size: 8px; + font-weight: 400; + color: var(--pixel-cyan); padding: 2px 8px; - border-radius: 4px; cursor: default; + letter-spacing: 0.5px; } .menubar-item:hover { - background: rgba(255,255,255,0.1); + background: rgba(0, 255, 255, 0.15); } .menubar-right { @@ -47,7 +46,7 @@ } .menubar-clock { - font-size: 12px; - font-weight: 500; - color: rgba(255,255,255,0.85); + font-size: 8px; + color: var(--pixel-cyan); + letter-spacing: 0.5px; }