From a4bbad204da3c79ce83c79767d644017d347431c Mon Sep 17 00:00:00 2001 From: Halit Aksoy Date: Wed, 13 Jul 2022 15:39:34 +0300 Subject: [PATCH] rename OldTheme to GreyTheme --- src/theme/{OldTheme.ts => GreyTheme.ts} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename src/theme/{OldTheme.ts => GreyTheme.ts} (75%) diff --git a/src/theme/OldTheme.ts b/src/theme/GreyTheme.ts similarity index 75% rename from src/theme/OldTheme.ts rename to src/theme/GreyTheme.ts index 9fb889e..322b026 100644 --- a/src/theme/OldTheme.ts +++ b/src/theme/GreyTheme.ts @@ -1,12 +1,12 @@ import { Theme } from "./Theme"; -const oldTheme: Theme = { - id: "0", - name: "Old Theme", +const greyTheme: Theme = { + id: "1", + name: "Grey Theme", background: "#EEEEEE", appBarBgColor: "#e4e4e4", - primary: "#4D606E", - primaryLight: "#EEEEEE", + textColor: "#4D606E", + textLightColor: "#EEEEEE", playerTurnColor: "#84b8a6", boardColor: "#4D606E", holeColor: "#D3D4D8", @@ -19,4 +19,4 @@ const oldTheme: Theme = { pitGetRivalStonePitAnimateColor: "#ff3d44", }; -export default oldTheme; +export default greyTheme;