JSFiddle - React, Tailwind, and code Playground

by khamer

HTML

<h1>shadow</h1>

SCSS

h1 {
    @for $i from 1 through 10 {
        $shadow: $shadow, $i $i blue;
    }
    
    text-shadow: $shadow;
}