Next.js 15
Gradient Backgrounds

Streamline your development workflow with ready-to-use gradient background implementations for Next.js 15 applications. Copy, paste, and customize professional gradient designs with complete code examples.

Implementation Guide

  1. 1. Update your layout.tsx file:

    layout.tsx
    import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import BgGradient from "@/components/bg-gradient"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { title: "Create Next App", description: "Generated by create next app", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( <html lang="en"> <body className={`${geistSans.variable} ${geistMono.variable} antialiased`} > <BgGradient /> {children} </body> </html> ); }
  2. 2. Create a bg-gradient.tsx component with your chosen gradient from the collection below.

Gradient Collection

Choose a gradient and copy the code to use in your project

Settings:

Radial Purple Pink

A vibrant radial gradient with purple and pink tones

Preview:

Component Code:

Ocean Breeze

A calming ocean-inspired gradient

Preview:

Component Code:

Sunset Glow

A warm sunset gradient with vibrant colors

Preview:

Component Code:

Forest Mist

A nature-inspired green gradient

Preview:

Component Code:

Golden Hour

A soft, warm golden hour gradient

Preview:

Component Code:

Cosmic Abyss

A mesmerizing deep navy gradient with radial highlights and cosmic depth

Preview:

Component Code:

Cream Dream

A subtle, creamy light gradient

Preview:

Component Code:

Volcanic Fire

An intense volcanic fire gradient

Preview:

Component Code:

Pastel Sky

A soft pastel sky gradient

Preview:

Component Code:

Tropical Paradise

A vibrant tropical gradient with green and pink tones

Preview:

Component Code:

Titanium Edge

A refined steel blue gradient inspired by modern dark UI design

Preview:

Component Code:

Autumn Leaves

A warm autumn-inspired gradient

Preview:

Component Code:

Icy Blue

A cool, icy blue gradient

Preview:

Component Code:

Light Blue Slate

A subtle light blue to slate gradient

Preview:

Component Code:

Dark Blue Slate

A deep dark blue to slate gradient

Preview:

Component Code:

Phantom Violet

A sophisticated dark gradient with subtle purple accents

Preview:

Component Code:

Carbon Fiber

A subtle dark gradient inspired by carbon fiber textures

Preview:

Component Code:

Charcoal Elegant

An elegant charcoal gradient popular in premium UI designs

Preview:

Component Code:

Deep Space

A deep space gradient used in modern dark themes

Preview:

Component Code:

Obsidian Flow

A smooth obsidian-inspired gradient for sophisticated interfaces

Preview:

Component Code:

Cosmic Aurora

A vibrant cosmic aurora with multiple radial gradients in purple, cyan, and green hues

Preview:

Component Code:

Tropical Oasis

A refreshing tropical oasis with turquoise, blue, and green radial gradients

Preview:

Component Code:

Purple Magic

A complex magical purple gradient with multiple vibrant color bursts

Preview:

Component Code:

Emerald Spring

A fresh emerald spring gradient with vibrant green and lime accents

Preview:

Component Code:

Golden Sunset

A warm golden sunset gradient with orange, yellow, and magenta highlights

Preview:

Component Code:

Azure Dreams

A dreamy azure gradient with multiple colorful radial bursts in blue, green, purple, and coral

Preview:

Component Code:

Turquoise Harmony

A harmonious turquoise gradient with blue, green, and magenta radial elements

Preview:

Component Code:

Lime Splash

A vibrant lime splash with green, orange, and blue radial bursts

Preview:

Component Code:

Cyan Waves

A flowing cyan wave gradient with blue, green, and pink accents

Preview:

Component Code:

Violet Mist

A mystical violet mist with purple and cyan radial elements

Preview:

Component Code:

Purple Horizon

A stunning purple horizon with magenta, cyan, and golden accents

Preview:

Component Code:

Emerald Symphony

A complex emerald symphony with multiple vibrant color bursts in green, cyan, yellow, blue, red, and magenta

Preview:

Component Code:

Chartreuse Bloom

A vibrant chartreuse bloom with multiple colorful radial bursts in green, orange, teal, and blue

Preview:

Component Code:

Magenta Galaxy

A cosmic magenta galaxy with multiple vibrant radial bursts in pink, blue, red, cyan, orange, green, and yellow

Preview:

Component Code:

Rose Cascade

A beautiful rose cascade with pink, red, purple, orange, cyan, and green radial elements

Preview:

Component Code:

Spring Meadow

A fresh spring meadow with bright lime green, orange, blue, and purple radial bursts

Preview:

Component Code:

Pink Nebula

A vibrant pink nebula with red, purple, orange, yellow, blue, green, and cyan radial elements

Preview:

Component Code:

Magenta Bloom

A stunning magenta bloom with pink, blue, red, orange, teal, and green radial bursts

Preview:

Component Code:

Coral Explosion

An explosive coral gradient with red, orange, magenta, yellow, lime, purple, green, and blue radial elements

Preview:

Component Code:

Indigo Serenity

A serene indigo gradient with purple and cyan radial accents

Preview:

Component Code:

Crimson Burst

A bold crimson burst with orange, purple, and green radial elements

Preview:

Component Code:

Lime Fusion

A dynamic lime fusion with green, orange, teal, red, blue, and purple radial bursts

Preview:

Component Code:

Fuchsia Storm

A fierce fuchsia storm with red, purple, orange, yellow, cyan, and green radial elements

Preview:

Component Code:

Aqua Harmony

A harmonious aqua gradient with cyan, blue, green, pink, and orange radial elements

Preview:

Component Code:

Purple Mystique

A mystical purple gradient with magenta, blue, red, green, and yellow radial bursts

Preview:

Component Code:

Lime Garden

A vibrant lime garden with green, orange, and purple radial elements

Preview:

Component Code:

Citrus Blend

A zesty citrus blend with lime green and orange radial accents

Preview:

Component Code:

Violet Whisper

A gentle violet whisper with purple and cyan radial touches

Preview:

Component Code:

Magenta Dawn

A vibrant magenta dawn with pink and blue radial highlights

Preview:

Component Code:

Emerald Forest

A lush emerald forest with teal and lime radial accents

Preview:

Component Code:

Purple Radiance

A radiant purple gradient with magenta, cyan, and yellow radial bursts

Preview:

Component Code:

Lavender Dreams

A dreamy lavender gradient with purple, cyan, magenta, and green radial elements

Preview:

Component Code:

Coral Sunset

A warm coral sunset with orange and magenta radial accents

Preview:

Component Code:

Ocean Depths

Deep ocean depths with blue and green radial elements

Preview:

Component Code:

Azure Constellation

An azure constellation with blue, purple, cyan, magenta, and orange radial stars

Preview:

Component Code:

Cosmic Prism

A cosmic prism with purple, cyan, magenta, teal, orange, and green radial bursts

Preview:

Component Code:

Violet Cascade

A cascading violet gradient with magenta, blue, pink, and green radial flows

Preview:

Component Code: