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,100);
var $pageY = parseInt(e.pageY / $height,100);
$("body").css("background-color", "rgb("+$pageX+","+$pageY+","+$pageX+")");
});