diff --git a/src/webapp/src/App.vue b/src/webapp/src/App.vue index 56484d5..7dc01ea 100644 --- a/src/webapp/src/App.vue +++ b/src/webapp/src/App.vue @@ -35,6 +35,7 @@ --overlay-color: rgba(0, 0, 0, 0.7); --inactive-color: rgb(100, 100, 100); --highlight-backdrop: rgb(143, 134, 192); + --hint-color: rgb(174, 210, 221); --PI: 3.14159265358979; } @@ -50,21 +51,23 @@ --overlay-color: rgba(104, 104, 104, 0.575); --inactive-color: rgb(190, 190, 190); --highlight-backdrop: rgb(85, 63, 207); + --hint-color: rgb(88, 91, 110); } @media ( prefers-color-scheme: dark ) { :root { --primary-color: white; - --popup-color: rgb(58, 58, 58); --accent-background: rgb(56, 56, 112); --secondary-color: white; --background-color: rgb(32, 32, 32); + --popup-color: rgb(58, 58, 58); --accent-color: #42b983; --hover-color: rgb(83, 83, 83); --accent-background-hover: #4380a8; --overlay-color: rgba(104, 104, 104, 0.575); --inactive-color: rgb(190, 190, 190); --highlight-backdrop: rgb(85, 63, 207); + --hint-color: rgb(88, 91, 110); } } diff --git a/src/webapp/src/components/notifications/popups.vue b/src/webapp/src/components/notifications/popups.vue index 8d4c328..53914cc 100644 --- a/src/webapp/src/components/notifications/popups.vue +++ b/src/webapp/src/components/notifications/popups.vue @@ -2,27 +2,34 @@