mancala/src/theme/Theme.ts

19 lines
454 B
TypeScript
Raw Normal View History

2022-05-15 01:58:57 +03:00
export type Theme = {
2022-06-04 19:27:13 +03:00
id: string;
name: string;
2022-07-13 15:21:30 +03:00
textColor: string;
textLightColor: string;
2022-05-15 01:58:57 +03:00
background: string;
2022-06-04 17:16:32 +03:00
appBarBgColor: string;
2022-06-04 14:49:34 +03:00
playerTurnColor: string;
2022-06-04 17:16:32 +03:00
boardColor: string;
2022-05-15 01:58:57 +03:00
holeColor: string;
2022-05-22 17:55:03 +03:00
pitSelectedColor: string;
2022-06-04 17:16:32 +03:00
stoneColor: string;
stoneLightColor: string;
2022-05-15 01:58:57 +03:00
pitGameMoveAnimateColor: string;
pitEmptyPitAnimateColor: string;
pitLastStoneInBankPitAnimateColor: string;
pitGetRivalStonePitAnimateColor: string;
};