JSFiddle - React, Tailwind, and code Playground

HTML

<a href="#" class="page-link">Lien 1</a>

<a href="#" class="page-link current">Lien 2</a>

CSS

body {
  background: black;
}

.page-link {
  color: blue;
}

.page-link:hover {
  color: red;
}

.page-link:active {
  color: green;
}

.page-link.current {
  color: orange;
}

.page-link.current:hover {
  color: yellow;
}

.page-link.current:active {
  color: pink;
}