Switch theme palette to mint green
All checks were successful
Build & Push Docker Image to Gitea Registry / build-and-push (push) Successful in 2m31s
All checks were successful
Build & Push Docker Image to Gitea Registry / build-and-push (push) Successful in 2m31s
This commit is contained in:
@@ -225,8 +225,8 @@ export default function ArchivedGame({ game }: { game: Game }) {
|
||||
<div className="h-min">
|
||||
<Chessboard
|
||||
boardWidth={boardWidth}
|
||||
customDarkSquareStyle={{ backgroundColor: "#4b7399" }}
|
||||
customLightSquareStyle={{ backgroundColor: "#eae9d2" }}
|
||||
customDarkSquareStyle={{ backgroundColor: "#2F8F72" }}
|
||||
customLightSquareStyle={{ backgroundColor: "#DFF8E8" }}
|
||||
position={navFen || actualGame.fen()}
|
||||
boardOrientation={flipBoard ? "black" : "white"}
|
||||
isDraggablePiece={() => false}
|
||||
|
||||
@@ -582,8 +582,8 @@ export default function GamePage({ initialLobby }: { initialLobby: Game }) {
|
||||
|
||||
<Chessboard
|
||||
boardWidth={boardWidth}
|
||||
customDarkSquareStyle={{ backgroundColor: "#4b7399" }}
|
||||
customLightSquareStyle={{ backgroundColor: "#eae9d2" }}
|
||||
customDarkSquareStyle={{ backgroundColor: "#2F8F72" }}
|
||||
customLightSquareStyle={{ backgroundColor: "#DFF8E8" }}
|
||||
position={navFen || lobby.actualGame.fen()}
|
||||
boardOrientation={lobby.side === "b" ? "black" : "white"}
|
||||
isDraggablePiece={isDraggablePiece}
|
||||
|
||||
@@ -35,8 +35,8 @@ export default function LiveGames() {
|
||||
position={game.fen}
|
||||
boardWidth={160}
|
||||
arePiecesDraggable={false}
|
||||
customDarkSquareStyle={{ backgroundColor: "#4b7399" }}
|
||||
customLightSquareStyle={{ backgroundColor: "#eae9d2" }}
|
||||
customDarkSquareStyle={{ backgroundColor: "#2F8F72" }}
|
||||
customLightSquareStyle={{ backgroundColor: "#DFF8E8" }}
|
||||
/>
|
||||
<div className="px-2 py-1.5 flex flex-col gap-0.5">
|
||||
<span className="text-xs font-semibold truncate">{game.black?.name}</span>
|
||||
|
||||
@@ -58,8 +58,8 @@ export default function RecentGames({ userId }: { userId: number }) {
|
||||
position={fen}
|
||||
boardOrientation={myColor}
|
||||
isDraggablePiece={() => false}
|
||||
customDarkSquareStyle={{ backgroundColor: "#4b7399" }}
|
||||
customLightSquareStyle={{ backgroundColor: "#eae9d2" }}
|
||||
customDarkSquareStyle={{ backgroundColor: "#2F8F72" }}
|
||||
customLightSquareStyle={{ backgroundColor: "#DFF8E8" }}
|
||||
areArrowsAllowed={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user