---
title: Animated Fire Glow
description: A high-performance WebGL procedural fire and ember wave glow background component. Features multi-wave Bezier flow dynamics, glowing pulse physics, film grain, and automatic light and dark theme palette switching.
---

<ComponentPreview name="animated-fire-glow-demo" />

## Premium Pro Component

This is a premium Pro component. To get access to its source code and advanced interactive configurations:
1. Visit the pricing page: [https://lightswind.com/pricing](https://lightswind.com/pricing)
2. Purchase a license to unlock this component.

If you have already purchased a license, you can install this component directly via our CLI:

```bash
npx lightswind@latest add animated-fire-glow
```

*(Note: Make sure you have configured your API key in your project to authenticate your Pro license).*

## Installation

<Tabs defaultValue="cli">

<TabsList>
  <TabsTrigger value="cli">CLI</TabsTrigger>
  <TabsTrigger value="manual">Manual</TabsTrigger>
</TabsList>
<TabsContent value="cli">

```bash
npx lightswind@latest add animated-fire-glow
```

</TabsContent>

<TabsContent value="manual">

> [!IMPORTANT]
> This is a premium component. Manual copy-paste source code is only available to Pro license holders.
> Please purchase a plan at [https://lightswind.com/pricing](https://lightswind.com/pricing) to unlock manual access, or use the authenticated CLI command:
> 
> ```bash
> npx lightswind@latest add animated-fire-glow
> ```

</TabsContent>

</Tabs>

## Usage

```tsx
import { AnimatedFireGlow } from "@/components/lightswind-pro/animated-fire-glow"
```

```tsx
import { AnimatedFireGlow } from "@/components/lightswind-pro/animated-fire-glow";

export function Demo() {
  return (
    <div className="w-full h-[500px] relative overflow-hidden rounded-2xl">
      <AnimatedFireGlow mode="wave" speed={1.0} intensity={1.0} glowPulse={0.35}>
        <div className="flex items-center justify-center h-full text-white font-bold text-3xl">
          Animated Fire Glow
        </div>
      </AnimatedFireGlow>
    </div>
  );
}
```
