Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/landing/src/components/Header/Discord.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function Discord() {
>
<svg
className={css({
color: '$text',
color: '$title',
})}
fill="none"
height="24"
Expand Down
2 changes: 1 addition & 1 deletion apps/landing/src/components/Header/Github.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export function Github() {
return (
<svg
className={css({
color: '$text',
color: '$title',
})}
fill="none"
height="24"
Expand Down
4 changes: 2 additions & 2 deletions apps/landing/src/components/Header/Kakao.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function Kakao() {
>
<svg
className={css({
color: '$text',
color: '$title',
})}
fill="none"
height="24"
Expand All @@ -23,7 +23,7 @@ export function Kakao() {
<path
clipRule="evenodd"
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"
fill="#1A1A1A"
fill="currentColor"
fillRule="evenodd"
/>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion apps/landing/src/components/Header/ThemeSwitch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function ThemeSwitch() {
return (
<Box
boxSize="24px"
color="$text"
color="$title"
cursor="pointer"
onClick={() => {
setTheme(getTheme() === 'dark' ? 'light' : 'dark')
Expand Down