UNPKG

create-parcel-static

Version:

Project builder for creating static sites based Parcel

15 lines (12 loc) 332 B
import $ from 'jquery'; const getColor = () => `#${Math.floor(Math.random() * 16777215) .toString(16) .padStart(6, "0")}`; const colorize = () => { $("#btn").on("click", () => { $("html").css("--head-color-start", getColor()); $("html").css("--head-color-end", getColor()); }); }; $(colorize);