Skip to content

Commit 12b4b8e

Browse files
authored
Merge pull request #2231 from OWASP/copilot/fix-2230
Fix text-muted visibility in dark mode on welcome page
2 parents ca8600f + 4aa613b commit 12b4b8e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/main/resources/static/css/dark.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,7 @@
108108
/*background-color: var(--bs-gray-600);*/
109109
border-color: white;
110110
}
111+
112+
.dark-mode .text-muted {
113+
color: var(--bs-gray-300) !important;
114+
}

static-site/pr-2125/pages/welcome.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -474,6 +474,10 @@ <h6 class="alert-heading">🚀 Ready to Start?</h6>
474474
border-color: white;
475475
}
476476

477+
.dark-mode .text-muted {
478+
color: var(--bs-gray-300) !important;
479+
}
480+
477481

478482

479483
/* Bootstrap CSS (minimal) */

0 commit comments

Comments
 (0)