Skip to content
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export const TagsFilterPanel = ({
title: 'Learn how to add tags',
icon: <DocumentIcon />,
right: <ShareAltIcon />,
href: api.getDocsUrl({ subpath: 'writing-stories/tags#filtering-by-custom-tags' }),
href: api.getDocsUrl({ subpath: 'writing-stories/tags#custom-tags' }),
},
]);
}
Expand Down
4 changes: 2 additions & 2 deletions code/core/src/theming/convert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ const lightSyntaxColors = {
red1: '#A31515',
red2: '#9a050f',
red3: '#800000',
red4: '#ff0000',
red4: '#D24400',
gray1: '#393A34',
cyan1: '#36acaa',
cyan2: '#2B91AF',
cyan2: '#24659F',
Copy link
Member

Choose a reason for hiding this comment

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

Why were these colors changed?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Hi @yannbf, that's a great question!

You are seeing the color changes because they were merged into my feature branch from a separate, earlier PR that focused on style.

The changes themselves were made to refine the red and cyan syntax colors in the light theme to improve contrast and overall readability for our users, as mentioned in the summary.

This PR's main purpose is just the documentation link fix in the TagsFilterPanel.tsx file (the 7d1679f commit). Sorry for the confusion!

blue1: '#0000ff',
blue2: '#00009f',
};
Expand Down