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 f3dfa78 + e13ca7e commit 7928f60Copy full SHA for 7928f60
manim_slides/convert.py
@@ -30,6 +30,7 @@
30
conlist,
31
)
32
from pydantic_core import CoreSchema, core_schema
33
+from pydantic_extra_types.color import Color
34
from tqdm import tqdm
35
36
from . import templates
@@ -342,7 +343,7 @@ class RevealJS(Converter):
342
343
hide_inactive_cursor: JsBool = JsBool.true
344
hide_cursor_time: int = 5000
345
# Appearance options from RevealJS
- background_color: str = "black" # TODO: use pydantic.color.Color
346
+ background_color: Color = "black"
347
reveal_version: str = "4.6.1"
348
reveal_theme: RevealTheme = RevealTheme.black
349
title: str = "Manim Slides"
0 commit comments