Here's the code that I have now:
var pageTitleFont = Settings.Fs switch
{
140 => 1.1,
130 => 1.1,
120 => 1.1,
110 => 1.1,
100 => 1,
90 => 0.9,
_ => 1
};
What I would like to do is to reduce the need for having the same entries for 110,120,130 and 140. Is there any way to shortcut this?