127 lines
4.4 KiB
JavaScript
127 lines
4.4 KiB
JavaScript
/*
|
|
VS-Code Extension: Colorful Comments
|
|
|
|
This Plugin normally only has:
|
|
! Red (!)
|
|
? Blue (?)
|
|
* Green (*)
|
|
^ Yellow (^)
|
|
& Pink (&)
|
|
~ Purple (~)
|
|
todo Mustard (todo)
|
|
// Grey (//)
|
|
but was customized by me for better and more colors.
|
|
|
|
URL: https://marketplace.visualstudio.com/items?itemName=ParthR2031.colorful-comments
|
|
|
|
|
|
My Custom Colors:
|
|
! HEX: #FF2D00, Color: RED, Background: NONE, ST: false > file paths and module headers
|
|
? HEX: #0076FF, Color: BLUE, Background: NONE, ST: false > general information / explanations
|
|
?? HEX: #00CCAA, Color: TURQUOISE, Background: NONE, ST: false > usage declaration
|
|
|
|
% HEX: #00FFFF, Color: LIGHTBLUE, Background: NONE, ST: false > variable headers
|
|
$ HEX: #BFFF00, Color: LIME, Background: NONE, ST: false > function headers
|
|
~ HEX: #BE00FF, Color: PURPLE, Background: NONE, ST: false > in-function headers
|
|
§ HEX: #808080, Color: GREY, Background: NONE, ST: false > other headers
|
|
|
|
TODO HEX: #FFB84D, Color: ORANGE, Background: NONE, ST: false > todo documentation
|
|
DONE HEX: #28FF00, Color: LIGHTGREEN, Background: NONE, ST: false > optimization ideas / improvements
|
|
= HEX: #FF8C00, Color: ORANGE, Background: NONE, ST: false > temporary solutions
|
|
& HEX: #FF06A0, Color: PINK, Background: NONE, ST: false > experimental features / ideas
|
|
|
|
^ HEX: #F8FF00, Color: YELLOW, Background: NONE, ST: false > warnings
|
|
BUG HEX: #FF3333, Color: RED, Background: NONE, ST: false > bug documentation
|
|
// HEX: #474747, Color: GRAY, Background: NONE, ST: true > removed comments or fixed bugs
|
|
|
|
HEX: #5C6370, Color: GRAY, Background: NONE, ST: false > normal comments (based on "Atom One Dark Theme")
|
|
|
|
|
|
My settings.json (to change yours, simply go to the plugin, hit the cog-symbol and click on "Edit in settings.json", then find the following section at the bottom of the file and paste my config then reload extensions or restart VSCode):
|
|
"colorful-comments.tags": [
|
|
{
|
|
"tag": "!",
|
|
"color": "#FF2D00",
|
|
"strikethrough": false,
|
|
"backgroundColor": "transparent"
|
|
},
|
|
{
|
|
"tag": "??",
|
|
"color": "#00CCAA",
|
|
"strikethrough": false,
|
|
"backgroundColor": "transparent"
|
|
},
|
|
{
|
|
"tag": "?",
|
|
"color": "#0076FF",
|
|
"strikethrough": false,
|
|
"backgroundColor": "transparent"
|
|
},
|
|
{
|
|
"tag": "//",
|
|
"color": "#474747",
|
|
"strikethrough": true,
|
|
"backgroundColor": "transparent"
|
|
},
|
|
{
|
|
"tag": "^",
|
|
"color": "#F8FF00",
|
|
"strikethrough": false,
|
|
"backgroundColor": "transparent"
|
|
},
|
|
{
|
|
"tag": "*",
|
|
"color": "#28FF00",
|
|
"strikethrough": false,
|
|
"backgroundColor": "transparent"
|
|
},
|
|
{
|
|
"tag": "&",
|
|
"color": "#FF06A0",
|
|
"strikethrough": false,
|
|
"backgroundColor": "transparent"
|
|
},
|
|
{
|
|
"tag": "~",
|
|
"color": "#BE00FF",
|
|
"strikethrough": false,
|
|
"backgroundColor": "transparent"
|
|
},
|
|
{
|
|
"tag": "todo",
|
|
"color": "#FFB84D",
|
|
"strikethrough": false,
|
|
"backgroundColor": "transparent"
|
|
},
|
|
{
|
|
"tag": "bug",
|
|
"color": "#FF3333",
|
|
"strikethrough": false,
|
|
"backgroundColor": "#330000"
|
|
},
|
|
{
|
|
"tag": "$",
|
|
"color": "#BFFF00",
|
|
"strikethrough": false,
|
|
"backgroundColor": "transparent"
|
|
},
|
|
{
|
|
"tag": "%",
|
|
"color": "#00FFFF",
|
|
"strikethrough": false,
|
|
"backgroundColor": "transparent"
|
|
},
|
|
{
|
|
"tag": "=",
|
|
"color": "#FF8C00",
|
|
"strikethrough": false,
|
|
"backgroundColor": "transparent"
|
|
},
|
|
{
|
|
"tag": "§",
|
|
"color": "#808080",
|
|
"strikethrough": false,
|
|
"backgroundColor": "transparent"
|
|
}
|
|
]
|
|
*/ |