From 3d896b59498891ea82a35201fae4276c43d251a8 Mon Sep 17 00:00:00 2001 From: Matthias Metelka <62722460+kleinerpirat@users.noreply.github.com> Date: Fri, 2 Sep 2022 18:57:36 +0200 Subject: [PATCH] Tweak inset shadow color --- sass/_colors.scss | 2 +- sass/_vars.scss | 2 +- ts/editor/EditingArea.svelte | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sass/_colors.scss b/sass/_colors.scss index 22e2e90a1..f4431a852 100644 --- a/sass/_colors.scss +++ b/sass/_colors.scss @@ -10,7 +10,7 @@ $colors: ( 0: #f4f4f4, 1: #efefef, 2: #e3e3e3, - 3: #d1d1d1, + 3: #cacaca, 4: #919191, 5: #3a3a3a, 6: #2d2d2d, diff --git a/sass/_vars.scss b/sass/_vars.scss index aa10ac5e7..a4415a1f2 100644 --- a/sass/_vars.scss +++ b/sass/_vars.scss @@ -80,7 +80,7 @@ $vars: ( dark: palette(gray, 9), ), inset: ( - light: palette(gray, 3), + light: palette(gray, 5), dark: palette(gray, 9), ), focus: ( diff --git a/ts/editor/EditingArea.svelte b/ts/editor/EditingArea.svelte index f03f55494..eea4b45b1 100644 --- a/ts/editor/EditingArea.svelte +++ b/ts/editor/EditingArea.svelte @@ -202,7 +202,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html left: 0; pointer-events: none; border-radius: 5px; - border: 1px solid var(--border-subtle); + border: 1px solid var(--border-default); transition: box-shadow 80ms cubic-bezier(0.33, 1, 0.68, 1); box-shadow: inset 0 0 1px 0 var(--shadow-inset); }