Undertones 6
UndertonesA dark, sophisticated shader effect featuring diagonal striped patterns across a predominantly black background. The composition showcases four vertical glowing bands with intense blue luminescence positioned in the center-left area of the frame. The leftmost band exhibits a deep purple-to-red gradient transition, while the three central bands display vibrant electric blue (#0033ff to #00e1ff range) with soft, diffused glowing edges that create a volumetric light effect. The rightmost band transitions back to darker purple tones. The entire composition is overlaid with fine diagonal line patterns that create a ribbed or fluted glass texture, giving the effect a sense of depth and refraction. A subtle film grain texture is applied uniformly across the image, adding analog quality. The glowing bands appear to have chromatic aberration and light diffusion, suggesting movement or energy flow. The overall atmosphere is modern, technological, and cinematic with high contrast between the luminous blue elements and the deep black background. The lighting creates a sense of three-dimensionality through subtle shadowing and highlight variations on the glowing surfaces.
Code
<script setup lang="ts">
import {
Shader,
ChromaFlow,
FilmGrain,
FlutedGlass,
Swirl
} from 'shaders/vue'
</script>
<template>
<Shader
:disable-telemetry="true"
>
<Swirl color-a="#000000" color-b="#0a0a0a" :detail="1.7" />
<ChromaFlow base-color="#18181a" down-color="#0033ff" left-color="#0059ff" :momentum="13" right-color="#5500ff" up-color="#00e1ff" />
<FlutedGlass :aberration="0.61" :angle="28" :frequency="8" :highlight="0.12" :highlight-softness="0" :light-angle="-90" :refraction="4" shape="rounded" :softness="1" :speed="0.15" />
<FilmGrain :strength="0.05" />
</Shader>
</template>