Skip to content

Commit

Permalink
style: change the color name
Browse files Browse the repository at this point in the history
  • Loading branch information
atsuyaw committed Nov 14, 2023
1 parent 2f604ca commit 66a6d7c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions v4/assets/sass/_articles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ article {
content: "";
display: block;
border: 11px solid transparent;
border-right-color: $con-line-colorB;
border-right-color: $connection-dot-color;
position: absolute;
top: 49px;
left: -22px;
Expand All @@ -21,7 +21,7 @@ article {
content: "";
display: block;
border: 10px solid transparent;
border-right-color: #con-line-colorA;
border-right-color: $connection-line-color;
position: absolute;
top: 50px;
left: -20px;
Expand Down
4 changes: 2 additions & 2 deletions v4/assets/sass/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
bottom: 50px;
width: 2px;
height: 100%;
background: $con-line-colorA;
background: $connection-line-color;
z-index: 1;
}

Expand All @@ -22,7 +22,7 @@
bottom: 32px;
height: 20px;
width: 20px;
background: $con-line-colorB;
background: $connection-dot-color;
border-radius: 999px;
z-index: 10;
}
Expand Down
4 changes: 2 additions & 2 deletions v4/assets/sass/dark-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ $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" }};
$con-line-colorA: {{ .Param "conLineColorA" | default "rgba(invert(#000),0.05)" }};
$con-line-colorB: {{ .Param "conLineColorB" | default "#444" }};
$connection-line-color: {{ .Param "connectionLineColor" | default "rgba(invert(#000),0.05)" }};
$connection-dot-color: {{ .Param "connectionDotColor" | default "#444" }};

$article-background-color: {{ .Param "articleBackgroundColor" | default "#222" }};
$meta-text-color: {{ .Param "metaTextColor" | default "darken(#f1f1f1,40)" }};
Expand Down
4 changes: 2 additions & 2 deletions v4/assets/sass/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ $logo-color: {{ .Param "logoColor" | default "darken($page-background-color, 1)"
$bubble-color: {{ .Param "bubbleColor" | default "#fff" }};
$bubble-background-color: {{ .Param "bubbleBackgroundColor" | default "#ccc" }};
$bubble-hover-color: {{ .Param "bubbleHoverColor" | default "$highlight-color" }};
$con-line-colorA: {{ .Param "conLineColorA" | default "rgba(#000,0.05)" }};
$con-line-colorB: {{ .Param "conLineColorB" | default "#ddd" }};
$connection-line-color: {{ .Param "connectionLineColor" | default "rgba(#000,0.05)" }};
$connection-dot-color: {{ .Param "connectionDotColor" | default "#ddd" }};

$article-background-color: {{ .Param "articleBackgroundColor" | default "#fff" }};
$meta-text-color: {{ .Param "metaTextColor" | default "#999" }};
Expand Down

0 comments on commit 66a6d7c

Please sign in to comment.