Skip to content

Commit

Permalink
Update resume and kbar elements color (#138)
Browse files Browse the repository at this point in the history
* style: resume title tooltip icon color

* style: kbar elements color
  • Loading branch information
hyesungoh authored Apr 20, 2023
1 parent 88f1572 commit 9f2dab1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions apps/resume/src/components/TitleTooltip/TitleTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ function TooltipContent({ githubLink, otherLink }: TooltipProps) {
<Div>
{githubLink && (
<a href={githubLink} rel="noreferrer" target="_blank">
<Button auto light icon={<Icon name="GithubLine" fill={theme.colors.accents4.value} />} />
<Button auto light icon={<Icon name="GithubLine" fill={theme.colors.accents6.value} />} />
</a>
)}
{otherLink && (
<a href={otherLink} rel="noreferrer" target="_blank">
<Button auto light icon={<Icon name="Link" fill={theme.colors.accents4.value} />} />
<Button auto light icon={<Icon name="Link" fill={theme.colors.accents6.value} />} />
</a>
)}
</Div>
Expand Down
6 changes: 3 additions & 3 deletions packages/core/components/Kbar/Result.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function KBarResult() {
{item.icon && (
<Icon
name={item.icon as IconNameType}
fill={active ? theme?.colors.primary.value : theme?.colors.accents4.value}
fill={active ? theme?.colors.primary.value : theme?.colors.accents6.value}
style={{ transition: 'fill 0.3s', marginRight: '12px', flexShrink: '0' }}
/>
)}
Expand All @@ -41,7 +41,7 @@ const B = styled.b<{ theme: NextUITheme | undefined }>`
flex-direction: column;
align-items: flex-start;
font-size: 12px;
color: ${({ theme }) => theme.colors.accents4.value};
color: ${({ theme }) => theme.colors.accents6.value};
padding: 4px 16px;
`;

Expand Down Expand Up @@ -89,5 +89,5 @@ const Title = styled.span`

const SubTitle = styled.span<{ theme: NextUITheme | undefined }>`
font-size: 12px;
color: ${({ theme }) => theme.colors.accents4.value};
color: ${({ theme }) => theme.colors.accents6.value};
`;
2 changes: 1 addition & 1 deletion packages/core/components/Kbar/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const Input = styled.input<{ theme: NextUITheme | undefined }>`
}
&::placeholder {
color: ${({ theme }) => theme.colors.accents4.value};
color: ${({ theme }) => theme.colors.accents6.value};
transition: opacity 0.25s ease 0s;
-moz-transition: opacity 0.25s ease 0s;
-ms-transition: opacity 0.25s ease 0s;
Expand Down

2 comments on commit 9f2dab1

@vercel
Copy link

@vercel vercel bot commented on 9f2dab1 Apr 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

comet-land-resume – ./apps/resume

comet-land-resume-git-main-hyesungoh.vercel.app
comet-land-resume.vercel.app
comet-land-resume-hyesungoh.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 9f2dab1 Apr 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

comet-land-blog – ./apps/blog

comet-land-blog.vercel.app
comet-land-blog-git-main-hyesungoh.vercel.app
comet-land-blog-hyesungoh.vercel.app

Please sign in to comment.