Removes the pink from the progressbar in the new Youtube update.
Revert Pink Youtube Progress Bar by IzzBloxian
Details
AuthorIzzBloxian
LicenseNo License
Categorywww.youtube.com
Created
Updated
Size846 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Revert Pink Youtube Progress Bar
@version 20241019.09.20
@namespace https://userstyles.world/user/IzzBloxian
@description Removes the pink from the progressbar in the new Youtube update.
@author IzzBloxian
==/UserStyle== */
@-moz-document url-prefix("https://www.youtube.com/watch") {
/* Change YouTube progress bar to red or another color */
.ytp-play-progress {
background-color: #ff0000 !important; /* Replace #ff0000 with any color you want */
}
/* Override the pink gradient effect */
.ytp-cairo-refresh-signature-moments .ytp-play-progress {
background: #ff0000 !important; /* Change to any color */
}
/* Remove the gradient and set a solid color */
.ytp-cairo-refresh .ytp-swatch-background-color {
background-color: #ff0000 !important; /* Replace #ff0000 with any color */
}
}