diff --git a/.drone.yml b/.drone.yml index 1c5dfe9..726651a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -37,3 +37,18 @@ steps: - docker stop Aberwyn || true - docker rm Aberwyn || true - docker run -d --name='Aberwyn' --net='br0' -e TZ='Europe/Berlin' -p 80:80 192.168.1.9:3000/tai/aberwyn/aberwyn:latest + +- name: notify-result + image: alpine + when: + status: + - success + - failure + commands: + - | + if [ "$DRONE_BUILD_STATUS" = "success" ]; then + curl -X POST http://192.168.1.196:8123/api/webhook/aberwyn_update_success + else + curl -X POST http://192.168.1.196:8123/api/webhook/aberwyn_update_failed + fi + diff --git a/Aberwyn/wwwroot/css/menu.css b/Aberwyn/wwwroot/css/menu.css index 5cc0f3b..0049059 100644 --- a/Aberwyn/wwwroot/css/menu.css +++ b/Aberwyn/wwwroot/css/menu.css @@ -20,7 +20,14 @@ --faint-text: #A0AAB5; --subtle-text: #D0DCE4; } - + [data-theme="dark"] h1, + [data-theme="dark"] .day-header { + color: #cef8fe; /* Ljusare blå för bättre kontrast */ + font-weight: 700; + } + [data-theme="dark"] .menu-header h1 { + color: #cef8fe; /* ljuslila i mörkt läge */ + } body { margin: 0; font-family: "Segoe UI", sans-serif;