From 9b654bd210284782e74e5afb997907b740eacb78 Mon Sep 17 00:00:00 2001 From: Etanarvazac Taseet Date: Sun, 19 Feb 2023 00:02:09 -0500 Subject: [PATCH 1/3] Added "Shadow" set (Red, Green, Blue, transparent BG) 3 additional themes sticking primarily to flat colors, which the exception of icons and border being slightly darker. All 3 themes also have transparent backgrounds that will show differently per-user via GiHub's own light and dark themes. Transparency should also still provide easy readability for both. --- themes/index.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/themes/index.js b/themes/index.js index 60825d132a119..284001d99a449 100644 --- a/themes/index.js +++ b/themes/index.js @@ -381,6 +381,27 @@ export const themes = { border_color: "e9d8d4", bg_color: "e9d8d4", }, + shadow_red: { + title_color: "9A0000", + text_color: "444", + icon_color: "4F0000", + border_color: "4F0000", + bg_color: "1116", + }, + shadow_green: { + title_color: "007A00", + text_color: "444", + icon_color: "003D00", + border_color: "003D00", + bg_color: "1116", + }, + shadow_blue: { + title_color: "00779A", + text_color: "444", + icon_color: "004450", + border_color: "004490", + bg_color: "1116", + }, }; export default themes; From 376eb45bb03605a9500963fb15182ddbadbfef47 Mon Sep 17 00:00:00 2001 From: Zohan Subhash Date: Sun, 19 Feb 2023 11:50:37 +0530 Subject: [PATCH 2/3] Test Just want to see if we can make the themes have a transparent background. --- themes/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/themes/index.js b/themes/index.js index 284001d99a449..6946a0cfec18b 100644 --- a/themes/index.js +++ b/themes/index.js @@ -386,21 +386,21 @@ export const themes = { text_color: "444", icon_color: "4F0000", border_color: "4F0000", - bg_color: "1116", + bg_color: "ffffff00", }, shadow_green: { title_color: "007A00", text_color: "444", icon_color: "003D00", border_color: "003D00", - bg_color: "1116", + bg_color: "ffffff00", }, shadow_blue: { title_color: "00779A", text_color: "444", icon_color: "004450", border_color: "004490", - bg_color: "1116", + bg_color: "ffffff00", }, }; From 032f5a0fd3ab7e829ac83035622c75abadb558a4 Mon Sep 17 00:00:00 2001 From: Etanarvazac Revorix Date: Tue, 7 Mar 2023 09:21:19 -0500 Subject: [PATCH 3/3] Shadows moved under Transparent --- themes/index.js | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/themes/index.js b/themes/index.js index 6946a0cfec18b..765ce6203fd8b 100644 --- a/themes/index.js +++ b/themes/index.js @@ -18,6 +18,27 @@ export const themes = { text_color: "417E87", bg_color: "ffffff00", }, + shadow_red: { + title_color: "9A0000", + text_color: "444", + icon_color: "4F0000", + border_color: "4F0000", + bg_color: "ffffff00", + }, + shadow_green: { + title_color: "007A00", + text_color: "444", + icon_color: "003D00", + border_color: "003D00", + bg_color: "ffffff00", + }, + shadow_blue: { + title_color: "00779A", + text_color: "444", + icon_color: "004450", + border_color: "004490", + bg_color: "ffffff00", + }, dark: { title_color: "fff", icon_color: "79ff97", @@ -381,27 +402,6 @@ export const themes = { border_color: "e9d8d4", bg_color: "e9d8d4", }, - shadow_red: { - title_color: "9A0000", - text_color: "444", - icon_color: "4F0000", - border_color: "4F0000", - bg_color: "ffffff00", - }, - shadow_green: { - title_color: "007A00", - text_color: "444", - icon_color: "003D00", - border_color: "003D00", - bg_color: "ffffff00", - }, - shadow_blue: { - title_color: "00779A", - text_color: "444", - icon_color: "004450", - border_color: "004490", - bg_color: "ffffff00", - }, }; export default themes;