mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
34 lines
629 B
C#
34 lines
629 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Specifies the color shade of a <see cref="Radzen.Blazor.RadzenButton" />. Affects the visual styling of RadzenButton.
|
|
/// </summary>
|
|
public enum Shade
|
|
{
|
|
/// <summary>
|
|
/// A button with lighter styling.
|
|
/// </summary>
|
|
Lighter,
|
|
|
|
/// <summary>
|
|
/// A button with light styling.
|
|
/// </summary>
|
|
Light,
|
|
|
|
/// <summary>
|
|
/// A button with default styling.
|
|
/// </summary>
|
|
Default,
|
|
|
|
/// <summary>
|
|
/// A button with dark styling.
|
|
/// </summary>
|
|
Dark,
|
|
|
|
/// <summary>
|
|
/// A button with darker styling.
|
|
/// </summary>
|
|
Darker
|
|
}
|
|
|