Last active
May 5, 2025 23:54
-
-
Save tiagobnobrega/dab99e2a6f884a4c8661583bbd6d1557 to your computer and use it in GitHub Desktop.
VSCode Custom UI CSS - cursive italics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Use this with custom UI extension | |
example settings: | |
{ | |
... | |
"custom-ui-style.external.imports": ["file:///Users/tiago/Library/CloudStorage/Dropbox/Trabalho/_IDE_RESOURCES/vscode_css/custom.css"], | |
... | |
} | |
constrol italic elements with editor.tokenColorCustomizations | |
You can just customize the themes by: | |
putting your cursor on the thing you want to change; | |
ctrl+shift+p, > Inspect Editor Tokens and Scope to get the scope mame | |
*/ | |
/* All italics will use this. */ | |
.mtki{ | |
font-family: "Monaspace Radon" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment