From 6f6cfd8dcf6b9003ccf2728ee1f9183fdd2b5e3d Mon Sep 17 00:00:00 2001 From: Aashaan403 Date: Thu, 14 May 2026 18:02:31 +0000 Subject: [PATCH 1/2] The opacity of the image in the front-download box was way too low so increased it from 55% to 90% --- assets/sass/front-page.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/sass/front-page.scss b/assets/sass/front-page.scss index bc4225ca08..76413c3fd2 100644 --- a/assets/sass/front-page.scss +++ b/assets/sass/front-page.scss @@ -136,7 +136,7 @@ height: 80px; background: url('#{$baseurl}images/logos/downloads/Git-Icon-1788C.png') no-repeat; background-size: contain; - opacity: 0.55; + opacity: 0.90; } } From 6640e35c08d13d04a85749102fc24d95e222de22 Mon Sep 17 00:00:00 2001 From: Aashaan403 Date: Tue, 4 Aug 2026 22:32:18 +0000 Subject: [PATCH 2/2] Light Mode - 70% and Dark Mode : 90% opacity --- assets/sass/front-page.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/assets/sass/front-page.scss b/assets/sass/front-page.scss index 76413c3fd2..356ad1ce25 100644 --- a/assets/sass/front-page.scss +++ b/assets/sass/front-page.scss @@ -136,7 +136,10 @@ height: 80px; background: url('#{$baseurl}images/logos/downloads/Git-Icon-1788C.png') no-repeat; background-size: contain; - opacity: 0.90; + opacity: 0.70; + :root[data-theme="dark"] & { + opacity: 0.90; + } } }