Polynesian Waves 6
Polynesian WavesA mesmerizing purple-toned shader effect featuring concentric diamond and hexagonal patterns that create a sense of infinite depth and movement. The composition consists of nested geometric shapes - primarily elongated diamonds and hexagons - that radiate outward from multiple focal points across the image. The color palette transitions smoothly from deep dark purple (#1a0a3d) in the shadows to vibrant violet (#8b5cf6) in the mid-tones, with subtle highlights in light lavender (#c4b5fd). The wave distortion effect creates a subtle undulating quality to the geometric lines, giving them an organic, breathing appearance despite their mathematical precision. The dither effect with linear dodge blending adds a fine granular texture and luminous quality, particularly visible in the lighter purple areas, creating a sense of energy and vibrancy. The overall effect is hypnotic and three-dimensional, with the mirrored edge handling creating seamless tiling. The 131-degree rotation of the gradient transform adds dynamic diagonal flow to the pattern. The lighting appears to come from multiple angles, creating depth through subtle shadow and highlight variations within each geometric layer. The atmosphere is ethereal and digital, with a modern, abstract aesthetic.
Code
<script setup lang="ts">
import {
Shader,
Dither,
LinearGradient,
WaveDistortion
} from 'shaders/vue'
</script>
<template>
<Shader
:disable-telemetry="true"
>
<LinearGradient :angle="285" color-a="#1a0a3d" color-b="#8b5cf6" color-space="oklch" edges="wrap" :end="{ x: 0.5, y: 0.5 }" :start="{ x: 0.47, y: 0.61 }" :transform="{ edges: 'mirror', rotation: 131, scale: 0.25 }" />
<WaveDistortion :angle="195" edges="mirror" :frequency="1.8" :strength="0.07" />
<Dither blend-mode="linearDodge" color-b="#c4b5fd" :pixel-size="1" :threshold="0.72" />
</Shader>
</template>