Illuminated Clouds 4
Illuminated CloudsA highly blurred, atmospheric shader effect featuring a dark, moody color palette dominated by deep purples, dark blues, and blacks. The image shows soft, flowing gradients that transition from very dark navy and purple tones in the upper left and lower portions to lighter lavender and pale blue hues in the center-right area. The effect creates a sense of depth and movement through subtle color shifts and soft focus. A fine film grain texture is applied throughout, adding a subtle noise pattern that enhances the cinematic quality. The overall composition suggests fog or mist-like atmospheric effects with gentle, undefined shapes that blend seamlessly into one another. The blur is significant, making it difficult to discern specific forms, which creates an ethereal, dreamlike quality. The lighting appears to come from the center-right, creating a subtle glow effect that contrasts with the darker surrounding areas. The mood is introspective and mysterious, with a cool color temperature throughout.
Code
<script setup lang="ts">
import {
Shader,
FilmGrain,
FlowingGradient,
Fog,
SolidColor
} from 'shaders/vue'
</script>
<template>
<Shader
:disable-telemetry="true"
>
<SolidColor color="#0b0a1e" />
<Fog id="idmo78g2qa8dpr72ig3" :blending="0.9" color-b="#000000" :detail="3" :mouse-influence="0.4" :seed="617" :visible="false" />
<FlowingGradient color-a="#0d0c1f" color-b="#1a2842" color-c="#a8c4e0" color-d="#d4b8e8" :distortion="0" mask-source="idmo78g2qa8dpr72ig3" mask-type="luminance" :seed="76" :speed="4" />
<FilmGrain :strength="0.075" />
</Shader>
</template>