Drifting Contours 7
Drifting ContoursA vibrant magenta-dominated abstract shader effect featuring flowing, organic wave patterns. The composition displays layered plasma-like distortions with smooth, undulating contour lines that create a sense of depth and movement. The upper left portion shows tightly packed parallel lines that curve and flow organically, creating a feathered or hair-like texture that gradually transitions into broader, more fluid wave patterns across the center and right side of the composition. The color palette transitions from deep purple-magenta (#6e94e7 blue base mixing with #e721ef magenta) creating a rich, saturated pink-purple atmosphere. Subtle darker purple tones (#5a3182) provide shadow and depth, while bright magenta accents (#ff30f3) add luminosity. The effect has a soft, glowing quality with smooth gradients and no harsh edges. The contour lines create rhythmic visual patterns that suggest movement and fluidity, reminiscent of liquid dynamics or electromagnetic field visualizations. The overall mood is energetic yet smooth, with a modern, digital aesthetic. The liquify effect adds a subtle warping quality that makes the entire composition feel slightly malleable and organic, as if the patterns are gently flowing and transforming.
Code
<script setup lang="ts">
import {
Shader,
Blob,
ContourLines,
Liquify,
Plasma
} from 'shaders/vue'
</script>
<template>
<Shader
:disable-telemetry="true"
>
<Plasma :balance="29" color-a="#6e94e7" color-b="#e721ef" :contrast="0.7" :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.81, y: 0.14 }" color-a="#5a3182" color-b="#ff30f3" :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>