16 lines
408 B
TypeScript
16 lines
408 B
TypeScript
export type Theme = {
|
|
background: string;
|
|
boardColor: string;
|
|
playerTurnColor: string;
|
|
storeColor: string;
|
|
storeColorWhenPlayerTurn: string;
|
|
holeColor: string;
|
|
pitSelectedColor: string;
|
|
ballColor: string;
|
|
ballLightColor: string;
|
|
pitGameMoveAnimateColor: string;
|
|
pitEmptyPitAnimateColor: string;
|
|
pitLastStoneInBankPitAnimateColor: string;
|
|
pitGetRivalStonePitAnimateColor: string;
|
|
};
|