Skip to content

Instantly share code, notes, and snippets.

@zprima
Created May 5, 2019 13:48
Show Gist options
  • Save zprima/57b060b963ce8115153348be591d4cb4 to your computer and use it in GitHub Desktop.
Save zprima/57b060b963ce8115153348be591d4cb4 to your computer and use it in GitHub Desktop.
medium_p7_c2
import React from "react";
// define list of colors
export const colors = [
{ name: "white", hex: "#fff" },
{ name: "black", hex: "#000" },
{ name: "red", hex: "#ff0000" },
{ name: "green", hex: "#00ff00" },
{ name: "blue", hex: "#0000ff" },
{ name: "pink", hex: "#ffa6c9" },
{ name: "yellow", hex: "#ffff00" },
{ name: "brown", hex: "#a52a2a" },
{ name: "light blue", hex: "#add8e6" },
{ name: "purple", hex: "#9370db" }
];
// create painter context
// make the first color its default value
export const PainterContext = React.createContext();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment