Skip to content

Commit

Permalink
Code Light: Darken Markdown headings to make them more noticeable
Browse files Browse the repository at this point in the history
  • Loading branch information
sapegin committed Jul 14, 2024
1 parent 6d979ab commit 34e1421
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
4 changes: 4 additions & 0 deletions themes/VSCode/SquirrelsongLight/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.2.8

- Darken Markdown headings to make them more noticeable.

## 3.2.6

- Add colors for pull request badges.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -376,14 +376,23 @@
"widget.shadow": "#4c4b4e11"
},
"tokenColors": [
{
"scope": [
// Markdown headings: #, ##, etc.
"entity.name.section.markdown"
],
"settings": {
"foreground": "#4c4b4e",
"fontStyle": "bold"
}
},
{
"scope": [
// JavaScript / TypeScript
"storage.type.class.jsdoc",
// HTML entities: &
"constant.character",
// Markdown
"entity.name.section.markdown",
"meta.separator.markdown",
"markup.heading",
"markup.heading.markdown",
Expand Down

0 comments on commit 34e1421

Please sign in to comment.