beta palette
New Roblox A/B testing new colors (dark mode only) by githubberguy

Details
Authorgithubberguy
LicenseNo License
CategoryRoblox
Created
Updated
Code size1.1 kB
Code checksum42f861ea
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
no.
Source code
/* ==UserStyle==
@name New Roblox A/B testing new colors (dark mode only)
@version 20210827.02.59
@namespace lol
@description beta palette
@author A
@license No License
==/UserStyle== */
@-moz-document domain("roblox.com") {
@keyframes rainbow {
0% {background-color: #1446ff;border-color: #1446ff;}
50% {background-color: #1446ff;border-color: #1446ff;}
100% {background-color: #1446ff;border-color: #1446ff;}
}
@keyframes darker {
0% {background-color: #181414;border-color: #181414;}
50% {background-color: #181414;border-color: #181414;}
100% {background-color: #181414;border-color: #181414;}
}
.btn-common-play-game-lg {
animation: rainbow 10s infinite;
}
.btn-growth-lg {
animation: rainbow 10s infinite;
}
#container-main {
animation: darker 10s infinite;
}
.game-home-page-container > div {
animation: darker 10s infinite;
}
.content {
animation: darker 10s infinite;
}
#footer-container {
animation: darker 10s infinite;
}
}