Skip to content

Instantly share code, notes, and snippets.

@IkarosKappler
Created October 28, 2020 13:53
Show Gist options
  • Save IkarosKappler/b10a80faf9739528bb369fb3266fa66d to your computer and use it in GitHub Desktop.
Save IkarosKappler/b10a80faf9739528bb369fb3266fa66d to your computer and use it in GitHub Desktop.
A set of green shades making up some malachite (the mineral) gradient
// Import your preferred Color class
import { Color } from "./datastructures/Color";
// A mix of green shades
// Example at https://www.int2byte.de/public/plot-boilerplate/screenshots/screenshots-fullcolor/screenshot-20201027-0-multiple-circle-intersection-malachite.png
export const WebColorsMalachite : Array<Color> = [
Color.makeRGB(0,21,6),
Color.makeRGB(0,30,12),
Color.makeRGB(0,52,28),
Color.makeRGB(0,81,47),
Color.makeRGB(21,134,88),
Color.makeRGB(0,46,19),
Color.makeRGB(0,68,40),
Color.makeRGB(11,81,55),
Color.makeRGB(0,91,46),
Color.makeRGB(0,111,46),
Color.makeRGB(33,140,106)
];
@IkarosKappler
Copy link
Author

Example:

Malachite Colors

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment