Adds color palettes for DVIPSNAMES and SVGNAMES for colors commonly used in LaTeX via the xcolor package.
Additional color palettes are accessed in the same way as current palettes/standards already implemented. For example:
>>> from manim import DVIPSNAMES
>>> DVIPSNAMES.DARKORCHID
ManimColor("#A4538A")
>>> from manim import SVGNAMES
>>> SVGNAMES.LIGHTCORAL
ManimColor("##EF7F7F")
Motivation and Explanation: Why and how do your changes improve the library?
Provides access to colors that users may be familiar with from typsetting documents/slides in LaTeX, without users needing to lookup and define these themselves.
Links to added or changed documentation pages
Further Information and Comments
Reviewer Checklist
[ ] The PR title is descriptive enough for the changelog, and the PR is labeled correctly
[ ] If applicable: newly added non-private functions and classes have a docstring including a short summary and a PARAMETERS section
[ ] If applicable: newly added functions and classes are tested
Overview: What does this pull request change?
DVIPSNAMES
andSVGNAMES
for colors commonly used in LaTeX via thexcolor
package.Motivation and Explanation: Why and how do your changes improve the library?
Links to added or changed documentation pages
Further Information and Comments
Reviewer Checklist