Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 60b50e9

Browse files
committedJun 4, 2025·
957011 Updated the given feedback.
1 parent feffe76 commit 60b50e9

File tree

1 file changed

+4
-4
lines changed
  • Shapes/Multi-color-radial-gradient-fill-in-PDF/.NET/Multi-color-radial-gradient-fill-in-PDF

1 file changed

+4
-4
lines changed
 

‎Shapes/Multi-color-radial-gradient-fill-in-PDF/.NET/Multi-color-radial-gradient-fill-in-PDF/Program.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
// Define gradient colors using RGB (byte values from 0 to 255).
2828
List<PdfColor> finalGradientColors = new List<PdfColor>
2929
{
30-
new PdfColor(0, 63, 255), // Blue-ish
31-
new PdfColor(0, 63, 255), // Same blue
32-
new PdfColor(255, 0, 139), // Reddish-purple
33-
new PdfColor(255, 0, 139) // Same reddish-purple
30+
new PdfColor(0, 63, 255), // Blue
31+
new PdfColor(0, 200, 83), // Green
32+
new PdfColor(255, 193, 7), // Amber
33+
new PdfColor(255, 0, 139) // Magenta
3434
};
3535

3636
// Define positions for the gradient colors.

0 commit comments

Comments
 (0)
Please sign in to comment.