1 parent 26840b2 commit 453104dCopy full SHA for 453104d
2 files changed
frontend/src/engine/board.ts
@@ -13,12 +13,12 @@ export const PIECE_LETTERS: Record<PieceType, string> = {
13
14
export const PIECE_SYMBOLS: Record<Color, Record<PieceType, string>> = {
15
w: {
16
- p: "\u2659",
17
- n: "\u2658",
18
- b: "\u2657",
19
- r: "\u2656",
20
- q: "\u2655",
21
- k: "\u2654",
+ p: "\u265F",
+ n: "\u265E",
+ b: "\u265D",
+ r: "\u265C",
+ q: "\u265B",
+ k: "\u265A",
22
},
23
b: {
24
p: "\u265F",
frontend/src/styles/index.css
@@ -508,7 +508,7 @@ button {
508
justify-content: center;
509
position: relative;
510
z-index: 2;
511
- font-size: clamp(2.2rem, 11vw, 4.4rem);
+ font-size: clamp(2.1rem, 10.5vw, 4.2rem);
512
line-height: 1;
513
user-select: none;
514
transition: transform 80ms ease;
@@ -525,19 +525,19 @@ button {
525
}
526
527
.white-piece {
528
- color: #fff8f0;
+ color: #ffffff;
529
text-shadow:
530
- 0 0 1px rgba(0, 0, 0, 0.6),
531
- 0 1px 2px rgba(0, 0, 0, 0.5),
532
- 0 3px 8px rgba(0, 0, 0, 0.35);
+ 0 0 1px #000,
+ 0 1px 2px rgba(0, 0, 0, 0.6),
+ 0 2px 4px rgba(0, 0, 0, 0.4);
533
534
535
.black-piece {
536
color: #12121a;
537
538
0 0 2px rgba(0, 0, 0, 0.4),
539
- 0 1px 3px rgba(255, 255, 255, 0.08),
540
- 0 3px 8px rgba(0, 0, 0, 0.25);
+ 0 1px 3px rgba(255, 255, 255, 0.1),
+ 0 3px 6px rgba(0, 0, 0, 0.3);
541
542
543
/* ─── Legal Move Indicators ─────────────────────────────────────────────────── */
0 commit comments