From e1ad802309d7be2d9f372b5dfe761a73c743a711 Mon Sep 17 00:00:00 2001 From: LeonN534 Date: Sun, 26 May 2024 13:17:30 -0500 Subject: [PATCH 1/3] Added dark_minimalist theme to themes.ts --- src/const/themes.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/const/themes.ts b/src/const/themes.ts index f5f09acd..5c13fdd2 100644 --- a/src/const/themes.ts +++ b/src/const/themes.ts @@ -288,7 +288,12 @@ themes.set("jetbrains_new_dark", { titleColor: "#cf8e6d", badgeColor: "#1e1f22", }); - +themes.set("dark_minimalist", { + backgroundColor: "#2b2a33", + borderColor: "#757480", + titleColor: "#85bef7", + badgeColor: "#211f27", +}); /** * Searches for the specified theme in the themes map. * If the theme is not present in the map, then From d7b18d10876d27e934c44fc7fe12bf891e680a29 Mon Sep 17 00:00:00 2001 From: LeonN534 Date: Sun, 26 May 2024 13:21:12 -0500 Subject: [PATCH 2/3] Added dark_minimalist theme to THEMES.md --- docs/THEMES.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/THEMES.md b/docs/THEMES.md index feebd429..5a2232db 100644 --- a/docs/THEMES.md +++ b/docs/THEMES.md @@ -330,4 +330,11 @@ If you have a cool new theme in mind, or want to add one for yourself and others + + + dark_minimalist + + + + From fff5be38ac5f404bdab87ff9d7cbb2fbab6c3695 Mon Sep 17 00:00:00 2001 From: LeonN534 Date: Sun, 26 May 2024 14:29:58 -0500 Subject: [PATCH 3/3] Fixed colors --- docs/THEMES.md | 4 ++-- src/const/themes.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/THEMES.md b/docs/THEMES.md index 5a2232db..9da8223d 100644 --- a/docs/THEMES.md +++ b/docs/THEMES.md @@ -334,7 +334,7 @@ If you have a cool new theme in mind, or want to add one for yourself and others dark_minimalist - + - + \ No newline at end of file diff --git a/src/const/themes.ts b/src/const/themes.ts index 5c13fdd2..df5842ae 100644 --- a/src/const/themes.ts +++ b/src/const/themes.ts @@ -289,10 +289,10 @@ themes.set("jetbrains_new_dark", { badgeColor: "#1e1f22", }); themes.set("dark_minimalist", { - backgroundColor: "#2b2a33", - borderColor: "#757480", + backgroundColor: "#211f27", + borderColor: "#b9b9c0", titleColor: "#85bef7", - badgeColor: "#211f27", + badgeColor: "#3b3a44", }); /** * Searches for the specified theme in the themes map.