fix(style): improve search placeholder contrast

Targets the Starlight search button and dialog input placeholder to use the primary colour variable for readable contrast in both light and dark modes.
This commit is contained in:
2026-03-03 17:01:37 -08:00
committed by Naomi Carrigan
parent 1396212d2e
commit 1224d47218
+9
View File
@@ -150,6 +150,15 @@ starlight-theme-select > label {
color: var(--primary-color) !important;
}
site-search button[data-open-modal] {
color: var(--primary-color) !important;
}
#starlight__search input::placeholder {
color: var(--primary-color) !important;
opacity: 0.8;
}
#extra-footer-content {
display: flex;
flex-direction: row;