Change Colors #65

Merged
jakob.scheid merged 16 commits from bug/colors into main 2026-05-23 02:05:53 +02:00
2 changed files with 7 additions and 1 deletions
Showing only changes of commit 1f67e95735 - Show all commits
@@ -64,7 +64,7 @@ searchQueryModel.value = props.searchQuery;
.search-results-error-message {
padding: var(--error-message-padding);
font-size: 18px;
box-shadow: 0px 0px 42px #cdcdcdb3;
box-shadow: 0px 0px 42px var(--gray-box-shadow);
border-radius: 28px;
text-align: center;
background-color: var(--light-bg);
+6
View File
@@ -77,6 +77,8 @@ limitations under the License.
--light-bg: var(--white);
--border: var(--white-d-3);
--gray-box-shadow: oklch(0.8 0.0001 271 / 0.7);
}
@media (prefers-color-scheme: dark) {
@@ -105,6 +107,8 @@ limitations under the License.
--light-bg: oklch(0.18 0 0);
--border: var(--black-l-6);
--gray-box-shadow: oklch(0.25 0.0001 271 / 0.7);
}
}
@@ -133,4 +137,6 @@ limitations under the License.
--light-bg: oklch(0.18 0 0);
--border: var(--black-l-6);
--gray-box-shadow: oklch(0.25 0.0001 271 / 0.7);
}