gitee.com/sy_183/go-common@v1.0.5-0.20231205030221-958cfe129b47/sgr/name.go (about)

     1  package sgr
     2  
     3  const (
     4  	ResetName = "reset"
     5  
     6  	BoldName                 = "bold"
     7  	FaintName                = "faint"
     8  	ItalicName               = "italic"
     9  	FrakturName              = "fraktur"
    10  	ReversedName             = "reversed"
    11  	NormalIntensityName      = "normal-intensity"
    12  	NotItalicBlackLetterName = "not-italic-black-letter"
    13  	NotReversedName          = "not-reversed"
    14  
    15  	UnderlineName        = "underline"
    16  	DoublyUnderlinedName = "doubly-underlined"
    17  	SlowBlinkName        = "slow-blink"
    18  	RapidBlinkName       = "rapid-blink"
    19  	OverlinedName        = "overlined"
    20  	NotUnderlinedName    = "not-underlined"
    21  	NotBlinkingName      = "not-blinking"
    22  	NotOverlinedName     = "not-overlined"
    23  
    24  	ConcealName                    = "conceal"
    25  	CrossedOutName                 = "crossed-out"
    26  	DisableProportionalSpacingName = "disable-proportional-spacing"
    27  	RevealName                     = "reveal"
    28  	NotCrossedOutName              = "not-crossed-out"
    29  	ProportionalSpacingName        = "proportional-spacing"
    30  
    31  	FramedName                  = "framed"
    32  	EncircledName               = "encircled"
    33  	SuperscriptName             = "superscript"
    34  	SubscriptName               = "subscript"
    35  	NotFramedEncircledName      = "not-framed-encircled"
    36  	NotSuperscriptSubscriptName = "not-superscript-subscript"
    37  
    38  	IdeogramUnderlineName       = "ideogram-underline"
    39  	IdeogramDoubleUnderlineName = "ideogram-double-underline"
    40  	IdeogramOverlineName        = "ideogram-overline"
    41  	IdeogramDoubleOverlineName  = "ideogram-double-overline"
    42  	IdeogramStressMarkingName   = "ideogram-stress-marking"
    43  	NoIdeogramAttributesName    = "no-ideogram-attributes"
    44  
    45  	FgBlackName   = "fg-black"
    46  	FgRedName     = "fg-red"
    47  	FgGreenName   = "fg-green"
    48  	FgYellowName  = "fg-yellow"
    49  	FgBlueName    = "fg-blue"
    50  	FgMagentaName = "fg-magenta"
    51  	FgCyanName    = "fg-cyan"
    52  	FgWhiteName   = "fg-white"
    53  
    54  	BgBlackName   = "bg-black"
    55  	BgRedName     = "bg-red"
    56  	BgGreenName   = "bg-green"
    57  	BgYellowName  = "bg-yellow"
    58  	BgBlueName    = "bg-blue"
    59  	BgMagentaName = "bg-magenta"
    60  	BgCyanName    = "bg-cyan"
    61  	BgWhiteName   = "bg-white"
    62  
    63  	FgBrightBlackName   = "fg-bright-black"
    64  	FgBrightRedName     = "fg-bright-red"
    65  	FgBrightGreenName   = "fg-bright-green"
    66  	FgBrightYellowName  = "fg-bright-yellow"
    67  	FgBrightBlueName    = "fg-bright-blue"
    68  	FgBrightMagentaName = "fg-bright-magenta"
    69  	FgBrightCyanName    = "fg-bright-cyan"
    70  	FgBrightWhiteName   = "fg-bright-white"
    71  
    72  	BgBrightBlackName   = "bg-bright-black"
    73  	BgBrightRedName     = "bg-bright-red"
    74  	BgBrightGreenName   = "bg-bright-green"
    75  	BgBrightYellowName  = "bg-bright-yellow"
    76  	BgBrightBlueName    = "bg-bright-blue"
    77  	BgBrightMagentaName = "bg-bright-magenta"
    78  	BgBrightCyanName    = "bg-bright-cyan"
    79  	BgBrightWhiteName   = "bg-bright-white"
    80  
    81  	CustomFgColorName         = "custom-fg-color"
    82  	DefaultFgColorName        = "default-fg-color"
    83  	CustomBgColorName         = "custom-bg-color"
    84  	DefaultBgColorName        = "default-bg-color"
    85  	CustomUnderlineColorName  = "custom-underline-color"
    86  	DefaultUnderlineColorName = "default-underline-color"
    87  
    88  	FgColor256Name        = "fg-color-256"
    89  	FgColorRGBName        = "fg-color-rgb"
    90  	BgColor256Name        = "bg-color-256"
    91  	BgColorRGBName        = "bg-color-rgb"
    92  	UnderlineColor256Name = "underline-color-256"
    93  	UnderlineColorRGBName = "underline-color-rgb"
    94  
    95  	PrimaryFontName      = "primary-font"
    96  	AlternativeFont1Name = "alternative-font1"
    97  	AlternativeFont2Name = "alternative-font2"
    98  	AlternativeFont3Name = "alternative-font3"
    99  	AlternativeFont4Name = "alternative-font4"
   100  	AlternativeFont5Name = "alternative-font5"
   101  	AlternativeFont6Name = "alternative-font6"
   102  	AlternativeFont7Name = "alternative-font7"
   103  
   104  	AlternativeFont8Name = "alternative-font8"
   105  	AlternativeFont9Name = "alternative-font9"
   106  )