https://www.dafontfree.net/freefonts-script12-bt-f141942.htm
https://github.com/be5invis/vscode-custom-css
sudo nano ~/.vscode/vs-code-styles.css
/* Set italics and comments to the script font */
.mtk3, .mtk4 {
font-family: 'Script12 BT';
font-size: 1.2em;
font-style: normal;
color: #57a649!important;
}
.comment {
font-family: 'Script12 BT';
font-style: italic;
font-size: 1.2em;
color: #57a649!important;
}
.comment:not(.punctuation) {
font-family: 'Script12 BT';
font-size: 1.5em;
color: #57a649!important;
}
// Somewhere in your user / workspace settings file !
.
.
.
.
"vscode_custom_css.imports": ["file:///<PATH TO CSS FILE>/.vscode/vs-code-styles.css"],
"vscode_custom_css.policy": true,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic"
}
}
]
}
You might have to do a manual reload after setting this up: [View » Command Palette » "Reload Custom CSS and JS"] (which is⌘⇧P on Mac)
This is my CSS:
Please note the warning after running the reload: