// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. using System; namespace SixLabors.Fonts { /// /// The font styles /// [Flags] public enum FontStyle { /// /// Regular /// Regular = 0, /// /// Bold /// Bold = 1, /// /// Italic /// Italic = 2, /// /// Bold and Italic /// BoldItalic = 3, // TODO: Not yet supported // Underline = 4, // Strikeout = 8 } }