41 lines
697 B
C#
41 lines
697 B
C#
|
namespace Dashboard
|
||
|
{
|
||
|
public enum FontWeight
|
||
|
{
|
||
|
_100 = 100,
|
||
|
_200 = 200,
|
||
|
_300 = 300,
|
||
|
_400 = 400,
|
||
|
_500 = 500,
|
||
|
_600 = 600,
|
||
|
_800 = 800,
|
||
|
_900 = 900,
|
||
|
|
||
|
Thin = _100,
|
||
|
Normal = _400,
|
||
|
Bold = _600,
|
||
|
Heavy = _900,
|
||
|
}
|
||
|
|
||
|
public enum FontSlant
|
||
|
{
|
||
|
Normal,
|
||
|
Italic,
|
||
|
Oblique,
|
||
|
}
|
||
|
|
||
|
public enum FontStretch
|
||
|
{
|
||
|
UltraCondensed = 500,
|
||
|
ExtraCondensed = 625,
|
||
|
Condensed = 750,
|
||
|
SemiCondensed = 875,
|
||
|
Normal = 1000,
|
||
|
SemiExpanded = 1125,
|
||
|
Expanded = 1250,
|
||
|
ExtraExpanded = 1500,
|
||
|
UltraExpanded = 2000,
|
||
|
}
|
||
|
|
||
|
}
|