11 changed files with 76 additions and 12 deletions
@ -0,0 +1,28 @@ |
|||
// -----------------------------------------------------------------------
|
|||
// <copyright file="FontWeight.cs" company="Steven Kirk">
|
|||
// Copyright 2015 MIT Licence. See licence.md for more information.
|
|||
// </copyright>
|
|||
// -----------------------------------------------------------------------
|
|||
|
|||
namespace Perspex.Media |
|||
{ |
|||
public enum FontWeight |
|||
{ |
|||
Thin = 100, |
|||
ExtraLight = 200, |
|||
UltraLight = 200, |
|||
Light = 300, |
|||
Normal = 400, |
|||
Regular = 400, |
|||
Medium = 500, |
|||
DemiBold = 600, |
|||
SemiBold = 600, |
|||
Bold = 700, |
|||
ExtraBold = 800, |
|||
UltraBold = 800, |
|||
Black = 900, |
|||
Heavy = 900, |
|||
ExtraBlack = 950, |
|||
UltraBlack = 950 |
|||
} |
|||
} |
|||
Loading…
Reference in new issue