33 lines
850 B
TypeScript
33 lines
850 B
TypeScript
import { Theme } from "./Theme";
|
|
|
|
// from https://colorhunt.co/palette/0f0e0e5412128b9a46eeeeee
|
|
const colors = {
|
|
primary: "#541212",
|
|
secondary: "#0F0E0E",
|
|
tertiary: "#8B9A46",
|
|
quaternary: "#EEEEEE",
|
|
};
|
|
|
|
const colorSpecial = "#990000";
|
|
|
|
const darkTheme: Theme = {
|
|
id: "2",
|
|
name: "Dark Theme",
|
|
background: colors.primary,
|
|
appBarBgColor: colors.secondary,
|
|
primary: colors.primary,
|
|
primaryLight: colors.quaternary,
|
|
playerTurnColor: colors.secondary,
|
|
boardColor: colors.secondary,
|
|
holeColor: colors.tertiary,
|
|
pitSelectedColor: colors.tertiary,
|
|
stoneColor: colors.primary,
|
|
stoneLightColor: colors.tertiary,
|
|
pitGameMoveAnimateColor: colors.quaternary,
|
|
pitEmptyPitAnimateColor: colorSpecial,
|
|
pitLastStoneInBankPitAnimateColor: colorSpecial,
|
|
pitGetRivalStonePitAnimateColor: colorSpecial,
|
|
};
|
|
|
|
export default darkTheme;
|