Created
October 28, 2020 13:53
-
-
Save IkarosKappler/b10a80faf9739528bb369fb3266fa66d to your computer and use it in GitHub Desktop.
A set of green shades making up some malachite (the mineral) gradient
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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) | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example: