From d2589333f6500bdaefa9ece322ffae7b3f362a84 Mon Sep 17 00:00:00 2001 From: Aaron Riedel Date: Mon, 23 Oct 2023 16:28:29 +0200 Subject: [PATCH] set default theme --- data/themes.json | 16 ++++++++-------- src/lib/useTheme.tsx | 8 ++++---- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/data/themes.json b/data/themes.json index 4cebdb0..203406e 100644 --- a/data/themes.json +++ b/data/themes.json @@ -1,11 +1,11 @@ { "themes": [ { - "label": "Classic", + "label": "Chalk", "value": 0, - "mainColor": "#000000", - "accentColor": "#1e272e", - "backgroundColor": "#ffffff" + "mainColor": "#aabbc3", + "accentColor": "#ff869a", + "backgroundColor": "#263238" }, { "label": "Dark", @@ -92,11 +92,11 @@ "backgroundColor": "#f5f5f5" }, { - "label": "Chalk", + "label": "Classic", "value": 13, - "mainColor": "#aabbc3", - "accentColor": "#ff869a", - "backgroundColor": "#263238" + "mainColor": "#000000", + "accentColor": "#1e272e", + "backgroundColor": "#ffffff" }, { "label": "Paper", diff --git a/src/lib/useTheme.tsx b/src/lib/useTheme.tsx index cd7b56e..1f58404 100644 --- a/src/lib/useTheme.tsx +++ b/src/lib/useTheme.tsx @@ -11,11 +11,11 @@ export interface IThemeDataProps { } export const defaultTheme: IThemeProps = { - label: "Classic", + label: "Chalk", value: 0, - mainColor: "#000000", - accentColor: "#1e272e", - backgroundColor: "#ffffff", + mainColor: "#aabbc3", + accentColor: "#ff869a", + backgroundColor: "#263238", }; /**