Neon Sign 4
Neon SignA neon cross symbol rendered against a pure black background with a glowing green outline. The cross features a classic Christian/medical cross shape with slightly rounded inner corners and smooth edges. The primary neon glow is a bright lime-green (#55ff00) with an additional cyan-blue (#00c3ff) secondary glow creating a dual-color neon tube effect. The glow radiates outward from the cross outline with a soft halo effect, creating depth and luminosity typical of neon signage. The cross outline has a tube-like thickness with specular highlights suggesting 3D cylindrical neon tubing. A subtle cyan-blue glow appears on the lower right portion of the cross, indicating directional lighting at approximately 251 degrees. The overall effect is enhanced by floating particles scattered around the cross in a light-green color (#4fffa7), creating a subtle twinkling atmosphere. A tilt-shift blur effect is applied at a 70-degree angle, creating a miniature/diorama-like quality with selective focus. The black background is nearly absolute with minimal texture, allowing the vibrant neon to be the dominant visual element. The atmosphere is modern, digital, and evokes nighttime urban aesthetics with a mystical quality.
Code
<script setup lang="ts">
import {
Shader,
FloatingParticles,
ImageTexture,
Neon,
SolidColor,
TiltShift
} from 'shaders/vue'
</script>
<template>
<Shader
:disable-telemetry="true"
>
<ImageTexture url="https://data.shaders.com/storage/v1/object/public/user-uploaded-images/user_33nh0FG48zZa0rIUZuK7vgwPfZe/h7eBDklfg_bz.jpeg" />
<SolidColor color="#000000" :opacity="0.95" />
<Neon color="#55ff00" :corner-smoothing="0.2" :flicker-amount="0.24" :flicker-speed="1.1" :flow-amount="1" :flow-speed="2.6" glow-color="#00ff59" :glow-intensity="0.25" :glow-radius="0.47" :hot-core-intensity="0.45" :intensity="1.95" :light-angle="251" :scale="0.9" :secondary-blend="1" secondary-color="#00c3ff" shape-sdf-url="https://data.shaders.com/storage/v1/object/public/user-uploaded-images/user_33nh0FG48zZa0rIUZuK7vgwPfZe/w6Gk_KBfIO2t_sdf.bin" :specular-intensity="0.95" :specular-size="0.32" :tube-thickness="0.29" />
<FloatingParticles :angle="81" :angle-variance="105" particle-color="#4fffa7" :particle-density="0.8" :particle-size="0.3" :randomness="0.5" :speed="0.1" :speed-variance="0.2" :twinkle="0.7" />
<TiltShift :angle="70" :falloff="0.4" :intensity="80" :width="0.2" />
</Shader>
</template>