Skip to content

Instantly share code, notes, and snippets.

@yeasinat
Last active March 10, 2025 00:35
Show Gist options
  • Save yeasinat/23049127989bc2adf4fbb5ef25d84b6c to your computer and use it in GitHub Desktop.
Save yeasinat/23049127989bc2adf4fbb5ef25d84b6c to your computer and use it in GitHub Desktop.
Custom css for VSCode test customization
// Add this two lines in your VSCode settings
{
"vscode_custom_css.imports": [ "file://your-css-file-path" ],
"vscode_custom_css.policy": true
}
/* file: style.css */
.type.storage,
.type.storage.declaration,
.storage.class.modifier,
.mtki {
font-family: "Victor Mono";
font-size: 1.1em;
}
.type.storage.arrow.function {
font-family: "JetBranins Mono";
}
.decorator.name,
.decorator.punctuation:not(.block),
.import.keyword {
font-family: "Victor Mono";
font-size: 1.1em;
}
.attribute-name {
font-family: "Victor Mono";
font-size: 1.1em;
}
.comment:not(.punctuation) {
font-family: "Victor Mono";
font-size: 1.1em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment