JSFiddle - React, Tailwind, and code Playground

HTML

<div class="progress">
    <div class="bar" style="width: 36%"></div>
    <span>517/600</span>
</div>

CSS

.progress {
    width: 300px;
    height: 30px;
    background: red;
    position: relative;
}

.bar {
    background: blue;
    height: 30px;
    color: white;
} 
span {
    position: absolute;
    top: 5px;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
}