using System; namespace Quik.Media.Font { public enum FontWeight { _100 = 100, _200 = 200, _300 = 300, _400 = 400, _500 = 500, _600 = 600, _700 = 700, _800 = 800, _900 = 900, Thin = _100, Normal = _400, Bold = _700, Heavy = _900, } }