This userstyle changes that play button on a game page (or on the game icon if you are using RoPro extension) from green to well.. every color in the rainbow!
Rainbow Play Button by joebiden
Details
Authorjoebiden
LicenseNo License
Categoryroblox.com
Created
Updated
Size767 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 Rainbow Play Button
@version 20230416.01.59
@namespace userstyles.world/user/joebiden
@description This userstyle changes that play button on a game page (or on the game icon if you are using RoPro extension) from green to well.. every color in the rainbow!
@author joebiden
@license No License
==/UserStyle== */
@-moz-document domain("roblox.com") {
.dark-theme .btn-common-play-game-lg {
animation: animate 5s linear infinite;
}
.light-theme a.btn-common-play-game-lg {
animation: animate 5s linear infinite;
}
button {
animation: animate 5s linear infinite;
}
@keyframes animate {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(360deg);
}
}
}