be5invis / vscode-custom-css

Custom CSS Plugin for Visual Studio Code. Based on vscode-icon
MIT License
875 stars 67 forks source link

font issue #243

Closed hawingstarling closed 2 weeks ago

hawingstarling commented 3 weeks ago

I'm experiencing an issue with the font style appearing too bold in VSCode, even though I've tried setting a lighter font weight in my custom CSS configuration. Currently, I'm using the following configuration in my settings.json:

"vscode_custom_css.imports": [
    "file:///C:/Users/LENOVO/.local/customcss.css"
]

In my customcss.css file, I’ve specified:

.windows {
    font-family: "Inter";
    -webkit-text-stroke-width: 0.2px; /* Not needed on macOS */
    font-weight: 300;
}

Text still appears too bold, affecting readability like a photo: image

Could someone help me identify why this issue is persisting and suggest any potential fixes? I’d appreciate any guidance on making the font appear lighter and closer to the specified weight.

Thank you!