JSFiddle - React, Tailwind, and code Playground

by John Doe

HTML

<progress max="100" value="25">25</progress>

CSS

progress{
  width: 100%;
  -webkit-appearance: none;
   appearance: none;

}
progress[value]::-webkit-progress-bar {
  background-color: grey;
  border-radius: 2px;
  box-shadow: none;
}

progress[value]::-webkit-progress-value {
  background-color: pink;
}