Filters
Element filters
Section titled “Element filters”import { tw } from 'typewritingclass'
tw.blur('8px')tw.brightness('150%')tw.contrast('125%')tw.grayscale('100%')tw.saturate('200%')tw.hueRotate('90deg')tw.dropShadow('0 4px 3px rgb(0 0 0 / 0.07)')Backdrop filters
Section titled “Backdrop filters”For frosted glass effects:
tw.backdropBlur('12px')tw.backdropBrightness('150%')tw.backdropSaturate('200%')Frosted glass example
Section titled “Frosted glass example”const frosted = tw .bg('rgb(255 255 255 / 0.1)') .backdropBlur('16px') .rounded('xl') .p(6) .border('1px') .borderColor('rgb(255 255 255 / 0.2)')