Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Silverlight open source font replacement for Segoe

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?

like image 680
Rus Avatar asked Apr 09 '10 14:04

Rus


People also ask

What font is similar to segoe?

The best Google Font alternatives for Segoe UI are: Noto Sans. Open Sans.

Is Segoe UI monospaced?

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.


2 Answers

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>
like image 86
Rus Avatar answered Oct 10 '22 21:10

Rus


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

like image 33
Ric Santos Avatar answered Oct 10 '22 21:10

Ric Santos