diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2024-08-10 19:52:03 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2024-08-10 19:52:03 -0500 |
commit | 8e793e9d239ae9008382e0af07a163eae804ee32 (patch) | |
tree | a8b4e47d6667793a5c8a158339f6512c95460cf0 /misc/rateyourmusic.com-dark-reader-compatibility.js | |
parent | 5cd7617d4467693feced81b440eee8782aebdb02 (diff) | |
download | userscripts-8e793e9d239ae9008382e0af07a163eae804ee32.tar.xz userscripts-8e793e9d239ae9008382e0af07a163eae804ee32.zip |
move usps and rateyourmusic dark reader script
Diffstat (limited to 'misc/rateyourmusic.com-dark-reader-compatibility.js')
-rw-r--r-- | misc/rateyourmusic.com-dark-reader-compatibility.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/misc/rateyourmusic.com-dark-reader-compatibility.js b/misc/rateyourmusic.com-dark-reader-compatibility.js new file mode 100644 index 0000000..587fd7d --- /dev/null +++ b/misc/rateyourmusic.com-dark-reader-compatibility.js @@ -0,0 +1,20 @@ +// ==UserScript== +// @name rateyourmusic.com darkmode compat +// @namespace Violentmonkey Scripts +// @match https://rateyourmusic.com/* +// @grant GM_addStyle +// @version 1.0 +// @author - +// @description 7/9/2024, 10:34:17 PM +// ==/UserScript== + +GM_addStyle(` + .page_charts_section_charts_item_details_average_num { background: var(--average-rating); -webkit-background-clip: text; } + .page_home_intro_content_text_sitename, + .disco_avg_rating { background-clip: text !important; } + #column_container_right *, + .disco_expand_section_btn { background: #111 !important; } + #ui_search_input_main_search { background: #252525; } + .page_home_section_featured_content_content_item .page_section_dynamic_fade_cover { background: linear-gradient(to bottom,rgba(128,128,128,0),#212121); } + .ui_button { background: 444 !important; } +`) |