Lighten app background and fix taskfile descriptions

This commit is contained in:
Evan Simkowitz 2024-07-19 14:27:31 -07:00
parent ca0dc2624a
commit 36ff1608bb
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@ vars:
tasks: tasks:
electron:dev: electron:dev:
desc: Run the Electron application directly. desc: Run the Electron application via the Vite dev server (enables hot reloading).
cmds: cmds:
- yarn dev - yarn dev
deps: deps:
@ -20,7 +20,7 @@ tasks:
- build:wsh - build:wsh
electron:start: electron:start:
desc: Run the Electron application via the Vite dev server (enables hot reloading). desc: Run the Electron application directly.
cmds: cmds:
- yarn start - yarn start
deps: deps:

View File

@ -9,7 +9,7 @@ body {
flex-direction: row; flex-direction: row;
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
background-color: rgba(0, 0, 0, 0.2); background-color: var(--main-bg-color);
color: var(--main-text-color); color: var(--main-text-color);
font: var(--base-font); font: var(--base-font);
overflow: hidden; overflow: hidden;

View File

@ -6,7 +6,7 @@
--title-font-size: 18px; --title-font-size: 18px;
--secondary-text-color: rgb(195, 200, 194); --secondary-text-color: rgb(195, 200, 194);
--grey-text-color: #666; --grey-text-color: #666;
--main-bg-color: #000000; --main-bg-color: #454444;
--border-color: #333333; --border-color: #333333;
--base-font: normal 14px / normal "Inter", sans-serif; --base-font: normal 14px / normal "Inter", sans-serif;
--fixed-font: normal 12px / normal "Hack", monospace; --fixed-font: normal 12px / normal "Hack", monospace;