-
Notifications
You must be signed in to change notification settings - Fork 8
Description
I want to know how can i update the font weight because i personally don't like the bold weight, colors and the idea in general is amazing but i would like to know how to change font weight to normal
The only actual way that i found was to manually check the "Inspect editor tokens and scopes" option to manually get the items that have bold and then add them to a setting in the settings.json, i ended up with something like this:
"editor.tokenColorCustomizations": {
"[*]": {
"textMateRules": [
{
"scope": [
"meta.brace",
"support.type.property-name.json.comments",
"support.type.primitive.ts",
"entity.name.type.interface",
"entity.name.function",
"variable.parameter.function-call",
"variable.parameter.function-call.ts",
"variable.other.constant.ts",
"variable.other.object",
"variable.other.property.ts",
"variable.other.readwrite.ts",
"variable.other.readwrite.alias.ts",
"variable.parameter",
"punctuation.definition.block.ts",
"punctuation.definition.typeparameters.begin.ts",
"punctuation.definition.typeparameters.end.ts",
"punctuation.definition.parameters.begin.ts",
"punctuation.definition.parameters.end.ts",
"punctuation.definition.parameters.block.ts",
"constant.numeric.decimal.ts",
"comment.line.double-slash.ts",
"punctuation.definition.comment.ts",
"comment.block.ts",
"keyword.control.flow.ts",
"string.quoted.single.ts",
"string.quoted.double.ts",
"support.type.property-name.json",
],
"settings": {
"fontStyle": ""
}
},
]
}
}
and depending on new files that i get, ill need to update this because it will depend on the file type