I'm currently building a LOB application in Silverlight 4. I've been considering the question of typography for the application.
After some experimentation on the design side the font that people like is Segoe UI. Now I can embed this font and although the font is freely available in Windows we don’t have distribution rights for this font.
I am looking for an open source font visually equivalent of the Segoe family that can be freely distributed.
Does such a font exist?
The best Google Font alternatives for Segoe UI are: Noto Sans. Open Sans.
Segoe UI Mono is a variation of Segoe UI with monospace characters. It supports Latin (including Eastern European, and Turkish), Greek, Cyrillic, Hebrew and Thai characters, and symbols, geometric shapes and drawing elements. The family includes two fonts in two weights, without italics.
The best answer that I have found is demonstrated in Microsoft's sample themes for Silverlight (can be found here).
Essentially you specify the set of fonts you'd like in descending order ensuring that there is an available font on all target platforms (ie. Segoe UI probably won't be on a Mac or a Windows XP box).
<FontFamily x:Key="DefaultFontFamily">Segoe UI, Lucida Sans Unicode, Verdana</FontFamily>
<Style TargetType="Button">
<Setter Property="FontFamily" Value="{StaticResource DefaultFontFamily}"/>
<Setter Property="FontSize" Value="12"/>
</Style>
Google Web Fonts has a font called Open Sans which is very very close to Segoe UI:
http://www.google.com/webfonts#UsePlace:use/Collection:Open+Sans
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With