From 1ac590ebd42ec34e19839e6d4e85950633f109b8 Mon Sep 17 00:00:00 2001 From: kcrisman Date: Fri, 27 Sep 2013 11:59:12 -0400 Subject: [PATCH] Add "sage" colors to colors.py A Sage user commented that one couldn't make plots in Sage "sage". But this is a color. http://xkcd.com/color/rgb/ recommends the following, and the discussion at https://groups.google.com/forum/#!topic/sage-devel/CnH45Ym4zSk indicates it could be useful as well as fun. --- lib/matplotlib/colors.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/matplotlib/colors.py b/lib/matplotlib/colors.py index 6199faa8750b..fafa9d8dd6f2 100644 --- a/lib/matplotlib/colors.py +++ b/lib/matplotlib/colors.py @@ -95,6 +95,7 @@ 'darkorange': '#FF8C00', 'darkorchid': '#9932CC', 'darkred': '#8B0000', + 'darksage': '#598556', 'darksalmon': '#E9967A', 'darkseagreen': '#8FBC8F', 'darkslateblue': '#483D8B', @@ -133,6 +134,7 @@ 'lightgreen': '#90EE90', 'lightgray': '#D3D3D3', 'lightpink': '#FFB6C1', + 'lightsage': '#BCECAC', 'lightsalmon': '#FFA07A', 'lightseagreen': '#20B2AA', 'lightskyblue': '#87CEFA', @@ -181,6 +183,7 @@ 'royalblue': '#4169E1', 'saddlebrown': '#8B4513', 'salmon': '#FA8072', + 'sage': '#87AE73', 'sandybrown': '#FAA460', 'seagreen': '#2E8B57', 'seashell': '#FFF5EE',