Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Any plans for a lighter weight? (Or am I using it wrong?) #25

Closed
winzig opened this issue Sep 18, 2019 · 28 comments · Fixed by #304
Closed

Any plans for a lighter weight? (Or am I using it wrong?) #25

winzig opened this issue Sep 18, 2019 · 28 comments · Fixed by #304
Labels
Area-Glyphs Help-Wanted We encourage anyone to jump in on these. Issue-Feature

Comments

@winzig
Copy link

winzig commented Sep 18, 2019

Tried switching to CC in VS Code on macOS, from my previous font of SFMono-Regular, by installing the .ttf into Font Book, and putting 'Cascadia Code' at the beginning of the Font Family box in VS Code.

To my eyes, the font is a bit heavier than what I'd prefer. It seems as though only one weight was installed, "Regular," is that right? If so, any plans to provide lighter weights to choose from?

@chiefjester
Copy link

That was my first thought as well, been using Meslo font for a while now. I hope you guys make a thinner version of this, otherwise, it's perfect 👌🏻

@bterlson
Copy link
Member

It's a bit too bold for me as well. Previously used FiraCode's light/300 weight (with the NF patch, of course 😁).

@michael-wilson
Copy link

+1 on weight, i use Source Sans at 100 and 300 in various, this is great but a tad too thick for VSC (for me)

@ExE-Boss
Copy link

I’m used to the thickness of Consolas and Input Mono. (see also: #41)

@musm
Copy link

musm commented Sep 19, 2019

Same. Consolas and Roboto Mono has a great thickness, this new font looks like it's basically bold.

@vittau
Copy link

vittau commented Sep 19, 2019

Agreed, I wish there was a light weight. Italic would also be nice for themes that support it (usually meant for Operator Mono style fonts).

@cinnamon-msft cinnamon-msft added Area-Glyphs Help-Wanted We encourage anyone to jump in on these. labels Sep 19, 2019
@Marco87Developer
Copy link

Marco87Developer commented Sep 23, 2019

I too would like a lighter version, and the italic too! In the same way of Consolas default font un Visual Studio Code.

@predopredo
Copy link

+1 for the lighter weight!
LOVED this font!

@Esteban-Rocha
Copy link

Esteban-Rocha commented Sep 25, 2019

+1 I'm finding this font to be quite comfortable, I'm liking it a lot! But It's too bold, it tires me petty quickly so I have to go back to Ligconsolata or Fira.

I think this issue should be one of the top priorities for Cascadia

@predopredo
Copy link

+1 I'm finding this font to be quite comfortable, I'm liking it a lot! But It's too bold, it tires me petty quickly so I have to go back to Ligconsolata or Fira.

I think this issue should be one of the top priorities for Cascadia

100% agreed

@codebymiles
Copy link

codebymiles commented Sep 25, 2019

Adding more support for a lighter weight variant more in line with Consolas’ weight.

@GergiH
Copy link

GergiH commented Oct 4, 2019

+1 Somehow it's okay in cmd (thought my éá,etc characters are not working) but in VSCode every character is so chunky.

@vuon9
Copy link

vuon9 commented Oct 4, 2019

I got the same problem, then I change Editor: Font Weight to 400 and it seems better (similar with my terminal).

@GergiH
Copy link

GergiH commented Oct 4, 2019

I got the same problem, then I change Editor: Font Weight to 400 and it seems better (similar with my terminal).

400 is the default font weight in nearly everything so it shouldn't look any different.

@pedropablo
Copy link

+1

It looks chunky on VS2019, and with function names and other stuff with bold it becomes quite hard to read.

cascadia

@winzig
Copy link
Author

winzig commented Oct 18, 2019

Did a little digging and noticed a branch by @cinnamon-msft that adds a roadmap to the bottom of the README file, which indicates they are targeting March 2020 to resolve this.

https://github.com/microsoft/cascadia-code/blob/cinnamon/add-roadmap/README.md#roadmap

Screen Shot 2019-10-18 at 10 20 02 AM

@roqvist
Copy link

roqvist commented Mar 31, 2020

Does anyone have any updates about this repo? It seems that work has halted, no new changes for months. The only reference is the old roadmap which suggests new features in March 2020 which is pretty much over now. It would be good with some official info and probably an updated roadmap.

@zr9
Copy link

zr9 commented Apr 1, 2020

You can basically use a custom patch via fontforge, just change a value until you satisfied, not the best but working one.

import fontforge

name = 'Cascadia Scaled'

font = fontforge.open('./build/CascadiaCodeTest.ttf')
font.fontname=name
font.familyname=name
font.fullname=name
font.copyright=""
font.selection.all()
font.changeWeight(-50.0)
font.generate('./build/CascadiaCodeScaled.ttf')

@aaronbell
Copy link
Collaborator

Hello! Sorry for the radio silence. I've been on paternity leave for several months. 😄

I understand that the Microsoft team will be updating the roadmap here soon, but just wanted to let you know that work is picking back up and the heavy weight of Cascadia Code is top of the list to resolve.

@kameshkotwani
Copy link

Any updates on the light version of this beautiful font? Any release date yet?

@cinnamon-msft
Copy link
Collaborator

I will update the roadmap soon, but it looks like the font weights will arrive in the June - August 2020 timeframe. 😊

@kameshkotwani
Copy link

@cinnamon-msft Thank you :)

