We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 97de346 + 9a4de7f commit 0721cb5Copy full SHA for 0721cb5
manim/utils/color.py
@@ -104,8 +104,9 @@ class Colors(Enum):
104
105
.. code-block:: python
106
107
- import manim.utils.color as C
108
- C.WHITE # -> '#FFFFFF'
+ >>> import manim.utils.color as C
+ >>> C.WHITE
109
+ '#FFFFFF'
110
111
Note this way uses the name of the colors in UPPERCASE.
112
@@ -115,8 +116,9 @@ class Colors(Enum):
115
116
117
118
- from manim.utils.color import Colors
119
- Colors.white.value # -> '#FFFFFF'
+ >>> from manim.utils.color import Colors
120
+ >>> Colors.white.value
121
122
123
"""
124
0 commit comments