JSFiddle - React, Tailwind, and code Playground

by iBertel

JavaScript

$(document).mousemove(function(e) {
  var $width = ($(document).width()) / 255;
  var $height = ($(document).height()) / 255;
  var $pageX = parseInt(e.pageX / $width, 10);
  var $pageY = parseInt(e.pageY / $height, 10);
  $("body").css("background-color", "rgb(" + $pageX + "," + $pageY + "," + $pageX + ")");
});