A Manim plugin that lets you apply a iterm2 color theme to your Manim scenes.
Project description
About this Project
This project is a Python Module that provides allows theming of Manim projects with iterm2 color themes. It works by overriding the default Manim configuration with a set of colors that are derived from the selected theme. I am not an expert in how Python looks up variables, and I am not sure if there is a better way for a plugin to realise theming. It works fine for my purposes, but if you have a idea how to improve this, feel free to let me know (by issuing a pull request or opening an issue).
Installation
Install the package with pip:
pip install manim-themes
Minimal Example
Please make sure you have manim installed and running on your machine
Below is a minimal example of how to use the Module.
import manim as m
from manim_themes.manim_theme import apply_theme
class MinimalThemeExample(m.Scene):
def setup(self):
# Set the background color to a light beige
theme = "Andromeda"
apply_theme(manim_scene=self, theme_name=theme, light_theme=True)
def construct(self):
my_text = m.Text("Hello World")
maroon_text = m.Text("I use Manim BTW", color=m.MAROON)
maroon_text.next_to(my_text, m.DOWN)
text_group = m.VGroup(my_text, maroon_text).move_to(m.ORIGIN)
self.play(m.FadeIn(text_group))
if __name__ == '__main__':
import os
from pathlib import Path
FLAGS = "-pqm"
SCENE = "MinimalThemeExample"
file_path = Path(__file__).resolve()
os.system(f"manim {Path(__file__).resolve()} {SCENE} {FLAGS}")
This should yield a Scene that looks like so:
Documentation
This project uses sphinx for generating the documentation.
It also uses a lot of sphinx extensions to make the documentation more readable and interactive.
For example the extension myst-parser is used to enable markdown support in the documentation (instead of the usual .rst-files).
It also uses the sphinx-autobuild extension to automatically rebuild the documentation when changes are made.
By running the following command, the documentation will be automatically built and served, when changes are made (make sure to run this command in the root directory of the project):
sphinx-autobuild ./docs/source/ ./docs/build/html/
If sphinx extensions were added the requirements_dev.txt file needs to be updated.
These are the requirements, that readthedocs uses to build the documentation.
The file can be updated using this command:
poetry export -f requirements.txt --output requirements.txt --with dev
This project features most of the extensions featured in this Tutorial: Document Your Scientific Project With Markdown, Sphinx, and Read the Docs | PyData Global 2021.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file manim_themes-0.1.0.tar.gz.
File metadata
- Download URL: manim_themes-0.1.0.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b88cc18cab3accde69feeb505390ba61603787b1754b10298c81ee52f70940de
|
|
| MD5 |
ec3b6c1b8abe059fb1c6104805eb8d01
|
|
| BLAKE2b-256 |
7560cd8a356890d4ad57b9168cf23aa9759b9a239684de06ea4fa35d86e6686e
|
File details
Details for the file manim_themes-0.1.0-py3-none-any.whl.
File metadata
- Download URL: manim_themes-0.1.0-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a19b9f68a6cb22e4dcbbd70dbfe4a579950702b2dd5128c1cf026d410ae05e0d
|
|
| MD5 |
7d0fa232dab1128ab3f4a0ceed778dc2
|
|
| BLAKE2b-256 |
185625b82690dc7dc2f40945830d1a100276021bda5c7a2c07dfc6d1442e2ad2
|