mancala/src/theme/GreyTheme.ts

23 lines
565 B
TypeScript
Raw Normal View History

2022-06-04 17:16:32 +03:00
import { Theme } from "./Theme";
2022-07-13 15:39:34 +03:00
const greyTheme: Theme = {
id: "1",
name: "Grey Theme",
2022-06-04 17:16:32 +03:00
background: "#EEEEEE",
2022-06-04 20:54:19 +03:00
appBarBgColor: "#e4e4e4",
2022-07-13 15:39:34 +03:00
textColor: "#4D606E",
textLightColor: "#EEEEEE",
2022-06-04 17:16:32 +03:00
playerTurnColor: "#84b8a6",
boardColor: "#4D606E",
holeColor: "#D3D4D8",
pitSelectedColor: "#8837fa",
stoneColor: "#393E46",
stoneLightColor: "#EEEEEE",
pitGameMoveAnimateColor: "#c9b43c",
pitEmptyPitAnimateColor: "#5d7322",
pitLastStoneInBankPitAnimateColor: "#9463f7",
pitGetRivalStonePitAnimateColor: "#ff3d44",
};
2022-07-13 15:39:34 +03:00
export default greyTheme;