diff --git a/src/ImageSharp.Drawing/Processing/TextGraphicsOptions.cs b/src/ImageSharp.Drawing/Processing/TextGraphicsOptions.cs
index 185fa1f74c..63730d1bf7 100644
--- a/src/ImageSharp.Drawing/Processing/TextGraphicsOptions.cs
+++ b/src/ImageSharp.Drawing/Processing/TextGraphicsOptions.cs
@@ -40,11 +40,6 @@ namespace SixLabors.ImageSharp.Processing
this.VerticalAlignment = source.VerticalAlignment;
}
- ///
- /// Gets the default instance.
- ///
- public static TextGraphicsOptions Default { get; } = new TextGraphicsOptions();
-
///
/// Gets or sets a value indicating whether antialiasing should be applied.
/// Defaults to true.
diff --git a/src/ImageSharp/GraphicsOptions.cs b/src/ImageSharp/GraphicsOptions.cs
index 9c62d23371..47b930e654 100644
--- a/src/ImageSharp/GraphicsOptions.cs
+++ b/src/ImageSharp/GraphicsOptions.cs
@@ -29,11 +29,6 @@ namespace SixLabors.ImageSharp
this.ColorBlendingMode = source.ColorBlendingMode;
}
- ///
- /// Gets the default instance.
- ///
- public static GraphicsOptions Default { get; } = new GraphicsOptions();
-
///
/// Gets or sets a value indicating whether antialiasing should be applied.
/// Defaults to true.