mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2025-12-27 00:08:02 +01:00
Also refactors the code quite a bit, to make it a bit more easier to add features like this in the future. Closes #75
92 lines
3.1 KiB
C#
92 lines
3.1 KiB
C#
using System;
|
|
|
|
namespace Spectre.Console
|
|
{
|
|
/// <summary>
|
|
/// Contains extension methods for <see cref="Style"/>.
|
|
/// </summary>
|
|
public static class StyleExtensions
|
|
{
|
|
/// <summary>
|
|
/// Creates a new style from the specified one with
|
|
/// the specified foreground color.
|
|
/// </summary>
|
|
/// <param name="style">The style.</param>
|
|
/// <param name="color">The foreground color.</param>
|
|
/// <returns>The same instance so that multiple calls can be chained.</returns>
|
|
public static Style WithForeground(this Style style, Color color)
|
|
{
|
|
if (style is null)
|
|
{
|
|
throw new ArgumentNullException(nameof(style));
|
|
}
|
|
|
|
return new Style(
|
|
foreground: color,
|
|
background: style.Background,
|
|
decoration: style.Decoration);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new style from the specified one with
|
|
/// the specified background color.
|
|
/// </summary>
|
|
/// <param name="style">The style.</param>
|
|
/// <param name="color">The background color.</param>
|
|
/// <returns>The same instance so that multiple calls can be chained.</returns>
|
|
public static Style WithBackground(this Style style, Color color)
|
|
{
|
|
if (style is null)
|
|
{
|
|
throw new ArgumentNullException(nameof(style));
|
|
}
|
|
|
|
return new Style(
|
|
foreground: style.Foreground,
|
|
background: color,
|
|
decoration: style.Decoration);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new style from the specified one with
|
|
/// the specified text decoration.
|
|
/// </summary>
|
|
/// <param name="style">The style.</param>
|
|
/// <param name="decoration">The text decoration.</param>
|
|
/// <returns>The same instance so that multiple calls can be chained.</returns>
|
|
public static Style WithDecoration(this Style style, Decoration decoration)
|
|
{
|
|
if (style is null)
|
|
{
|
|
throw new ArgumentNullException(nameof(style));
|
|
}
|
|
|
|
return new Style(
|
|
foreground: style.Foreground,
|
|
background: style.Background,
|
|
decoration: decoration);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new style from the specified one with
|
|
/// the specified link.
|
|
/// </summary>
|
|
/// <param name="style">The style.</param>
|
|
/// <param name="link">The link.</param>
|
|
/// <returns>The same instance so that multiple calls can be chained.</returns>
|
|
public static Style WithLink(this Style style, string link)
|
|
{
|
|
if (style is null)
|
|
{
|
|
throw new ArgumentNullException(nameof(style));
|
|
}
|
|
|
|
return new Style(
|
|
foreground: style.Foreground,
|
|
background: style.Background,
|
|
decoration: style.Decoration,
|
|
link: link);
|
|
}
|
|
}
|
|
}
|