A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
734 B

// -----------------------------------------------------------------------
// <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
}
}