22// @id island-media-controls
33// @name Island Media Controls
44// @description Dynamic island-like media controls for the Windows 11 taskbar.
5- // @version 0.9.210
5+ // @version 0.9.211
66// @author usho
77// @github https://github.com/usho-lear
88// @license MIT
@@ -29,7 +29,7 @@ play/pause, and next controls.
2929## What's new
3030
3131- **Liquid Glass refinements:** The material now uses a smoother edge-following
32- refraction band and a softer light-mode backdrop tint.
32+ refraction band and stronger light-mode backdrop/control tint.
3333- **Safer capture startup:** Borderless capture authorization is now bounded
3434 and cleanly stopped before the mod unloads.
3535- **Thread-safe live blur:** Capture rendering now uses a taskbar-thread
@@ -3846,8 +3846,8 @@ int PopupCompactFinalHeight() {
38463846winrt::Windows::UI ::Color PopupControlCardColor () {
38473847 bool dark = IsDarkModeApprox ();
38483848 if (IsLiquidGlassMaterial ()) {
3849- return dark ? Color (0x32 , 0x12 , 0x14 , 0x1A )
3850- : Color (0x56 , 0xFB , 0xFC , 0xFF );
3849+ return dark ? Color (0x3A , 0x12 , 0x14 , 0x1A )
3850+ : Color (0x68 , 0xFB , 0xFC , 0xFF );
38513851 }
38523852
38533853 // Keep light and dark tint strengths independent. Light mode keeps the
@@ -3954,8 +3954,8 @@ mediax::Brush PopupTextEdgeFadeBrush(bool leftEdge) {
39543954 auto bg = PopupControlCardColor ();
39553955 if (IsLiquidGlassMaterial ()) {
39563956 bool dark = IsDarkModeApprox ();
3957- bg = dark ? Color (0x20 , 0x12 , 0x14 , 0x1A )
3958- : Color (0x3C , 0xFB , 0xFC , 0xFF );
3957+ bg = dark ? Color (0x28 , 0x12 , 0x14 , 0x1A )
3958+ : Color (0x50 , 0xFB , 0xFC , 0xFF );
39593959 }
39603960 auto clear = bg;
39613961 clear.A = 0x00 ;
@@ -4055,9 +4055,9 @@ mediax::Brush PopupBackdropCardTintBrush() {
40554055 stops.Append (stop);
40564056 };
40574057
4058- addStop (0.00 , preserveCompactWash ? 0x34 : 0x4A );
4059- addStop (0.24 , preserveCompactWash ? 0x24 : 0x34 );
4060- addStop (0.58 , preserveCompactWash ? 0x10 : 0x18 );
4058+ addStop (0.00 , preserveCompactWash ? 0x42 : 0x5C );
4059+ addStop (0.24 , preserveCompactWash ? 0x30 : 0x42 );
4060+ addStop (0.58 , preserveCompactWash ? 0x16 : 0x22 );
40614061 addStop (1.00 , 0x00 );
40624062 brush.GradientStops (stops);
40634063 return brush;
@@ -4087,7 +4087,7 @@ mediax::Brush PopupBackdropCardTintBrush() {
40874087
40884088double PopupPanelCoverOpacityFactor () {
40894089 if (IsLiquidGlassMaterial ()) {
4090- return IsDarkModeApprox () ? 0.22 : 0.26 ;
4090+ return IsDarkModeApprox () ? 0.30 : 0.36 ;
40914091 }
40924092
40934093 // The stronger light-mode white tint can hide the album color wash too much.
0 commit comments