20 lines
507 B
TypeScript
20 lines
507 B
TypeScript
|
|
export type Theme = {
|
||
|
|
id: string;
|
||
|
|
name: string;
|
||
|
|
themePreviewColor: string; // for theme switch menu
|
||
|
|
textColor: string;
|
||
|
|
textLightColor: string;
|
||
|
|
background: string;
|
||
|
|
appBarBgColor: string;
|
||
|
|
playerTurnColor: string;
|
||
|
|
boardColor: string;
|
||
|
|
pitColor: string;
|
||
|
|
pitSelectedColor: string;
|
||
|
|
stoneColor: string;
|
||
|
|
stoneLightColor: string;
|
||
|
|
pitGameMoveAnimateColor: string;
|
||
|
|
pitEmptyPitAnimateColor: string;
|
||
|
|
pitLastStoneInBankPitAnimateColor: string;
|
||
|
|
pitGetRivalStonePitAnimateColor: string;
|
||
|
|
};
|