AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.9.1" />

 Shadow

public sealed class Shadow
The shadow class for holding information about a box or text-shadow.
public Length BlurRadius { get; }

Gets the blur radius.

public Color Color { get; }

Gets the color of the shadow.

public bool IsInset { get; }

Gets if the shadow is inset.

public Length OffsetX { get; }

Gets the horizontal offset.

public Length OffsetY { get; }

Gets the vertical offset.

public Length SpreadRadius { get; }

Gets the spread radius.

public Shadow(bool inset, Length offsetX, Length offsetY, Length blurRadius, Length spreadRadius, Color color)

Creates a new CSS shadow.