Skip to content

Commit

Permalink
fix: right menu and queue label fg colors
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Sep 25, 2021
1 parent 5c112d9 commit 8e91b6b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions oomoxify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,8 @@ for archive_path in "${backup_dir}"/*.spa ; do
-e "s/rgba(24, 24, 24, [0-9\.]\+)/#oomox_top_and_button_bg/g" \
-e "s/rgba(25,20,20,[0-9\.]\+)/#oomox_top_and_button_bg/g" \
-e "s/rgba(160, 160, 160, [0-9\.]\+)/#oomox_main_fg/g" \
-e "s/rgba(255, 255, 255, ...)/#oomox_main_fg/gI" \
-e "s/rgba(255, 255, 255,[0-9\.]\+)/#oomox_main_fg/gI" \
-e "s/rgba(255,255,255,[0-9\.]\+)/#oomox_main_fg/gI" \
-e "s/hsla(0,0%,100%,.9)/#oomox_main_fg/gI" \
-e "s/hsla(0,0%,100%,.7)/#oomox_main_fg/gI" \
-e "s/#ddd;/#oomox_main_fg;/g" \
Expand Down Expand Up @@ -300,7 +301,11 @@ for archive_path in "${backup_dir}"/*.spa ; do
background-color: #${main_bg} !important;
color: #${main_fg} !important;
}
div[role='search'] svg {
div[role='search'] svg {
color: #${main_fg} !important;
}
.contentSpacing h1 {
color: #${main_fg} !important;
}
Expand Down

0 comments on commit 8e91b6b

Please sign in to comment.