Digital Activation 2
Digital ActivationA sophisticated digital shader effect featuring a dark, almost black background (#0e0f14) with a subtle dot grid pattern in dark gray (#292936). The dominant visual element is a bright neon lime-green (#55ff0a) pixelated or square-based pattern that forms a cylindrical 3D structure, creating the illusion of a curved, tubular form wrapping around the composition. The green pattern transitions from dense, tightly-packed squares at the top and sides to sparse individual dots toward the center and edges, creating a depth-of-field effect that suggests the viewer is looking through or into a digital tunnel. A glass refraction effect with chromatic aberration (0.8 intensity) distorts the underlying ASCII character pattern, creating a lens-like optical distortion centered at coordinates (0.89, 0.75). The spiral gradient animates from dark blue (#0a131f) to bright lime-green (#55ff0a), adding dynamic movement and visual interest. The overall aesthetic is cyberpunk/digital with a strong sense of three-dimensional perspective, suggesting data visualization or a digital portal. The lighting angle is set to 274 degrees, creating subtle highlights and edge definition that enhance the glass-like quality of the central distortion effect.
Code
<script setup lang="ts">
import {
Shader,
Ascii,
DotGrid,
Glass,
SolidColor,
Spiral
} from 'shaders/vue'
</script>
<template>
<Shader
:disable-telemetry="true"
>
<SolidColor color="#0e0f14" />
<DotGrid color="#292936" :density="49" :dot-size="0.1" />
<Glass :aberration="0.8" :center="{ x: 1, y: 0 }" :cutout="true" :edge-softness="0.2" :fresnel="0" :fresnel-softness="0.23" :highlight="0" :highlight-softness="0.16" :light-angle="274" :refraction="2" :scale="1.45" :shape="{ type: 'ringSDF', radius: 0.8, thickness: 0.185 }">
<SolidColor color="#0e0f14" />
<Ascii characters="◘•" :gamma="0.8" :spacing="0.8">
<Spiral :center="{ x: 0.89, y: 0.75 }" color-a="#0a131f" color-b="#55ff0a" :softness="0.4" />
</Ascii>
</Glass>
</Shader>
</template>