Change Colors #65

Merged
jakob.scheid merged 16 commits from bug/colors into main 2026-05-23 02:05:53 +02:00
4 changed files with 9 additions and 3 deletions
Showing only changes of commit 6d95601399 - Show all commits
@@ -51,7 +51,7 @@ const colorSchemeIconMapper = {
<style scoped> <style scoped>
.color-scheme-button { .color-scheme-button {
background: none; background: none;
border: 1.5px solid var(--dark-l-8); border: 1.5px solid var(--border);
border-radius: 50%; border-radius: 50%;
width: 36px; width: 36px;
height: 36px; height: 36px;
+1 -1
View File
@@ -54,7 +54,7 @@ const submitSearch = function () {
--padding-left: calc(var(--content-height) + var(--padding)); --padding-left: calc(var(--content-height) + var(--padding));
display: flex; display: flex;
align-items: center; align-items: center;
border: 1.5px solid var(--light-d-3); border: 1.5px solid var(--border);
box-shadow: 0 0px 32px rgba(69, 98, 190, 0.25); box-shadow: 0 0px 32px rgba(69, 98, 190, 0.25);
border-radius: calc(var(--content-height) * 0.5 + var(--submit-button-padding-y) + var(--padding)); border-radius: calc(var(--content-height) * 0.5 + var(--submit-button-padding-y) + var(--padding));
padding: var(--padding); padding: var(--padding);
@@ -73,7 +73,7 @@ searchQueryModel.value = props.searchQuery;
display: flex; display: flex;
justify-content: center; justify-content: center;
flex-direction: column; flex-direction: column;
outline: 1px solid var(--light-d-2); outline: 1px solid var(--border);
} }
@media (max-width: 48rem) { @media (max-width: 48rem) {
+6
View File
@@ -75,6 +75,8 @@ limitations under the License.
--dark-bg: var(--black-l-2); --dark-bg: var(--black-l-2);
--light-bg: var(--white); --light-bg: var(--white);
--border: var(--white-d-3);
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
@@ -101,6 +103,8 @@ limitations under the License.
--dark-bg: var(--white); --dark-bg: var(--white);
--light-bg: oklch(0.18 0 0); --light-bg: oklch(0.18 0 0);
--border: var(--black-l-6);
} }
} }
@@ -127,4 +131,6 @@ limitations under the License.
--dark-bg: var(--white); --dark-bg: var(--white);
--light-bg: oklch(0.18 0 0); --light-bg: oklch(0.18 0 0);
--border: var(--black-l-6);
} }