JSFiddle - React, Tailwind, and code Playground

by OjisanSeiuchi

HTML

<html class="mobile nightMode">
<body class="card">
<div>
<p>
GABA release from the globus pallidus blah blah blah ventral medial nucleus blah blah blah.
</p>
</div>
</body>
</html>

CSS

.card {
    background: black;
    color: blue;
}

.nightMode.desktop .card {
    color: blue;
}

.nightMode.mobile .card {
    color: white;
}