19 lines
497 B
TypeScript
19 lines
497 B
TypeScript
import { Theme } from "./Theme";
|
|
|
|
const defaultTheme: Theme = {
|
|
background: "#EEEEEE",
|
|
boardColor: "#4D606E",
|
|
boardColorWhenPlayerTurn: "#84b8a6",
|
|
storeColor: "#3FBAC2",
|
|
storeColorWhenPlayerTurn: "#6cab94",
|
|
holeColor: "#D3D4D8",
|
|
ballColor: "#393E46",
|
|
ballLightColor: "#393E46",
|
|
pitGameMoveAnimateColor: "#c9b43c",
|
|
pitEmptyPitAnimateColor: "#5d7322",
|
|
pitLastStoneInBankPitAnimateColor: "#9463f7",
|
|
pitGetRivalStonePitAnimateColor: "#ff3d44",
|
|
};
|
|
|
|
export default defaultTheme;
|