JSFiddle - React, Tailwind, and code Playground

HTML

<div class="items">
    <article class="today">
        this is today
    </article>
    <article class="today">
        this is today
    </article>
    <article class="today">
        this is today
    </article>
    <article>
        Not today
    </article>
    <article>
        Not today
    </article>
</div>

CSS

article {
    background: cyan;
}

article:last-child { 
    background: black;
    color: white;
}