Changes the Roblox play button so it cycles between yellow and green (credits to TheMetalEngine 20 for the original version)
Roblox Green and Yellow Pastell Button by staircase
Details
Authorstaircase
LicenseNo License
Categoryhttps://www.roblox.com
Created
Updated
Size1.2 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Roblox cute blue and green play button
@namespace USO Archive
@author TheMetalEngine 20
@description `This changes the Black (White if dark mode, green if have Roblox in 2016) play button to blue and green`
@version 20210912.22.4
@license CC0-1.0
@preprocessor uso
==/UserStyle== */
@-moz-document domain("roblox.com") {
@keyframes rainbow {
0% {
background-color: #92fca0;
border-color: #e5fc92;
}
14% {
background-color: #e5fc92;
border-color: #92fc9e;
}
28% {
background-color: #92fc9e;
border-color: #e5fc92;
}
42% {
background-color: #e5fc92;
border-color: #92fc9e;
}
56% {
background-color: #92fc9e;
border-color: #e5fc92;
}
80% {
background-color: #e5fc92;
border-color: #92fc9e;
}
94% {
background-color: #92fc9e;
border-color: #e5fc92;
}
100% {
background-color: #e5fc92;
border-color: #92fc9e;
}
}
.btn-common-play-game-lg {
animation: rainbow 10s infinite;
}
}