Here's a quick reference for commands to tweak window transparency and vibrancy effects on macOS26.
"Solarium" is an internal name Apple uses for the system that controls window background effects in macOS26 (like translucency and vibrancy). Disabling Solarium makes app windows more opaque and less affected by the fancy background blur.
To enable or disable Solarium for an app or globally:
/usr/bin/defaults write <bundle> com.apple.SwiftUI.DisableSolarium -bool YES|NO
- Replace
<bundle>with the app's bundle ID (likecom.apple.Safari) or use-gfor global. - Use
YESto disable,NOto enable.
To force Solarium for an app or globally:
/usr/bin/defaults write <bundle> com.apple.SwiftUI.IgnoreSolariumLinkedOnCheck -bool YES|NO
To check the current Solarium state:
/usr/bin/defaults read <bundle> com.apple.SwiftUI.DisableSolarium
/usr/bin/defaults read <bundle> com.apple.SwiftUI.IgnoreSolariumLinkedOnCheck