15 lines
389 B
TypeScript
15 lines
389 B
TypeScript
export type Theme = {
|
|
background: string;
|
|
boardColor: string;
|
|
boardColorWhenPlayerTurn: string;
|
|
storeColor: string;
|
|
storeColorWhenPlayerTurn: string;
|
|
holeColor: string;
|
|
ballColor: string;
|
|
ballLightColor: string;
|
|
pitGameMoveAnimateColor: string;
|
|
pitEmptyPitAnimateColor: string;
|
|
pitLastStoneInBankPitAnimateColor: string;
|
|
pitGetRivalStonePitAnimateColor: string;
|
|
};
|