Drifting Contours 5
Drifting ContoursA fluid, organic abstract composition featuring smooth, undulating contour lines that create a topographical map-like effect. The primary visual element consists of nested, flowing curved lines in purple and magenta tones that ripple across the composition from left to right, creating a sense of movement and depth. The background is a warm coral-salmon gradient that provides strong contrast to the cool purple line work. The contour lines vary in thickness and density, with tighter line spacing creating areas of visual intensity, particularly along the edges and curves. The lines appear to follow a wave-like pattern, suggesting liquid or plasma-based distortion effects. A subtle blob-like form with purple-to-magenta gradient coloring is positioned in the lower-center area, adding dimensional depth. The overall effect is reminiscent of topographic elevation maps or fluid dynamics visualization, with a modern, minimalist aesthetic. The liquify effect adds subtle warping and organic deformation to the line patterns, creating a sense of fluidity and motion. The composition has a calm, meditative quality despite the dynamic line work, with excellent balance between the negative space and the detailed line patterns.
Code
<script setup lang="ts">
import {
Shader,
Blob,
ContourLines,
Liquify,
Plasma
} from 'shaders/vue'
</script>
<template>
<Shader
:disable-telemetry="true"
>
<Plasma :balance="40" color-a="#ed5fbc" color-b="#fe7c74" :density="0.9" :warp="0.3" />
<ContourLines :gamma="0.1" :levels="30" line-color="#ff4a4a" :line-width="1.5" source="alpha">
<Blob :center="{ x: 0.52, y: 1 }" color-a="#730db1" color-b="#cf62dc" :deformation="0.7" highlight-color="#fbffb3" :highlight-intensity="1" :highlight-x="-0.5" :highlight-y="-0.6" :highlight-z="-0.1" :seed="42" :size="0.7" :softness="1" :speed="0.2" />
</ContourLines>
<Liquify :decay="0.5" :intensity="1" :radius="3" />
</Shader>
</template>