Fix dark text on dark background errors

This commit is contained in:
Peder Smith 2020-12-30 20:28:29 +01:00
parent 38c543b940
commit e66051979b
No known key found for this signature in database
GPG Key ID: 24A71CC1FF1C576C
2 changed files with 36 additions and 3 deletions

View File

@ -7,8 +7,8 @@ sidebar_and_player_bg = FAFAFA
cover_overlay_and_shadow = 000000
indicator_fg_and_button_bg = bdc3c7
pressing_fg = 2c3e50
slider_bg = FAFAFA
sidebar_indicator_and_hover_button_bg = 95a5a6
slider_bg = CCCCCC
sidebar_indicator_and_hover_button_bg = 9CCCEC
scrollbar_fg_and_selected_row_bg = EBEBEB
pressing_button_fg = 2c3e50
pressing_button_bg = 2c3e50

View File

@ -11,4 +11,37 @@
#view-leaderboard-ad {
display: none !important;
}
}
/* Top Alert bar warning */
.alert,
/* Button that shows "Offline" */
.offline-label-wrapper,
/* The Cast button */
.button.button-blue,
.button.button-blue:hover,
/* Facebook settings button */
.button.button-facebook,
.button.button-facebook:hover {
color: white !important;
}
/* The play button */
.button.button-green {
background: #63cc88;
color: white !important;
}
.button.button-green:hover {
background: #3a8655 !important;
}
/* The profile picture */
.card-placeholder-wrapper {
background: var(--modspotify_main_fg);
}
.slider,
.slider.enabled {
border: 2px solid var(--modspotify_slider_bg);
}