From 0e49d97ac87a3cbdce198ebf58e82d49acbd4241 Mon Sep 17 00:00:00 2001 From: David Runge Date: Sat, 12 Sep 2020 17:40:18 +0200 Subject: Add transparency to waybar's mpd widget .config/waybar/style.css: Set transparency to 33% for all states of the mpd widget --- .config/waybar/style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/waybar/style.css b/.config/waybar/style.css index 63e6f57..4b4b504 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -185,19 +185,19 @@ label:focus { } #mpd { - background-color: rgba(102, 204, 153, 1); + background-color: rgba(102, 204, 153, 0.33); color: rgba(42, 92, 69, 1); } #mpd.disconnected { - background-color: rgba(245, 60, 60, 0.0); + background-color: rgba(245, 60, 60, 0.33); color: rgba(42, 92, 69, 1); } #mpd.stopped { - background-color: rgba(144, 177, 177, 1); + background-color: rgba(144, 177, 177, 0.33); } #mpd.paused { - background-color: rgba(81, 163, 122, 1); + background-color: rgba(81, 163, 122, 0.33); } -- cgit v1.2.3-54-g00ecf