Vibrant Synthwave Sunset Grid
🔵 InteractiveAn immersive retro-futuristic synthwave landscape featuring a 3D neon-receding coordinate grid flowing infinitely under a glowing, vibrant sunset.
Responsive Horizontal Leaderboard
Slot ID: ca-pub-detail-below-preview
Interactive Settings
Medium Rectangle Block
Slot ID: ca-pub-detail-after-customization
Quick Copy Actions
Download File Packages
Keyboard Shortcuts
Responsive Horizontal Leaderboard
Slot ID: ca-pub-detail-before-related
More in Grid
Loading Canvas Shader...
Cyber Grid
A neon-tinted grid sheet with a glowing cyber pulse sweeping vertically across the viewport.
Loading Canvas Shader...
Minimalist Architectural Grid
A clean, modern light architectural layout featuring a stunning pastel-lavender isometric scrolling grid that shifts dynamically with the cursor.
Loading Canvas Shader...
Digital Matrix Code
Falling digital code rain stream effects in deep toxic-green shades on a pitch black canvas.
Vibrant Synthwave Sunset Grid - CSS-only Grid background for React & Tailwind
Integrate the Vibrant Synthwave Sunset Grid directly into your website. This asset is rendered using pure CSS and HTML keyframes. It is optimized for zero layout-shifts and runs with high-performance hardware-accelerated processing.
⚡ Performance Specifications
- Render Mode: INTERACTIVE (CSS-only)
- Fluidity: Locked at 60fps dynamic loop
- Bundle Footprint: Zero external NPM dependencies
- SEO Indexing status: 100% Crawlable static semantic HTML
🛠️ Integration Capabilities
Our templates expose inline design tokens like --color-1 and --color-2 for infinite color palettes. This template is designed to fit inside hero elements, full-screen landing pages, and interactive presentation cards.
Technical Code Reference & Syntaxes for Googlebot & Crawlers
The snippets below display the direct, unminified source code utilized for rendering this background.
HTML & Inline CSS Snippet (Vanilla)
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vibrant Synthwave Sunset Grid</title>
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: #09090b;
}
.synthwave-grid-wrap {
width: 100%;
height: 100%;
background: linear-gradient(to bottom, #0d0121 0%, #030008 100%);
overflow: hidden;
position: relative;
perspective: 280px;
}
.synthwave-sky {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 50%;
background: radial-gradient(circle at 50% 100%, rgba(255, 0, 128, 0.25) 0%, transparent 60%);
display: flex;
align-items: flex-end;
justify-content: center;
}
.synthwave-sun {
width: 160px;
height: 160px;
border-radius: 50%;
background: linear-gradient(to bottom, #ff007f 0%, #ff8000 100%);
box-shadow: 0 0 50px rgba(255, 0, 127, 0.6);
transform: translateY(30px);
position: relative;
clip-path: polygon(
0% 0%, 100% 0%, 100% 60%, 0% 60%,
0% 64%, 100% 64%, 100% 74%, 0% 74%,
0% 78%, 100% 78%, 100% 86%, 0% 86%,
0% 90%, 100% 90%, 100% 100%, 0% 100%
);
animation: sun-pulse 6s ease-in-out infinite alternate;
}
.synthwave-grid {
position: absolute;
width: 300%;
height: 200%;
top: 45%;
left: -100%;
background-image:
linear-gradient(rgba(0, 240, 255, 0.45) 1.5px, transparent 1.5px),
linear-gradient(90deg, rgba(255, 0, 127, 0.45) 1.5px, transparent 1.5px);
background-size: 55px 55px;
transform: rotateX(75deg) rotateZ(calc(var(--mouse-x, 0) * 12deg));
transform-origin: center top;
animation: retro-scroll 4s linear infinite;
transition: transform 0.25s ease-out;
}
.synthwave-vignette {
position: absolute;
inset: 0;
background: radial-gradient(circle at center, transparent 30%, rgba(13, 1, 33, 0.8) 100%);
pointer-events: none;
}
@keyframes sun-pulse {
0% { transform: translateY(30px) scale(1); filter: brightness(1); }
100% { transform: translateY(30px) scale(1.05); filter: brightness(1.15); }
}
@keyframes retro-scroll {
0% { transform: rotateX(75deg) rotateZ(calc(var(--mouse-x, 0) * 12deg)) translateY(0); }
100% { transform: rotateX(75deg) rotateZ(calc(var(--mouse-x, 0) * 12deg)) translateY(55px); }
}
</style>
</head>
<body>
<div class="synthwave-grid-wrap">
<div class="synthwave-sky">
<div class="synthwave-sun"></div>
</div>
<div class="synthwave-grid"></div>
<div class="synthwave-vignette"></div>
</div>
<script>
// Throttled interactive cursor coordinates mapping
(function() {
document.documentElement.style.setProperty('--mouse-x', '0');
document.documentElement.style.setProperty('--mouse-y', '0');
let targetX = 0, targetY = 0;
let currentX = 0, currentY = 0;
window.addEventListener('mousemove', (e) => {
targetX = (e.clientX / window.innerWidth) - 0.5;
targetY = (e.clientY / window.innerHeight) - 0.5;
});
window.addEventListener('mouseleave', () => {
targetX = 0;
targetY = 0;
});
function update() {
currentX += (targetX - currentX) * 0.08;
currentY += (targetY - currentY) * 0.08;
document.documentElement.style.setProperty('--mouse-x', currentX.toFixed(4));
document.documentElement.style.setProperty('--mouse-y', currentY.toFixed(4));
requestAnimationFrame(update);
}
requestAnimationFrame(update);
})();
</script>
</body>
</html>React Component Wrapper (TSX)
import React, { useEffect, useRef } from 'react';
export default function VibrantSynthwaveSunsetGridBackground() {
const containerRef = useRef<HTMLDivElement>(null);
useEffect(() => {
let targetX = 0, targetY = 0;
let currentX = 0, currentY = 0;
let frameId: number;
const handleMouseMove = (e: MouseEvent) => {
targetX = (e.clientX / window.innerWidth) - 0.5;
targetY = (e.clientY / window.innerHeight) - 0.5;
};
const handleMouseLeave = () => {
targetX = 0;
targetY = 0;
};
window.addEventListener('mousemove', handleMouseMove);
window.addEventListener('mouseleave', handleMouseLeave);
const updateCoordinates = () => {
currentX += (targetX - currentX) * 0.08;
currentY += (targetY - currentY) * 0.08;
if (containerRef.current) {
containerRef.current.style.setProperty('--mouse-x', currentX.toFixed(4));
containerRef.current.style.setProperty('--mouse-y', currentY.toFixed(4));
}
frameId = requestAnimationFrame(updateCoordinates);
};
frameId = requestAnimationFrame(updateCoordinates);
return () => {
window.removeEventListener('mousemove', handleMouseMove);
window.removeEventListener('mouseleave', handleMouseLeave);
cancelAnimationFrame(frameId);
};
}, []);
return (
<div
ref={containerRef}
style={{ width: '100%', height: '100%', position: 'relative', overflow: 'hidden' }}
>
<style dangerouslySetInnerHTML={{ __html: `
.synthwave-grid-wrap {
width: 100%;
height: 100%;
background: linear-gradient(to bottom, #0d0121 0%, #030008 100%);
overflow: hidden;
position: relative;
perspective: 280px;
}
.synthwave-sky {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 50%;
background: radial-gradient(circle at 50% 100%, rgba(255, 0, 128, 0.25) 0%, transparent 60%);
display: flex;
align-items: flex-end;
justify-content: center;
}
.synthwave-sun {
width: 160px;
height: 160px;
border-radius: 50%;
background: linear-gradient(to bottom, #ff007f 0%, #ff8000 100%);
box-shadow: 0 0 50px rgba(255, 0, 127, 0.6);
transform: translateY(30px);
position: relative;
clip-path: polygon(
0% 0%, 100% 0%, 100% 60%, 0% 60%,
0% 64%, 100% 64%, 100% 74%, 0% 74%,
0% 78%, 100% 78%, 100% 86%, 0% 86%,
0% 90%, 100% 90%, 100% 100%, 0% 100%
);
animation: sun-pulse 6s ease-in-out infinite alternate;
}
.synthwave-grid {
position: absolute;
width: 300%;
height: 200%;
top: 45%;
left: -100%;
background-image:
linear-gradient(rgba(0, 240, 255, 0.45) 1.5px, transparent 1.5px),
linear-gradient(90deg, rgba(255, 0, 127, 0.45) 1.5px, transparent 1.5px);
background-size: 55px 55px;
transform: rotateX(75deg) rotateZ(calc(var(--mouse-x, 0) * 12deg));
transform-origin: center top;
animation: retro-scroll 4s linear infinite;
transition: transform 0.25s ease-out;
}
.synthwave-vignette {
position: absolute;
inset: 0;
background: radial-gradient(circle at center, transparent 30%, rgba(13, 1, 33, 0.8) 100%);
pointer-events: none;
}
@keyframes sun-pulse {
0% { transform: translateY(30px) scale(1); filter: brightness(1); }
100% { transform: translateY(30px) scale(1.05); filter: brightness(1.15); }
}
@keyframes retro-scroll {
0% { transform: rotateX(75deg) rotateZ(calc(var(--mouse-x, 0) * 12deg)) translateY(0); }
100% { transform: rotateX(75deg) rotateZ(calc(var(--mouse-x, 0) * 12deg)) translateY(55px); }
}
` }} />
{/* HTML Structure */}
<div
style={{ width: '100%', height: '100%' }}
dangerouslySetInnerHTML={{ __html: `
<div class="synthwave-grid-wrap">
<div class="synthwave-sky">
<div class="synthwave-sun"></div>
</div>
<div class="synthwave-grid"></div>
<div class="synthwave-vignette"></div>
</div>
` }}
/>
</div>
);
}Next.js App Router Component (use client)
'use client';
import React, { useEffect, useRef } from 'react';
export default function VibrantSynthwaveSunsetGridBackground() {
const containerRef = useRef<HTMLDivElement>(null);
useEffect(() => {
let targetX = 0, targetY = 0;
let currentX = 0, currentY = 0;
let frameId: number;
const handleMouseMove = (e: MouseEvent) => {
targetX = (e.clientX / window.innerWidth) - 0.5;
targetY = (e.clientY / window.innerHeight) - 0.5;
};
const handleMouseLeave = () => {
targetX = 0;
targetY = 0;
};
window.addEventListener('mousemove', handleMouseMove);
window.addEventListener('mouseleave', handleMouseLeave);
const updateCoordinates = () => {
currentX += (targetX - currentX) * 0.08;
currentY += (targetY - currentY) * 0.08;
if (containerRef.current) {
containerRef.current.style.setProperty('--mouse-x', currentX.toFixed(4));
containerRef.current.style.setProperty('--mouse-y', currentY.toFixed(4));
}
frameId = requestAnimationFrame(updateCoordinates);
};
frameId = requestAnimationFrame(updateCoordinates);
return () => {
window.removeEventListener('mousemove', handleMouseMove);
window.removeEventListener('mouseleave', handleMouseLeave);
cancelAnimationFrame(frameId);
};
}, []);
return (
<div
ref={containerRef}
className="w-full h-full relative overflow-hidden"
>
<style dangerouslySetInnerHTML={{ __html: `
.synthwave-grid-wrap {
width: 100%;
height: 100%;
background: linear-gradient(to bottom, #0d0121 0%, #030008 100%);
overflow: hidden;
position: relative;
perspective: 280px;
}
.synthwave-sky {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 50%;
background: radial-gradient(circle at 50% 100%, rgba(255, 0, 128, 0.25) 0%, transparent 60%);
display: flex;
align-items: flex-end;
justify-content: center;
}
.synthwave-sun {
width: 160px;
height: 160px;
border-radius: 50%;
background: linear-gradient(to bottom, #ff007f 0%, #ff8000 100%);
box-shadow: 0 0 50px rgba(255, 0, 127, 0.6);
transform: translateY(30px);
position: relative;
clip-path: polygon(
0% 0%, 100% 0%, 100% 60%, 0% 60%,
0% 64%, 100% 64%, 100% 74%, 0% 74%,
0% 78%, 100% 78%, 100% 86%, 0% 86%,
0% 90%, 100% 90%, 100% 100%, 0% 100%
);
animation: sun-pulse 6s ease-in-out infinite alternate;
}
.synthwave-grid {
position: absolute;
width: 300%;
height: 200%;
top: 45%;
left: -100%;
background-image:
linear-gradient(rgba(0, 240, 255, 0.45) 1.5px, transparent 1.5px),
linear-gradient(90deg, rgba(255, 0, 127, 0.45) 1.5px, transparent 1.5px);
background-size: 55px 55px;
transform: rotateX(75deg) rotateZ(calc(var(--mouse-x, 0) * 12deg));
transform-origin: center top;
animation: retro-scroll 4s linear infinite;
transition: transform 0.25s ease-out;
}
.synthwave-vignette {
position: absolute;
inset: 0;
background: radial-gradient(circle at center, transparent 30%, rgba(13, 1, 33, 0.8) 100%);
pointer-events: none;
}
@keyframes sun-pulse {
0% { transform: translateY(30px) scale(1); filter: brightness(1); }
100% { transform: translateY(30px) scale(1.05); filter: brightness(1.15); }
}
@keyframes retro-scroll {
0% { transform: rotateX(75deg) rotateZ(calc(var(--mouse-x, 0) * 12deg)) translateY(0); }
100% { transform: rotateX(75deg) rotateZ(calc(var(--mouse-x, 0) * 12deg)) translateY(55px); }
}
` }} />
{/* HTML Structure */}
<div
className="w-full h-full"
dangerouslySetInnerHTML={{ __html: `
<div class="synthwave-grid-wrap">
<div class="synthwave-sky">
<div class="synthwave-sun"></div>
</div>
<div class="synthwave-grid"></div>
<div class="synthwave-vignette"></div>
</div>
` }}
/>
</div>
);
}Raw CSS Stylesheet Snippet
.synthwave-grid-wrap {
width: 100%;
height: 100%;
background: linear-gradient(to bottom, #0d0121 0%, #030008 100%);
overflow: hidden;
position: relative;
perspective: 280px;
}
.synthwave-sky {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 50%;
background: radial-gradient(circle at 50% 100%, rgba(255, 0, 128, 0.25) 0%, transparent 60%);
display: flex;
align-items: flex-end;
justify-content: center;
}
.synthwave-sun {
width: 160px;
height: 160px;
border-radius: 50%;
background: linear-gradient(to bottom, #ff007f 0%, #ff8000 100%);
box-shadow: 0 0 50px rgba(255, 0, 127, 0.6);
transform: translateY(30px);
position: relative;
clip-path: polygon(
0% 0%, 100% 0%, 100% 60%, 0% 60%,
0% 64%, 100% 64%, 100% 74%, 0% 74%,
0% 78%, 100% 78%, 100% 86%, 0% 86%,
0% 90%, 100% 90%, 100% 100%, 0% 100%
);
animation: sun-pulse 6s ease-in-out infinite alternate;
}
.synthwave-grid {
position: absolute;
width: 300%;
height: 200%;
top: 45%;
left: -100%;
background-image:
linear-gradient(rgba(0, 240, 255, 0.45) 1.5px, transparent 1.5px),
linear-gradient(90deg, rgba(255, 0, 127, 0.45) 1.5px, transparent 1.5px);
background-size: 55px 55px;
transform: rotateX(75deg) rotateZ(calc(var(--mouse-x, 0) * 12deg));
transform-origin: center top;
animation: retro-scroll 4s linear infinite;
transition: transform 0.25s ease-out;
}
.synthwave-vignette {
position: absolute;
inset: 0;
background: radial-gradient(circle at center, transparent 30%, rgba(13, 1, 33, 0.8) 100%);
pointer-events: none;
}
@keyframes sun-pulse {
0% { transform: translateY(30px) scale(1); filter: brightness(1); }
100% { transform: translateY(30px) scale(1.05); filter: brightness(1.15); }
}
@keyframes retro-scroll {
0% { transform: rotateX(75deg) rotateZ(calc(var(--mouse-x, 0) * 12deg)) translateY(0); }
100% { transform: rotateX(75deg) rotateZ(calc(var(--mouse-x, 0) * 12deg)) translateY(55px); }
}