2022-05-15 01:58:57 +03:00
|
|
|
export type Theme = {
|
|
|
|
|
background: string;
|
|
|
|
|
boardColor: string;
|
2022-06-04 14:49:34 +03:00
|
|
|
playerTurnColor: string;
|
2022-05-15 01:58:57 +03:00
|
|
|
storeColor: string;
|
|
|
|
|
holeColor: string;
|
2022-05-22 17:55:03 +03:00
|
|
|
pitSelectedColor: string;
|
2022-05-15 01:58:57 +03:00
|
|
|
ballColor: string;
|
|
|
|
|
ballLightColor: string;
|
|
|
|
|
pitGameMoveAnimateColor: string;
|
|
|
|
|
pitEmptyPitAnimateColor: string;
|
|
|
|
|
pitLastStoneInBankPitAnimateColor: string;
|
|
|
|
|
pitGetRivalStonePitAnimateColor: string;
|
|
|
|
|
};
|