@estebandee
Copy link

Just installed this alongside the new Terminal. Waiting for lighter weights since it's pretty chunky right now. Good work on the font!

DHowett pushed a commit that referenced this issue Jun 29, 2020
This major update adds a weight range to Cascadia Code. This font is now
being built as a Variable Font, which enables users to select the
perfect weight for their preference. 

The weight range now extends from ExtraLight (200) to Bold (700), with
the current Regular set at 500 (400 in the font selector, 500
internally). As a variable font, OS / rendering engine support may vary.
Users running Windows 10 and Windows Terminal will have access to the
full range of font weights. Other applications may only have access to
the named instances (ExtraLight / Semilight / Light / Regular / SemiBold
/ Bold) depending on inbuilt support. 

Static instance OTFs are also provided. At current, static TTFs are not
built in this update, but it is something we will consider in the
future. 

Variation implementation tested on Windows and Mac, font hinted and
reviewed on high and low DPI devices. 

Closes #25 - weight axis added
Closes #43 - with weight addition, parenthesis width is preserved 
Closes #284 - ligature now broken for easier recognition
Closes #90 - produced as a variable font
Closes #128 - MORE WEIGHTS 
Closes #285 - contextual code removed

Signed-off-by: Aaron Bell <[email protected]>
@italoservio
Copy link

Tried switching to CC in VS Code on macOS, from my previous font of SFMono-Regular, by installing the .ttf into Font Book, and putting 'Cascadia Code' at the beginning of the Font Family box in VS Code.

To my eyes, the font is a bit heavier than what I'd prefer. It seems as though only one weight was installed, "Regular," is that right? If so, any plans to provide lighter weights to choose from?

For me these settings solved the problem in VSCode:

{ 
  ...
  "editor.fontFamily": "cascadia code",
  "editor.fontWeight": 350
  ...
}

@nfantone
Copy link

nfantone commented Dec 2, 2021

Still an issue for me entering 2022. Font looks way too bold to my eyes. Even on lower "editor.fontWeight" values.

image

I noticed that the latest release includes a .ttf "variable" version, but playing around with weights, led me to some disappointing results:

  • < 350 - too thin;
  • between 350 and 500 - looks like what we had before, i.e.: too bold;
  • > 500 - way bolder.

Looks like there's no sweet spot. Am I doing something wrong?

@aaronbell
Copy link
Collaborator

What you’re seeing in VS Code is a known issue.

For you, I would suggest using the static versions of Cascadia wherein you can directly select the SemiLight weight.

@nfantone
Copy link

nfantone commented Dec 7, 2021

Thanks for the clarification!

@huksley
Copy link

huksley commented Jan 29, 2022

In VS Code, try putting "workbench.fontAliasing": "antialiased" in settings.json, it will make font thinner.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-Glyphs Help-Wanted We encourage anyone to jump in on these. Issue-Feature
Projects
None yet
Development

Successfully merging a pull request may close this issue.