Lichess original Gioco piece set has a warm yellowish tint. I'm not too fond of this, so here is a userstyle to make this piece set black & white instead.
Lichess: black & white Gioco pieces by pabe
Details
Authorpabe
LicenseMIT
Categorylichess
Created
Updated
Size968 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Use the gioco piece set.
- 202409251703: apply for the current color in puzzles "Your turn" section
- 202409251114: wasn't working for light theme, fixed it
Source code
/* ==UserStyle==
@name Lichess: black & white Gioco pieces
@namespace pabe
@version 202409251703
@description Lichess original Gioco piece set has a warm yellowish tint. This userstyle makes this piece set black & white instead.
@author pabe (https://userstyles.world/user/pabe)
@licence. MIT
==/UserStyle== */
@-moz-document domain("lichess.org") {
body[data-piece-set="gioco"] cg-board .black,
body[data-piece-set="gioco"] .board-editor .no-square .black, /* Board editor */
.puzzle__feedback.play .player .black /* Your turn in puzzles */
{
filter: saturate(5%) brightness(85%) !important;
}
body[data-piece-set="gioco"] cg-board .white,
body[data-piece-set="gioco"] .board-editor .no-square .white, /* Board editor */
.puzzle__feedback.play .player .white /* Your turn in puzzles */
{
filter: saturate(5%) brightness(105%) !important;
}
}