rename OldTheme to GreyTheme

This commit is contained in:
Halit Aksoy 2022-07-13 15:39:34 +03:00
parent fd228205e3
commit a4bbad204d

View File

@ -1,12 +1,12 @@
import { Theme } from "./Theme"; import { Theme } from "./Theme";
const oldTheme: Theme = { const greyTheme: Theme = {
id: "0", id: "1",
name: "Old Theme", name: "Grey Theme",
background: "#EEEEEE", background: "#EEEEEE",
appBarBgColor: "#e4e4e4", appBarBgColor: "#e4e4e4",
primary: "#4D606E", textColor: "#4D606E",
primaryLight: "#EEEEEE", textLightColor: "#EEEEEE",
playerTurnColor: "#84b8a6", playerTurnColor: "#84b8a6",
boardColor: "#4D606E", boardColor: "#4D606E",
holeColor: "#D3D4D8", holeColor: "#D3D4D8",
@ -19,4 +19,4 @@ const oldTheme: Theme = {
pitGetRivalStonePitAnimateColor: "#ff3d44", pitGetRivalStonePitAnimateColor: "#ff3d44",
}; };
export default oldTheme; export default greyTheme;