From bed1a1cd3a714f8a4599ef648b4826d4d85f11dc Mon Sep 17 00:00:00 2001 From: atsuyaw Date: Sun, 26 Nov 2023 15:36:29 +0900 Subject: [PATCH] fix connection line color --- v4/assets/sass/theme.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v4/assets/sass/theme.scss b/v4/assets/sass/theme.scss index 199f84d6f..2343a9139 100644 --- a/v4/assets/sass/theme.scss +++ b/v4/assets/sass/theme.scss @@ -95,7 +95,7 @@ $logo-color: {{ .Param "logoColor" | default "darken(#f1f1f1, 60)" }}; $bubble-color: {{ .Param "bubbleColor" | default "$logo-color" }}; $bubble-background-color: {{ .Param "bubbleBackgroundColor" | default "#373737" }}; $bubble-hover-color: {{ .Param "bubbleHoverColor" | default "$highlight-color" }}; -$connection-line-color: {{ .Param "connectionLineColor" | default "rgba(invert(#000),0.05)" }}; +$connection-line-color: {{ .Param "connectionLineColor" | default "#444" }}; $connection-dot-color: {{ .Param "connectionDotColor" | default "#444" }}; $article-background-color: {{ .Param "articleBackgroundColor" | default "#222" }};