From 27eabc02683f2f6545e6d0c56a48217b1e37c5f6 Mon Sep 17 00:00:00 2001
From: Divyansh Srivastava <85135469+Divyansh013@users.noreply.github.com>
Date: Thu, 23 Oct 2025 23:24:25 +0530
Subject: [PATCH] Update color description in description.mdx
Adds a more detailed description about color usage in p5.js sketches, including links to relevant functions.
---
.../examples/en/01_Shapes_And_Color/01_Color/description.mdx | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/content/examples/en/01_Shapes_And_Color/01_Color/description.mdx b/src/content/examples/en/01_Shapes_And_Color/01_Color/description.mdx
index b39219983a..77774bc2b8 100644
--- a/src/content/examples/en/01_Shapes_And_Color/01_Color/description.mdx
+++ b/src/content/examples/en/01_Shapes_And_Color/01_Color/description.mdx
@@ -5,7 +5,7 @@ title: Color
oneLineDescription: Add color to your sketch.
---
-This expands on the Shape Primitives example by adding
+Adds color to your p5.js sketcheas and it expands on the Shape Primitives example by adding
color.
background()
fills the canvas with one color,
@@ -17,4 +17,5 @@ sets the color for the inside of shapes.
noFill()
turn off line color and inner color, respectively.
-Colors can be represented in many different ways. This example demonstrates several options.
\ No newline at end of file
+
+Colors can be represented in many different ways. This example demonstrates several options.