generated at
UserCSS:選択範囲の色の変更
style.css
:root { --main-color: DarkGray; /* 主調色 */ --assort-color: White; /* 従属色 */ --base-color: WhiteSmoke; /* 背景色 */ --accent-color: BlueViolet; /* 強調色 */ }

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

選択範囲にグラデーションをかける
style.css
.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%; } }


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

.selections
.selection


UserCSS