Skip to content

Instantly share code, notes, and snippets.

@takawo
Created October 30, 2022 04:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takawo/97518844fb3701618d9750bef2af8853 to your computer and use it in GitHub Desktop.
Save takawo/97518844fb3701618d9750bef2af8853 to your computer and use it in GitHub Desktop.
// color scheme reference : https://www.schemecolor.com/halloween-themed-color-schemes.php
// use in p5.js
// let palette = random(halloween_color_scheme).colors;
const halloween_color_scheme = [
{
name: "all-hallows-eve",
colors: ["#7A14A6", "#141A8C", "#324024", "#F27405", "#732817"],
},
{
name: "dark-halloween",
colors: ["#222126", "#3C3C40", "#8C887D", "#593C23", "#735236"],
},
{
name: "deadly-halloween",
colors: ["#1F261D", "#324025", "#593311", "#8C501C", "#401111"],
},
{
name: "gold-and-black-halloween",
colors: ["#F2E18D", "#F2B705", "#D99C2B", "#BF7821", "#261E1A"],
},
{
name: "halloween-attack",
colors: ["#73192A", "#591420", "#26251D", "#59533F", "#26100B"],
},
{
name: "halloween-birthday",
colors: ["#5336BF", "#95BF56", "#C4D979", "#F25D27", "#F27D52"],
},
{
name: "halloween-cake",
colors: ["#2ABF24", "#218C11", "#A6550F", "#F26430", "#D93814"],
},
{
name: "halloween-devil",
colors: ["#F2B90F", "#F28E13", "#F23C13", "#8C0808", "#590B0B"],
},
{
name: "halloween-fashionista",
colors: ["#A09FA6", "#D2D2D9", "#D94423", "#F26241", "#593C36"],
},
{
name: "halloween-ghost",
colors: ["#A6A6A6", "#F0F1F2", "#F25D27", "#D9663D", "#0D0D0D"],
},
{
name: "halloween-horror",
colors: ["#202608", "#3C401C", "#9FA66D", "#898C72", "#736E27"],
},
{
name: "halloween-love",
colors: ["#4D5359", "#D9A84E", "#F2BF5E", "#F2766B", "#D94A4A"],
},
{
name: "halloween-makup",
colors: ["#0B0D0C", "#A67926", "#8C6F3A", "#735A45", "#26211D"],
},
{
name: "halloween-monster",
colors: ["#0B0D0C", "#A67926", "#8C6F3A", "#735A45", "#26211D"],
},
{
name: "halloween-nightmare",
colors: ["#F2921D", "#F27127", "#D95525", "#732514", "#A63C24"],
},
{
name: "halloween-pumpkin",
colors: ["#2E5922", "#214013", "#F2CE16", "#F28B30", "#F2620F"],
},
{
name: "halloween-scares",
colors: ["#723FA6", "#0C0D0C", "#55A603", "#F2811D", "#D98162"],
},
{
name: "halloween-simples",
colors: ["#F28322", "#BF8450", "#F25922", "#260101", "#0D0D0D"],
},
{
name: "happy-halloweens",
colors: ["#8734BF", "#68BF2A", "#F2E52E", "#F27F1B", "#D92525"],
},
{
name: "playful-halloween",
colors: ["#58328C", "#7ABF49", "#D9D0BF", "#F27127", "#262424"],
},
{
name: "scared-on-halloween",
colors: ["#D9CAAD", "#D97823", "#8C2A14", "#590A03", "#260C0C"],
},
{
name: "trick-or-treat",
colors: ["#532A8C", "#6EA637", "#F2B90C", "#BF3A0A", "#F25D27"],
},
{
name: "witch-which-witch",
colors: ["#2E148C", "#3DA61F", "#25401E", "#5FBF1B", "#0D0D0C"],
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment