remotion_get_theme_info
Retrieve detailed theme information including colors, gradients, typography, and motion settings for video creation projects. Use this tool to access complete design specifications for consistent visual styling across your video content.
Instructions
Get detailed information about a specific theme.
Returns all design tokens for a theme including colors, gradients,
typography, and motion settings.
Args:
theme_name: Name of the theme (e.g., "tech", "finance", "education")
Returns:
JSON object with theme tokens and settings
Example:
theme = await remotion_get_theme_info(theme_name="tech")
# Returns tech theme with blue/cyan colors and modern typography
Input Schema
Name | Required | Description | Default |
---|---|---|---|
theme_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"theme_name": {
"type": "string"
}
},
"required": [
"theme_name"
],
"type": "object"
}