mancala/src/theme/OldTheme.ts

21 lines
537 B
TypeScript
Raw Normal View History

2022-06-04 17:16:32 +03:00
import { Theme } from "./Theme";
const oldTheme: Theme = {
background: "#EEEEEE",
appBarBgColor: "rgb(228, 228, 228)",
primary: "#4D606E",
primaryLight: "#EEEEEE",
playerTurnColor: "#84b8a6",
boardColor: "#4D606E",
holeColor: "#D3D4D8",
pitSelectedColor: "#8837fa",
stoneColor: "#393E46",
stoneLightColor: "#EEEEEE",
pitGameMoveAnimateColor: "#c9b43c",
pitEmptyPitAnimateColor: "#5d7322",
pitLastStoneInBankPitAnimateColor: "#9463f7",
pitGetRivalStonePitAnimateColor: "#ff3d44",
};
export default oldTheme;