diff options
author | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-07-14 12:59:20 +0200 |
---|---|---|
committer | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-08-21 10:49:58 +0200 |
commit | d6fb961a945f0d31f562f2945bc3a5b1ca4aceb1 (patch) | |
tree | 2fe1fe0b2551b69399dff466d4ed1b39f0b44dba /apps/theming/css | |
parent | f3a3ece9cc423634c616ce4ef1639e5e1533eded (diff) | |
download | nextcloud-server-d6fb961a945f0d31f562f2945bc3a5b1ca4aceb1.tar.gz nextcloud-server-d6fb961a945f0d31f562f2945bc3a5b1ca4aceb1.zip |
Change color of error and success
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'apps/theming/css')
-rw-r--r-- | apps/theming/css/default.css | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/apps/theming/css/default.css b/apps/theming/css/default.css index 66c355f1492..05e21e79b96 100644 --- a/apps/theming/css/default.css +++ b/apps/theming/css/default.css @@ -17,22 +17,22 @@ --color-text-light: #222222; --color-text-lighter: #767676; --color-scrollbar: rgba(34,34,34, .15); - --color-error: #e9322d; - --color-error-rgb: 233,50,45; - --color-error-hover: #ed5a56; - --color-error-text: #e7201b; + --color-error: #d91812; + --color-error-rgb: 217,24,18; + --color-error-hover: #dd342f; + --color-error-text: #c61610; --color-warning: #c28900; --color-warning-rgb: 194,137,0; --color-warning-hover: #cea032; --color-warning-text: #996c00; - --color-success: #3fa857; - --color-success-rgb: 63,168,87; - --color-success-hover: #65b978; - --color-success-text: #318344; - --color-info: #006aa3; - --color-info-rgb: 0,106,163; - --color-info-hover: #3287b5; - --color-info-text: #006aa3; + --color-success: #2d7b41; + --color-success-rgb: 45,123,65; + --color-success-hover: #448955; + --color-success-text: #286c39; + --color-info: #0071ad; + --color-info-rgb: 0,113,173; + --color-info-hover: #197fb5; + --color-info-text: #006499; --color-loading-light: #cccccc; --color-loading-dark: #444444; --color-box-shadow-rgb: 77,77,77; |