Skip to content

Instantly share code, notes, and snippets.

@Usse
Created July 26, 2013 08:01
Show Gist options
  • Save Usse/6087083 to your computer and use it in GitHub Desktop.
Save Usse/6087083 to your computer and use it in GitHub Desktop.
Colors RGB array
colors = {
black: [0, 0, 0],
white: [255, 255, 255],
transparent: [255, 255, 255, 0],
aqua: [0, 255, 255],
lime: [0, 255, 0],
silver: [192, 192, 192],
maroon: [128, 0, 0],
teal: [0, 128, 128],
blue: [0, 0, 255],
navy: [0, 0, 128],
fuchsia: [255, 0, 255],
olive: [128, 128, 0],
yellow: [255, 255, 0],
orange: [255, 165, 0],
gray: [128, 128, 128],
purple: [128, 0, 128],
green: [0, 128, 0],
red: [255, 0, 0],
pink: [255, 192, 203],
cyan: [0, 255, 255]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment