Opacity
Control the opacity of elements.
Example
The opacity property sets the opacity level for an element. The opacity level describes the transparency level.
Set the opacity of an element using utilities.
<div class="text-white bg-primary">100%</div>
<div class="text-white bg-primary/85">85%</div>
<div class="text-white bg-primary/75">75%</div>
<div class="text-white bg-primary/50">50%</div>
<div class="text-white bg-primary/25">25%</div>
100%
85%
75%
50%
25%

