This is the code for the 'Rainbow Cursor' edited to make the trans flag :] Check out their website here!
Put the text below between the
and tags in your html. (Would be nice to credit tholman somewhere on your site as well!)----------
<script src="https://unpkg.com/cursor-effects@latest/dist/browser.js"></script>
<script>
window.addEventListener("load", (event) => {
new cursoreffects.rainbowCursor();
cursoreffects.rainbowCursor({
colors: ["lightskyblue", "pink", "white", "white", "pink", "lightskyblue"] });
});
</script>