File: CanvasDefaults.cs
Web Access
Project: src\src\Graphics\src\Graphics\Graphics.csproj (Microsoft.Maui.Graphics)
namespace Microsoft.Maui.Graphics
{
	public static class CanvasDefaults
	{
		public static readonly Color DefaultShadowColor = new Color(0f, 0f, 0f, .5f);
		public static readonly SizeF DefaultShadowOffset = new SizeF(5, 5);
		public const float DefaultShadowBlur = 5;
		public const float DefaultMiterLimit = 10;
	}
}