Commit 910eb140 authored by Mahmoud Aglan's avatar Mahmoud Aglan

fix: chess pieces — white solid white with outline, black solid black

White: #fff fill + 1px #666 stroke (solid white with grey outline)
Black: #000 fill, no stroke (solid black like reference)
Co-Authored-By: 's avatarClaude Opus 4.6 <noreply@anthropic.com>
parent 03796727
...@@ -188,16 +188,15 @@ ...@@ -188,16 +188,15 @@
.piece[data-color="w"] { .piece[data-color="w"] {
color: #fff; color: #fff;
-webkit-text-stroke: 1px #555; -webkit-text-stroke: 1px #666;
paint-order: stroke fill; paint-order: stroke fill;
filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); filter: drop-shadow(1px 2px 1px rgba(0,0,0,0.3));
} }
.piece[data-color="b"] { .piece[data-color="b"] {
color: #333; color: #000;
-webkit-text-stroke: 0.5px #000; -webkit-text-stroke: 0px transparent;
paint-order: stroke fill; filter: drop-shadow(1px 2px 1px rgba(0,0,0,0.2));
filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
} }
.piece:hover { .piece:hover {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment