Skip to content

Commit 2b01948

Browse files
hichemfantarCakeLancelot
authored andcommitted
Improved color consistency and add slight glow to logo in dark mode
1 parent 7e6e3a2 commit 2b01948

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

Diff for: assets/scss/common/_custom.scss

+4
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@
1818
.image-hover:hover {
1919
opacity: 1;
2020
}
21+
[data-bs-theme="dark"] .image-hover {
22+
opacity: 0.4;
23+
}
24+

Diff for: assets/scss/common/_variables-custom.scss

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
// Put your custom SCSS variables here
22

33
// Light mode
4-
$primary: #50dc51;
5-
$secondary: green;
6-
$focus: #50dc51;
7-
$link-color: #50dc51;
8-
$button-color: #50dc51;
9-
$button-hover-color: #50dc51;
4+
$primary: #4d7c0f;
5+
$secondary: #4d7c0f;
6+
$focus: #4d7c0f;
7+
$link-color: #4d7c0f;
8+
$button-color: #4d7c0f;
9+
$button-hover-color: #4d7c0f;
1010
$success: green;
1111
$info: blue;
1212
$warning: yellow;
1313
$danger: red;
1414

1515
// Dark mode
1616
$primary-dark: #50dc51;
17-
$secondary-dark: green;
17+
$secondary-dark: #50dc51;
1818
$focus-dark: #50dc51;
1919
$link-color-dark: #50dc51;
2020
$button-color-dark: #50dc51;

0 commit comments

Comments
 (0)