convert DarkGrey theme to Dark Theme
- remove dark theme
This commit is contained in:
parent
6c2b7d0f28
commit
fd228205e3
@ -1,32 +0,0 @@
|
|||||||
import { Theme } from "./Theme";
|
|
||||||
|
|
||||||
// https://colorhunt.co/palette/525252414141313131ec625f
|
|
||||||
const colors = {
|
|
||||||
primary: "#414141",
|
|
||||||
secondary: "#313131",
|
|
||||||
tertiary: "#606060",
|
|
||||||
quaternary: "#808080",
|
|
||||||
};
|
|
||||||
|
|
||||||
const colorSpecial = "#337a44";
|
|
||||||
|
|
||||||
const darkGreyTheme: Theme = {
|
|
||||||
id: "3",
|
|
||||||
name: "Dark Grey Theme",
|
|
||||||
background: colors.primary,
|
|
||||||
appBarBgColor: colors.secondary,
|
|
||||||
primary: colors.primary,
|
|
||||||
primaryLight: "#aaaaaa",
|
|
||||||
playerTurnColor: colors.secondary,
|
|
||||||
boardColor: colors.secondary,
|
|
||||||
holeColor: colors.tertiary,
|
|
||||||
pitSelectedColor: colors.secondary,
|
|
||||||
stoneColor: "#252525",
|
|
||||||
stoneLightColor: "#252525",
|
|
||||||
pitGameMoveAnimateColor: colors.quaternary,
|
|
||||||
pitEmptyPitAnimateColor: colorSpecial,
|
|
||||||
pitLastStoneInBankPitAnimateColor: colorSpecial,
|
|
||||||
pitGetRivalStonePitAnimateColor: colorSpecial,
|
|
||||||
};
|
|
||||||
|
|
||||||
export default darkGreyTheme;
|
|
||||||
@ -1,28 +1,28 @@
|
|||||||
import { Theme } from "./Theme";
|
import { Theme } from "./Theme";
|
||||||
|
|
||||||
// from https://colorhunt.co/palette/0f0e0e5412128b9a46eeeeee
|
// https://colorhunt.co/palette/525252414141313131ec625f
|
||||||
const colors = {
|
const colors = {
|
||||||
primary: "#541212",
|
primary: "#414141",
|
||||||
secondary: "#0F0E0E",
|
secondary: "#313131",
|
||||||
tertiary: "#8B9A46",
|
tertiary: "#606060",
|
||||||
quaternary: "#EEEEEE",
|
quaternary: "#808080",
|
||||||
};
|
};
|
||||||
|
|
||||||
const colorSpecial = "#990000";
|
const colorSpecial = "#337a44";
|
||||||
|
|
||||||
const darkTheme: Theme = {
|
const darkTheme: Theme = {
|
||||||
id: "2",
|
id: "2",
|
||||||
name: "Dark Theme",
|
name: "Dark Theme",
|
||||||
background: colors.primary,
|
background: colors.primary,
|
||||||
appBarBgColor: colors.secondary,
|
appBarBgColor: colors.secondary,
|
||||||
primary: colors.primary,
|
textColor: colors.primary,
|
||||||
primaryLight: colors.quaternary,
|
textLightColor: "#AAAAAA",
|
||||||
playerTurnColor: colors.secondary,
|
playerTurnColor: colors.tertiary,
|
||||||
boardColor: colors.secondary,
|
boardColor: colors.secondary,
|
||||||
holeColor: colors.tertiary,
|
holeColor: colors.tertiary,
|
||||||
pitSelectedColor: colors.tertiary,
|
pitSelectedColor: colors.secondary,
|
||||||
stoneColor: colors.primary,
|
stoneColor: "#252525",
|
||||||
stoneLightColor: colors.tertiary,
|
stoneLightColor: "#252525",
|
||||||
pitGameMoveAnimateColor: colors.quaternary,
|
pitGameMoveAnimateColor: colors.quaternary,
|
||||||
pitEmptyPitAnimateColor: colorSpecial,
|
pitEmptyPitAnimateColor: colorSpecial,
|
||||||
pitLastStoneInBankPitAnimateColor: colorSpecial,
|
pitLastStoneInBankPitAnimateColor: colorSpecial,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user