Notifications

Johnny Depp
06:05 AM
There are many variations of passages of Lorem Ipsum available,but the majority have suffered alteration in some form,by injected humour,or randomi

Robert De Niro
01:10 PM
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500

Tom Cruise
05:09 AM
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem

Johnny Depp
06:05 AM
Contrary to popular belief,Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC,making it over 20

Tom Cruise
01:10 PM
There are many variations of passages of Lorem Ipsum available,but the majority have suffered alteration in some form,by injected humour,or randomi

Progressbar
Basic Progressbar
Show code
<div class="w-full h-2 bg-gray-400 rounded-full">
<div class="w-1/2 h-full bg-theme-1 rounded-full"></div>
</div>
<div class="w-full h-2 bg-gray-400 rounded-full mt-3">
<div class="w-2/3 h-full bg-theme-1 rounded-full"></div>
</div>
<div class="w-full h-2 bg-gray-400 rounded-full mt-3">
<div class="w-3/4 h-full bg-theme-1 rounded-full"></div>
</div>
Progressbar with Label
Show code
50%
60%
70%
<div class="w-full h-4 bg-gray-400 rounded">
<div class="w-1/2 h-full bg-theme-1 rounded text-center text-xs text-white">50%</div>
</div>
<div class="w-full h-4 bg-gray-400 rounded mt-3">
<div class="w-2/3 h-full bg-theme-1 rounded text-center text-xs text-white">60%</div>
</div>
<div class="w-full h-4 bg-gray-400 rounded mt-3">
<div class="w-3/4 h-full bg-theme-1 rounded text-center text-xs text-white">70%</div>
</div>
Progressbar Height
Show code
<div class="w-full h-1 bg-gray-400 rounded-full">
<div class="w-1/2 h-full bg-theme-1 rounded-full"></div>
</div>
<div class="w-full h-2 bg-gray-400 rounded mt-3">
<div class="w-2/3 h-full bg-theme-1 rounded"></div>
</div>
<div class="w-full h-3 bg-gray-400 rounded mt-3">
<div class="w-3/4 h-full bg-theme-1 rounded"></div>
</div>
Progressbar Color
Show code
<div class="w-full h-2 bg-gray-400 rounded-full">
<div class="w-1/2 h-full bg-theme-1 rounded-full"></div>
</div>
<div class="w-full h-2 bg-gray-400 rounded mt-3">
<div class="w-2/3 h-full bg-theme-9 rounded"></div>
</div>
<div class="w-full h-2 bg-gray-400 rounded mt-3">
<div class="w-3/4 h-full bg-theme-12 rounded"></div>
</div>
<div class="w-full h-2 bg-gray-400 rounded mt-3">
<div class="w-3/4 h-full bg-theme-6 rounded"></div>
</div>