JSFiddle - React, Tailwind, and code Playground

by darcyclarke

HTML

<p>Lorem Ipsum something or other</p>

CSS

body {
   background: black;
   color: white;    
}
::selection {
  color: #535353 !important;
  background: white !important;
  opacity: 1 !important;
}

::-webkit-selection {
  color: #535353 !important;
  background: white !important;
  opacity: 1 !important;  
}

::-moz-selection {
  color: #535353 !important;
  background: white !important;
  opacity: 1 !important;
}