From e652dfa5ca96673a5bf553852b7b0a7253dd1e34 Mon Sep 17 00:00:00 2001 From: shiina424 <24505855+shiina424@users.noreply.github.com> Date: Fri, 30 Jan 2026 18:10:48 +0900 Subject: [PATCH] frontend: Add headphones icon in Light Theme --- frontend/data/themes/Light/headphones-off.svg | 1 + frontend/data/themes/Light/headphones.svg | 1 + frontend/data/themes/Yami_Light.ovt | 20 +++++++++++++++++++ 3 files changed, 22 insertions(+) create mode 100644 frontend/data/themes/Light/headphones-off.svg create mode 100644 frontend/data/themes/Light/headphones.svg diff --git a/frontend/data/themes/Light/headphones-off.svg b/frontend/data/themes/Light/headphones-off.svg new file mode 100644 index 000000000..1fc99f744 --- /dev/null +++ b/frontend/data/themes/Light/headphones-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/data/themes/Light/headphones.svg b/frontend/data/themes/Light/headphones.svg new file mode 100644 index 000000000..113da789a --- /dev/null +++ b/frontend/data/themes/Light/headphones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/data/themes/Yami_Light.ovt b/frontend/data/themes/Yami_Light.ovt index 281acb8fb..a5fc8524e 100644 --- a/frontend/data/themes/Yami_Light.ovt +++ b/frontend/data/themes/Yami_Light.ovt @@ -44,6 +44,26 @@ --scrollbar_border: var(--grey7); } +/* Mute Button */ + +.btn-mute { + qproperty-icon: url(theme:Light/settings/audio.svg); +} + +.btn-mute.checked { + qproperty-icon: url(theme:Light/mute.svg); +} + +/* Monitor Button */ + +.btn-monitor { + qproperty-icon: url(theme:Light/headphones-off.svg); +} + +.btn-monitor.checked { + qproperty-icon: url(theme:Light/headphones.svg); +} + VolumeMeter { qproperty-backgroundNominalColor: var(--green4); qproperty-backgroundWarningColor: var(--yellow4);