From b6ed257a6a17416523cb6685653324f2c97270ba Mon Sep 17 00:00:00 2001 From: gnezim Date: Mon, 20 Apr 2026 06:35:33 +0300 Subject: [PATCH] ErrorPage: use design tokens for code/input/focus colors --- src/ui/errors/ErrorPage.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ui/errors/ErrorPage.scss b/src/ui/errors/ErrorPage.scss index 531a95ef..a7a81786 100644 --- a/src/ui/errors/ErrorPage.scss +++ b/src/ui/errors/ErrorPage.scss @@ -49,7 +49,7 @@ &__code { font-size: 8rem; - color: #a3a3a3; + color: colors.$light-gray; } &__title { @@ -111,8 +111,8 @@ width: 100%; height: 2.25rem; padding: 0.25rem 0.5rem; - border: 1px solid #dfdfdf; - background: #fff; + border: 1px solid colors.$border-input; + background: colors.$white; -webkit-appearance: none; -moz-appearance: none; appearance: none; @@ -124,8 +124,8 @@ left: 0; &:focus { - border: 1px solid #b7d3f3; - box-shadow: 0 0.0625rem 0.1875rem #cad6e5; + border: 1px solid colors.$border-blue; + box-shadow: 0 0.0625rem 0.1875rem colors.$border-blue; } } }