Kiwi
KiwiA soft, organic gradient composition dominated by warm yellow and green tones. The image features a central blob-like shape with gentle, undulating edges that appears to be composed of overlapping organic forms. The primary mass is a warm golden-yellow (#fce656, #e9ac1e) positioned in the center-lower portion of the frame. Surrounding this central blob are softer, more diffuse green halos (#3dd812, #2bf07b) that fade into the yellow background, creating a luminous, glowing effect. The overall aesthetic is highly blurred and soft-focused with no sharp edges, suggesting multiple wave distortion effects layered together. The composition has a dreamy, ethereal quality with smooth color transitions and subtle undulations throughout. A fine film grain texture is visible across the entire surface, adding subtle noise and tactile quality. The kaleidoscopic structure creates subtle symmetrical patterns beneath the surface, though they are heavily obscured by the soft rendering. The spatial arrangement suggests depth with the yellow blob appearing closer and the green halos receding into the background. The mood is warm, organic, and meditative with a natural, almost biological appearance.
Code
<script setup lang="ts">
import {
Shader,
Blob,
FilmGrain,
Kaleidoscope,
Swirl,
WaveDistortion
} from 'shaders/vue'
</script>
<template>
<Shader
:disable-telemetry="true"
>
<Swirl color-a="#3dd812" color-b="#2bf03b" color-space="oklch" />
<WaveDistortion :angle="257" edges="wrap" :frequency="1.6" :strength="0.1" :transform="{ scale: 1.3 }">
<WaveDistortion :angle="73" edges="mirror" :frequency="8.1" :speed="0.3" wave-type="sawtooth">
<Blob :center="{ x: 0.49, y: 1 }" color-a="#fce656" color-b="#e9ac1e" :deformation="0.7" highlight-color="#03b2ff" :highlight-x="-0.5" :highlight-y="-0.9" :highlight-z="-0.1" :size="0.8" :softness="1" />
</WaveDistortion>
</WaveDistortion>
<Kaleidoscope :center="{ x: 0.5, y: 1 }" :segments="17" />
<FilmGrain :strength="0.4" />
</Shader>
</template>