mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-24 08:20:42 -04:00
frontend: Fix audio mixer light theme colors
This commit is contained in:
@@ -1 +1 @@
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><style>.a{fill:#202020}</style><path class="a" d="m8 0c-1.2 0-2.4 0.3-3.5 0.9-2.2 1.3-3.5 3.6-3.5 6.1v6c0 0 0 2 2 2h1c0.6 0 1-0.4 1-1v-4c0-0.6-0.5-1-1-1 0 0-1 0-1-1v-1c0-1.8 1-3.4 2.5-4.3 1.5-0.9 3.5-0.9 5 0 1.5 0.9 2.5 2.5 2.5 4.3v1c0 1-1 1-1 1-0.5 0-1 0.4-1 1v4c0 0.6 0.4 1 1 1h1c2 0 2-2 2-2v-6c0-2.5-1.3-4.8-3.5-6.1-1.1-0.6-2.3-0.9-3.5-0.9z"/></svg>
|
||||
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><style>.a{fill:#fefefe}</style><path class="a" d="m8 0c-1.2 0-2.4 0.3-3.5 0.9-2.2 1.3-3.5 3.6-3.5 6.1v6c0 0 0 2 2 2h1c0.6 0 1-0.4 1-1v-4c0-0.6-0.5-1-1-1 0 0-1 0-1-1v-1c0-1.8 1-3.4 2.5-4.3 1.5-0.9 3.5-0.9 5 0 1.5 0.9 2.5 2.5 2.5 4.3v1c0 1-1 1-1 1-0.5 0-1 0.4-1 1v4c0 0.6 0.4 1 1 1h1c2 0 2-2 2-2v-6c0-2.5-1.3-4.8-3.5-6.1-1.1-0.6-2.3-0.9-3.5-0.9z"/></svg>
|
||||
|
Before Width: | Height: | Size: 449 B After Width: | Height: | Size: 449 B |
@@ -92,7 +92,7 @@
|
||||
--danger: var(--red3);
|
||||
|
||||
--text: var(--white1);
|
||||
--text_light: rgb(214, 214, 214);
|
||||
--text_light: var(--white1);
|
||||
--text_muted: rgb(153, 153, 153);
|
||||
|
||||
--text_disabled: var(--text_muted);
|
||||
@@ -1677,17 +1677,20 @@ QSlider::handle:disabled {
|
||||
|
||||
.btn-monitor.checked {
|
||||
background: var(--green4);
|
||||
color: var(--text_light);
|
||||
qproperty-icon: url(theme:Dark/headphones.svg);
|
||||
}
|
||||
|
||||
.btn-monitor.checked:focus,
|
||||
.btn-monitor:checked:focus {
|
||||
color: var(--text_light);
|
||||
border-color: var(--green1);
|
||||
}
|
||||
|
||||
.btn-monitor.checked:hover {
|
||||
background: var(--green3);
|
||||
border-color: var(--green1);
|
||||
color: var(--text_light);
|
||||
}
|
||||
|
||||
.volume-inactive .btn-monitor.checked {
|
||||
@@ -1861,7 +1864,7 @@ VolumeControl .mixer-category {
|
||||
|
||||
VolumeControl.volume-pinned .mixer-category {
|
||||
background: var(--blue5);
|
||||
color: var(--text);
|
||||
color: var(--text_light);
|
||||
}
|
||||
|
||||
VolumeControl.volume-hidden .mixer-category {
|
||||
|
||||
@@ -25,7 +25,6 @@
|
||||
--bg_preview: var(--grey8);
|
||||
|
||||
--text: var(--black1);
|
||||
--text_light: var(--black3);
|
||||
--text_muted: var(--black4);
|
||||
|
||||
--text_disabled: var(--text_muted);
|
||||
@@ -61,6 +60,7 @@
|
||||
}
|
||||
|
||||
.btn-monitor.checked {
|
||||
color: var(--text_light);
|
||||
qproperty-icon: url(theme:Light/headphones.svg);
|
||||
}
|
||||
|
||||
@@ -76,6 +76,41 @@ VolumeMeter {
|
||||
qproperty-minorTickColor: var(--black5);
|
||||
}
|
||||
|
||||
.toggle-hidden:checked {
|
||||
background: var(--purple1);
|
||||
border-color: var(--purple5);
|
||||
color: var(--purple6);
|
||||
}
|
||||
|
||||
VolumeControl .mixer-category {
|
||||
background: var(--blue1);
|
||||
color: var(--text_light);
|
||||
}
|
||||
|
||||
VolumeControl.volume-pinned .mixer-category {
|
||||
background: var(--blue2);
|
||||
}
|
||||
|
||||
VolumeControl.volume-hidden .mixer-category {
|
||||
background: var(--purple1);
|
||||
color: var(--purple6);
|
||||
}
|
||||
|
||||
VolumeControl.volume-unassigned .mixer-category {
|
||||
background: var(--yellow1);
|
||||
color: var(--yellow6);
|
||||
}
|
||||
|
||||
VolumeControl.volume-inactive .mixer-category {
|
||||
background: var(--grey8);
|
||||
color: var(--text_muted);
|
||||
}
|
||||
|
||||
VolumeControl.volume-preview .mixer-category {
|
||||
background: var(--green3);
|
||||
color: var(--text_light);
|
||||
}
|
||||
|
||||
QMenu::right-arrow {
|
||||
image: url(theme:Light/expand.svg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user