rgb-progress-bar/style.css

84 lines
1.3 KiB
CSS
Raw Normal View History

2022-01-12 13:21:35 -05:00
.ytp-play-progress,
2022-03-27 19:49:40 -04:00
.ytp-swatch-background-color,
2022-03-29 21:37:05 -04:00
/* YouTube */
.vjs-play-progress,
.vjs-slider-bar,
/* Invidious */
/* Odysee */
.played
/* Vimeo */
{
2022-01-12 13:32:36 -05:00
animation: RGB 25s ease-in-out infinite;
2022-01-12 13:21:35 -05:00
}
@keyframes RGB {
2022-01-12 13:32:36 -05:00
from {
background-color: #FF0000;
2022-03-27 19:49:40 -04:00
color: #FF0000;
2022-01-12 13:32:36 -05:00
}
7% {
background-color: #FF7700;
2022-03-27 19:49:40 -04:00
color: #FF7700;
2022-01-12 13:32:36 -05:00
}
14% {
background-color: #FFDD00;
2022-03-29 21:37:05 -04:00
color: #FFDD00;
2022-01-12 13:32:36 -05:00
}
21% {
background-color: #00FF00;
2022-03-27 19:49:40 -04:00
color: #00FF00;
2022-01-12 13:32:36 -05:00
}
28% {
background-color: #0000FF;
2022-03-27 19:49:40 -04:00
color: #0000FF;
2022-01-12 13:32:36 -05:00
}
35% {
background-color: #8A2BE2;
2022-03-27 19:49:40 -04:00
color: #8A2BE2;
2022-01-12 13:32:36 -05:00
}
42% {
background-color: #C77DF3;
2022-03-27 19:49:40 -04:00
color: #C77DF3;
2022-01-12 13:32:36 -05:00
}
49% {
background-color: #C77DF3;
2022-03-27 19:49:40 -04:00
color: #C77DF3;
2022-01-12 13:32:36 -05:00
}
56% {
background-color: #8A2BE2;
2022-03-27 19:49:40 -04:00
color: #8A2BE2;
2022-01-12 13:32:36 -05:00
}
63% {
background-color: #0000FF;
2022-03-27 19:49:40 -04:00
color: #0000FF;
2022-01-12 13:32:36 -05:00
}
70% {
background-color: #00FF00;
2022-03-27 19:49:40 -04:00
color: #00FF00;
2022-01-12 13:32:36 -05:00
}
77% {
background-color: #FFDD00;
2022-03-29 21:37:05 -04:00
color: #FFDD00;
2022-01-12 13:32:36 -05:00
}
84% {
2022-03-27 19:49:40 -04:00
backgroud-color: #FF7700;
color: #FF7700;
2022-01-12 13:32:36 -05:00
}
91% {
background-color: #FF0000;
2022-03-27 19:49:40 -04:00
color: #FF0000;
2022-01-12 13:32:36 -05:00
}
}