From 36ff1608bbb5cdabd42c744649ed6d1105e5fa9e Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Fri, 19 Jul 2024 14:27:31 -0700 Subject: [PATCH] Lighten app background and fix taskfile descriptions --- Taskfile.yml | 4 ++-- frontend/app/app.less | 2 +- frontend/app/theme.less | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 269ff874b..d5fae1e07 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -11,7 +11,7 @@ vars: tasks: electron:dev: - desc: Run the Electron application directly. + desc: Run the Electron application via the Vite dev server (enables hot reloading). cmds: - yarn dev deps: @@ -20,7 +20,7 @@ tasks: - build:wsh electron:start: - desc: Run the Electron application via the Vite dev server (enables hot reloading). + desc: Run the Electron application directly. cmds: - yarn start deps: diff --git a/frontend/app/app.less b/frontend/app/app.less index 22f42cd3d..3f1439bbb 100644 --- a/frontend/app/app.less +++ b/frontend/app/app.less @@ -9,7 +9,7 @@ body { flex-direction: row; width: 100vw; height: 100vh; - background-color: rgba(0, 0, 0, 0.2); + background-color: var(--main-bg-color); color: var(--main-text-color); font: var(--base-font); overflow: hidden; diff --git a/frontend/app/theme.less b/frontend/app/theme.less index f8788adae..2ea471881 100644 --- a/frontend/app/theme.less +++ b/frontend/app/theme.less @@ -6,7 +6,7 @@ --title-font-size: 18px; --secondary-text-color: rgb(195, 200, 194); --grey-text-color: #666; - --main-bg-color: #000000; + --main-bg-color: #454444; --border-color: #333333; --base-font: normal 14px / normal "Inter", sans-serif; --fixed-font: normal 12px / normal "Hack", monospace;