Skip to content

Commit ee6c8a3

Browse files
authored
Merge pull request #206 from forestream/fix-landing
Fix kakao icon color
2 parents 246001b + caffa57 commit ee6c8a3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

apps/landing/src/components/Header/Discord.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export function Discord() {
1212
>
1313
<svg
1414
className={css({
15-
color: '$text',
15+
color: '$title',
1616
})}
1717
fill="none"
1818
height="24"

apps/landing/src/components/Header/Github.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function Github() {
44
return (
55
<svg
66
className={css({
7-
color: '$text',
7+
color: '$title',
88
})}
99
fill="none"
1010
height="24"

apps/landing/src/components/Header/Kakao.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export function Kakao() {
1212
>
1313
<svg
1414
className={css({
15-
color: '$text',
15+
color: '$title',
1616
})}
1717
fill="none"
1818
height="24"
@@ -23,7 +23,7 @@ export function Kakao() {
2323
<path
2424
clipRule="evenodd"
2525
d="M12.0001 3C5.92457 3 1 6.76292 1 11.4039C1 14.2901 2.90472 16.8346 5.80521 18.348L4.58483 22.7571C4.477 23.1467 4.92752 23.4572 5.27347 23.2314L10.623 19.7396C11.0745 19.7827 11.5332 19.8078 12.0001 19.8078C18.0751 19.8078 23 16.045 23 11.4039C23 6.76292 18.0751 3 12.0001 3Z"
26-
fill="#1A1A1A"
26+
fill="currentColor"
2727
fillRule="evenodd"
2828
/>
2929
</svg>

apps/landing/src/components/Header/ThemeSwitch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export function ThemeSwitch() {
66
return (
77
<Box
88
boxSize="24px"
9-
color="$text"
9+
color="$title"
1010
cursor="pointer"
1111
onClick={() => {
1212
setTheme(getTheme() === 'dark' ? 'light' : 'dark')

0 commit comments

Comments
 (0)