// THIS FILE IS PART OF SVG PROJECT // THE SVG PROJECT IS AN OPENSOURCE LIBRARY LICENSED UNDER THE MS-PL License. // COPYRIGHT (C) svg-net. ALL RIGHTS RESERVED. // GITHUB: https://github.com/svg-net/SVG using System; namespace AntdUI.Svg { //TODO This should be split out to define an enum for the font face element and text element. /// The weight of a face relative to others in the same font family. [Flags] public enum SvgFontWeight { //TODO All Is not valid for text elements, but is is for font face elements. /// All font weights. All = (W100 | W200 | W300 | W400 | W500 | W600 | W700 | W800 | W900), //TODO Inherit Is not valid for font face elements, but is is for text elements. /// The value is inherited from the parent element. Inherit = 0, /// Same as . Normal = W400, /// Same as . Bold = W700, /// One font weight darker than the parent element. Bolder = 512, /// One font weight lighter than the parent element. Lighter = 1024, /// W100 = 1, /// W200 = 2, /// W300 = 4, /// Same as . W400 = 8, /// W500 = 16, /// W600 = 32, /// Same as . W700 = 64, /// W800 = 128, /// W900 = 256 } }