> ## Documentation Index
> Fetch the complete documentation index at: https://docs.domoai.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Text to Video Styles

> Visual styles for text-to-video generation

export const TemplateCard = ({template, imageUrl, videoUrl}) => {
  return <div className="card block font-normal group relative my-2 ring-2 ring-transparent rounded-2xl bg-white dark:bg-background-dark border border-gray-950/10 dark:border-white/10 overflow-hidden w-full" onClick={() => console.log(template)}>
        <video autoPlay muted loop playsInline className="w-full aspect-square" poster={imageUrl} src={videoUrl} />

        <div className="font-bold flex flex-col p-2 text-center">
            {template}
        </div>
    </div>;
};

## Overview

Styles define the visual aesthetic of your generated videos. Use them with the [Text to Video API](/api-reference/ai-video/text-to-video) to control the artistic style and rendering approach of your videos.

## How to Use Styles

Specify the `style` parameter in your text-to-video API request:

```json theme={null}
{
  "prompt": "A beautiful sunset over the ocean",
  "style": "realistic",
  "model": "t2v-2.4-faster",
  "duration": 5
}
```

Different styles interpret your text prompt with distinct visual characteristics, from realistic renders to anime aesthetics.

## Available Styles

Explore the style gallery below. Each style offers a unique visual interpretation of your prompts.

<Columns cols={3}>
  <TemplateCard template="japanese_anime" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/7298c366-5006-4553-7f90-c621db32c200/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/e331ed12ad2b132579674532a8450f40/downloads/default.mp4" />

  <TemplateCard template="realistic" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/294bb606-2a78-454e-c38f-7f52bdb37b00/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/f92e1a6ca68527916bf681f566d4d7b5/downloads/default.mp4" />

  <TemplateCard template="pixel" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/bce2c937-ac59-46e6-699f-27a409fbf400/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/d0e1f4465d455865a8c74f9c0dc483f4/downloads/default.mp4" />

  <TemplateCard template="cartoon_game" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/72282280-0854-41dd-cb76-f1d7d66b1a00/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/443f27eb0f5aa103994e4867dd54544b/downloads/default.mp4" />

  <TemplateCard template="flat_color_anime" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/3d3ea3b5-0e2d-45fb-76b4-6ea9210a3d00/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/500599d10de86646153728eeef1886d4/downloads/default.mp4" />

  <TemplateCard template="90s_style" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/c82a20d6-7cdd-47b4-c368-691b3b7e0600/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/d4180c4152bdc7dda0d0d9326b740010/downloads/default.mp4" />
</Columns>
