From fdf15e6c8e1ce0871a3a1b97d952cdac0faa142a Mon Sep 17 00:00:00 2001 From: Nitesh Yadav <78202277+n1teshy@users.noreply.github.com> Date: Tue, 15 Sep 2026 19:20:30 +0530 Subject: [PATCH] Fix typo in color documentation --- docs/1_intro/intro.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/1_intro/intro.rst b/docs/1_intro/intro.rst index a59b72b..6735627 100644 --- a/docs/1_intro/intro.rst +++ b/docs/1_intro/intro.rst @@ -119,7 +119,7 @@ A total of 16 million different colors can be represented this way. .. image:: AdditiveColorMixing.png :scale: 50 % -Let's define the base colors as tuples of the tree base values. +Let's define the base colors as tuples of the three base values. Since colors are constants, we will write them using capitals. The absence of all colors results in black. The maximum value for all three components results in white. @@ -129,7 +129,7 @@ Three identical intermediate values result in gray:: GRAY = (127, 127, 127) WHITE = (255, 255, 255) -The tree base colors are defined as:: +The three base colors are defined as:: RED = (255, 0, 0) GREEN = (0, 255, 0)