Skip to content

Commit 893f180

Browse files
committed
Update colors
1 parent 898f50f commit 893f180

File tree

4 files changed

+26
-11
lines changed

4 files changed

+26
-11
lines changed

Diff for: components/Links/TopLevelNavItem.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const TopLevelNavItem: React.FunctionComponent<React.PropsWithChildren<IT
1313
<Link
1414
href={href}
1515
title={title}
16-
className="text-base font-medium text-whisper-500 hover:text-whisper-900"
16+
className="text-base font-medium text-whisper-500 hover:text-teal-500"
1717
rel={blank ? "noopener noreferrer" : ""}
1818
target={blank ? "_blank" : "_self"}
1919
>

Diff for: components/Navigation/SocialNavigation.tsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as React from 'react';
22
import { navigation } from '../../constants/navigation';
33
import { Stargazers } from '../GitHub/Stargazers';
44

5-
export interface ISocialNavigationProps {}
5+
export interface ISocialNavigationProps { }
66

77
export const SocialNavigation: React.FunctionComponent<ISocialNavigationProps> = (props: React.PropsWithChildren<ISocialNavigationProps>) => {
88
return (
@@ -15,19 +15,19 @@ export const SocialNavigation: React.FunctionComponent<ISocialNavigationProps> =
1515
<ul className='flex justify-center gap-6'>
1616
{navigation.social.map((item) => (
1717
<li key={item.name}>
18-
<a
19-
title={item.title}
20-
href={item.href}
21-
className="text-base font-medium text-whisper-500 hover:text-whisper-900"
22-
target="_blank"
18+
<a
19+
title={item.title}
20+
href={item.href}
21+
className="text-base font-medium text-whisper-500 hover:text-teal-500"
22+
target="_blank"
2323
rel={`noopener noreferrer`}>
2424
<span className="sr-only">{item.name}</span>
2525
<item.icon className="h-6 w-6" aria-hidden="true" />
2626
</a>
2727
</li>
2828
))}
2929
</ul>
30-
30+
3131
<Stargazers />
3232
</nav>
3333
);

Diff for: components/Page/Footer.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ export const Footer: React.FunctionComponent<IFooterProps> = (props: React.Props
2929
<nav className="-mx-5 -my-2 flex flex-wrap justify-center" aria-label="Footer">
3030
{navigation.main.map((item) => (
3131
<div key={item.name} className="px-5 py-2">
32-
<a href={item.href} title={item.title} className="text-base text-gray-400 hover:text-gray-500">
32+
<a href={item.href} title={item.title} className="text-base text-gray-400 hover:text-teal-500">
3333
{item.name}
3434
</a>
3535
</div>
3636
))}
3737
{navigation.footer.map((item) => (
3838
<div key={item.name} className="px-5 py-2">
39-
<a href={item.href} title={item.title} className="text-base text-gray-400 hover:text-gray-500">
39+
<a href={item.href} title={item.title} className="text-base text-gray-400 hover:text-teal-500">
4040
{item.name}
4141
</a>
4242
</div>
@@ -60,7 +60,7 @@ export const Footer: React.FunctionComponent<IFooterProps> = (props: React.Props
6060

6161
<div className="mt-8 flex justify-center space-x-6">
6262
{navigation.social.map((item) => (
63-
<a key={item.name} title={item.title} href={item.href} className="text-gray-400 hover:text-gray-500" target="_blank" rel={`noopener noreferrer`}>
63+
<a key={item.name} title={item.title} href={item.href} className="text-gray-400 hover:text-teal-500" target="_blank" rel={`noopener noreferrer`}>
6464
<span className="sr-only">{item.name}</span>
6565
<item.icon className="h-6 w-6" aria-hidden="true" />
6666
</a>

Diff for: content/changelog/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Change Log
22

3+
## [10.6.0] - 2024-11-06 - [Release notes](https://beta.frontmatter.codes/updates/v10.6.0)
4+
5+
### 🎨 Enhancements
6+
7+
- [#878](https://github.com/estruyf/vscode-front-matter/issues/878): Allow the `select all` button to work on other pages when there is a selection present
8+
- [#882](https://github.com/estruyf/vscode-front-matter/issues/882): Dynamic evaluation of the `node` executable path
9+
- [#884](https://github.com/estruyf/vscode-front-matter/issues/884): Hide WYSIWYG actions when the file is in git diff mode
10+
11+
### 🐞 Fixes
12+
13+
- [#859](https://github.com/estruyf/vscode-front-matter/issues/859): Fix label in the data view dropdown field
14+
- [#876](https://github.com/estruyf/vscode-front-matter/issues/876): Fix snippet type on the snippet card
15+
- [#879](https://github.com/estruyf/vscode-front-matter/issues/879): Fix for auto updating last modified date on save
16+
- [#885](https://github.com/estruyf/vscode-front-matter/issues/885): Fix content relationship for none i18n content
17+
318
## [10.5.1] - 2024-10-23
419

520
### 🎨 Enhancements

0 commit comments

Comments
 (0)