Last active
March 10, 2025 00:35
-
-
Save yeasinat/23049127989bc2adf4fbb5ef25d84b6c to your computer and use it in GitHub Desktop.
Custom css for VSCode test customization
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
// Add this two lines in your VSCode settings | |
{ | |
"vscode_custom_css.imports": [ "file://your-css-file-path" ], | |
"vscode_custom_css.policy": true | |
} |
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
/* 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