Tinted Lenses 6
Tinted LensesA luminous gradient background transitioning from bright lime green (#45d51e) at the bottom to yellow-green (#b2df0f) in the upper-middle section, creating a vibrant, energetic atmosphere. The image features vertical fluted glass bars with a refraction effect at approximately 190 degrees, creating linear distortion patterns that run diagonally across the composition. These glass bars produce a prismatic, refractive quality with subtle wave distortions (amplitude 0.06, frequency 1.5) that bend and fragment the underlying gradient. The effect creates the illusion of looking through corrugated or ribbed glass panels, with mirror-edge behavior causing reflections at the boundaries. The overall mood is modern and dynamic, with a glassy, translucent quality that suggests depth and movement. The refraction index of 2.76 creates pronounced bending of light, while the low opacity and normal blend mode allow the gradient to show through the glass effect, maintaining visibility of the underlying color palette. The bars are evenly spaced with a frequency of 5, creating a rhythmic, striped visual pattern.
Code
<script setup lang="ts">
import {
Shader,
Duotone,
FlutedGlass,
ImageTexture
} from 'shaders/vue'
</script>
<template>
<Shader
:disable-telemetry="true"
>
<ImageTexture url="https://data.shaders.com/storage/v1/object/public/user-uploaded-images/user_33nh0FG48zZa0rIUZuK7vgwPfZe/e7Jy8b5il0_q.png" />
<Duotone color-a="#45d51e" color-b="#b2df0f" />
<FlutedGlass :aberration="0" :angle="190" :frequency="5" :highlight="0" :highlight-softness="0" :light-angle="-90" :refraction="2.76" :softness="0" :speed="0.05" />
</Shader>
</template>