diff --git a/src/core/Text/Control/ControlSequences.cs b/src/core/Text/Control/ControlSequences.cs index 8153688..a61f0d2 100644 --- a/src/core/Text/Control/ControlSequences.cs +++ b/src/core/Text/Control/ControlSequences.cs @@ -315,6 +315,11 @@ public static string SetBackgroundColor(Color color) return Create(static (cb, color) => cb.SetForegroundColor(color), color); } + public static string SetUnderlineColor(Color color) + { + return Create(static (cb, color) => cb.SetUnderlineColor(color), color); + } + public static string SetDecorations( bool intense = false, bool faint = false,