Skip to content

Instantly share code, notes, and snippets.

@Tynael
Last active April 25, 2023 18:51
Show Gist options
  • Save Tynael/eef11489449eab03e0df1020d2b4dc07 to your computer and use it in GitHub Desktop.
Save Tynael/eef11489449eab03e0df1020d2b4dc07 to your computer and use it in GitHub Desktop.
VS Code Better Comments Extension - Color presets
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
]
@Tynael
Copy link
Author

Tynael commented Apr 25, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment