Skip to content

Commit 88ac40b

Browse files
committed
fix(Header): light theme color
1 parent e6ac37a commit 88ac40b

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

assets/styles/base.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ $grayscale: (
2828
--txt-tertiary: rgba(255, 255, 255, 35%);
2929
--txt-support: rgba(255, 255, 255, 15%);
3030
--txt-black: rgba(0, 0, 0, 95%);
31+
--txt-white: rgba(255, 255, 255, 95%);
3132

3233
/* General */
3334
--brand: #924dff;
@@ -80,6 +81,7 @@ $grayscale: (
8081
--txt-tertiary: rgba(0, 0, 0, 40%);
8182
--txt-support: rgba(0, 0, 0, 20%);
8283
--txt-black: rgba(0, 0, 0, 95%);
84+
--txt-white: rgba(255, 255, 255, 95%);
8385

8486
/* General */
8587
--brand: #924dff;

assets/styles/text.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ $textColors: (
5555
"tertiary": "--txt-tertiary",
5656
"support": "--txt-support",
5757
"black": "--txt-black",
58+
"white": "--txt-white",
5859
"blue": "--blue",
5960
"orange": "--orange",
6061
"light-orange": "--light-orange",

components/TheHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const isActive = (link) => {
3535

3636
<NuxtLink to="/">
3737
<Flex align="center" gap="8" :class="$style.logo">
38-
<Icon name="logo" size="18" color="primary" />
38+
<Icon name="logo" size="18" color="white" />
3939
</Flex>
4040
</NuxtLink>
4141
</Flex>

0 commit comments

Comments
 (0)