mancala/src/theme/DefaultTheme.ts

19 lines
497 B
TypeScript
Raw Normal View History

2022-05-15 01:58:57 +03:00
import { Theme } from "./Theme";
const defaultTheme: Theme = {
background: "#EEEEEE",
boardColor: "#4D606E",
boardColorWhenPlayerTurn: "#84b8a6",
storeColor: "#3FBAC2",
storeColorWhenPlayerTurn: "#6cab94",
holeColor: "#D3D4D8",
ballColor: "#393E46",
ballLightColor: "#393E46",
pitGameMoveAnimateColor: "#5f94c2",
pitEmptyPitAnimateColor: "#5d7322",
pitLastStoneInBankPitAnimateColor: "#79708c",
pitGetRivalStonePitAnimateColor: "#ff3d44",
};
export default defaultTheme;