UserCSS:
:root {
--main-color: DarkGray; /* 調 */
--assort-color: White; /* */
--base-color: WhiteSmoke; /* */
--accent-color: BlueViolet; /* 調 */
}

.selection{
background-color: var(--accent-color, GreenYellow);
}

.selection{
background: linear-gradient( to right,
var(--accent-color),
var(--assort-color),
var(--accent-color)
) 0% center / 200% auto ; /* */
animation: selection 4s linear infinite;
animation-direction: reverse;
/*animation-direction: alternate;*/
}
@keyframes selection {
to { background-position-x: 200%; }
}


.selection{
background-color: #2EFEF7;
}

.selections
.selection


UserCSS