Blame src/color_maps.hpp

Packit Service 7770af
Packit Service 7770af
#ifndef SASS_COLOR_MAPS_H
Packit Service 7770af
#define SASS_COLOR_MAPS_H
Packit Service 7770af
Packit Service 7770af
#include <map>
Packit Service 7770af
#include "ast.hpp"
Packit Service 7770af
Packit Service 7770af
namespace Sass {
Packit Service 7770af
Packit Service 7770af
  struct map_cmp_str
Packit Service 7770af
  {
Packit Service 7770af
    bool operator()(char const *a, char const *b) const
Packit Service 7770af
    {
Packit Service 7770af
      return std::strcmp(a, b) < 0;
Packit Service 7770af
    }
Packit Service 7770af
  };
Packit Service 7770af
Packit Service 7770af
  namespace ColorNames
Packit Service 7770af
  {
Packit Service 7770af
    extern const char aliceblue[];
Packit Service 7770af
    extern const char antiquewhite[];
Packit Service 7770af
    extern const char cyan[];
Packit Service 7770af
    extern const char aqua[];
Packit Service 7770af
    extern const char aquamarine[];
Packit Service 7770af
    extern const char azure[];
Packit Service 7770af
    extern const char beige[];
Packit Service 7770af
    extern const char bisque[];
Packit Service 7770af
    extern const char black[];
Packit Service 7770af
    extern const char blanchedalmond[];
Packit Service 7770af
    extern const char blue[];
Packit Service 7770af
    extern const char blueviolet[];
Packit Service 7770af
    extern const char brown[];
Packit Service 7770af
    extern const char burlywood[];
Packit Service 7770af
    extern const char cadetblue[];
Packit Service 7770af
    extern const char chartreuse[];
Packit Service 7770af
    extern const char chocolate[];
Packit Service 7770af
    extern const char coral[];
Packit Service 7770af
    extern const char cornflowerblue[];
Packit Service 7770af
    extern const char cornsilk[];
Packit Service 7770af
    extern const char crimson[];
Packit Service 7770af
    extern const char darkblue[];
Packit Service 7770af
    extern const char darkcyan[];
Packit Service 7770af
    extern const char darkgoldenrod[];
Packit Service 7770af
    extern const char darkgray[];
Packit Service 7770af
    extern const char darkgrey[];
Packit Service 7770af
    extern const char darkgreen[];
Packit Service 7770af
    extern const char darkkhaki[];
Packit Service 7770af
    extern const char darkmagenta[];
Packit Service 7770af
    extern const char darkolivegreen[];
Packit Service 7770af
    extern const char darkorange[];
Packit Service 7770af
    extern const char darkorchid[];
Packit Service 7770af
    extern const char darkred[];
Packit Service 7770af
    extern const char darksalmon[];
Packit Service 7770af
    extern const char darkseagreen[];
Packit Service 7770af
    extern const char darkslateblue[];
Packit Service 7770af
    extern const char darkslategray[];
Packit Service 7770af
    extern const char darkslategrey[];
Packit Service 7770af
    extern const char darkturquoise[];
Packit Service 7770af
    extern const char darkviolet[];
Packit Service 7770af
    extern const char deeppink[];
Packit Service 7770af
    extern const char deepskyblue[];
Packit Service 7770af
    extern const char dimgray[];
Packit Service 7770af
    extern const char dimgrey[];
Packit Service 7770af
    extern const char dodgerblue[];
Packit Service 7770af
    extern const char firebrick[];
Packit Service 7770af
    extern const char floralwhite[];
Packit Service 7770af
    extern const char forestgreen[];
Packit Service 7770af
    extern const char magenta[];
Packit Service 7770af
    extern const char fuchsia[];
Packit Service 7770af
    extern const char gainsboro[];
Packit Service 7770af
    extern const char ghostwhite[];
Packit Service 7770af
    extern const char gold[];
Packit Service 7770af
    extern const char goldenrod[];
Packit Service 7770af
    extern const char gray[];
Packit Service 7770af
    extern const char grey[];
Packit Service 7770af
    extern const char green[];
Packit Service 7770af
    extern const char greenyellow[];
Packit Service 7770af
    extern const char honeydew[];
Packit Service 7770af
    extern const char hotpink[];
Packit Service 7770af
    extern const char indianred[];
Packit Service 7770af
    extern const char indigo[];
Packit Service 7770af
    extern const char ivory[];
Packit Service 7770af
    extern const char khaki[];
Packit Service 7770af
    extern const char lavender[];
Packit Service 7770af
    extern const char lavenderblush[];
Packit Service 7770af
    extern const char lawngreen[];
Packit Service 7770af
    extern const char lemonchiffon[];
Packit Service 7770af
    extern const char lightblue[];
Packit Service 7770af
    extern const char lightcoral[];
Packit Service 7770af
    extern const char lightcyan[];
Packit Service 7770af
    extern const char lightgoldenrodyellow[];
Packit Service 7770af
    extern const char lightgray[];
Packit Service 7770af
    extern const char lightgrey[];
Packit Service 7770af
    extern const char lightgreen[];
Packit Service 7770af
    extern const char lightpink[];
Packit Service 7770af
    extern const char lightsalmon[];
Packit Service 7770af
    extern const char lightseagreen[];
Packit Service 7770af
    extern const char lightskyblue[];
Packit Service 7770af
    extern const char lightslategray[];
Packit Service 7770af
    extern const char lightslategrey[];
Packit Service 7770af
    extern const char lightsteelblue[];
Packit Service 7770af
    extern const char lightyellow[];
Packit Service 7770af
    extern const char lime[];
Packit Service 7770af
    extern const char limegreen[];
Packit Service 7770af
    extern const char linen[];
Packit Service 7770af
    extern const char maroon[];
Packit Service 7770af
    extern const char mediumaquamarine[];
Packit Service 7770af
    extern const char mediumblue[];
Packit Service 7770af
    extern const char mediumorchid[];
Packit Service 7770af
    extern const char mediumpurple[];
Packit Service 7770af
    extern const char mediumseagreen[];
Packit Service 7770af
    extern const char mediumslateblue[];
Packit Service 7770af
    extern const char mediumspringgreen[];
Packit Service 7770af
    extern const char mediumturquoise[];
Packit Service 7770af
    extern const char mediumvioletred[];
Packit Service 7770af
    extern const char midnightblue[];
Packit Service 7770af
    extern const char mintcream[];
Packit Service 7770af
    extern const char mistyrose[];
Packit Service 7770af
    extern const char moccasin[];
Packit Service 7770af
    extern const char navajowhite[];
Packit Service 7770af
    extern const char navy[];
Packit Service 7770af
    extern const char oldlace[];
Packit Service 7770af
    extern const char olive[];
Packit Service 7770af
    extern const char olivedrab[];
Packit Service 7770af
    extern const char orange[];
Packit Service 7770af
    extern const char orangered[];
Packit Service 7770af
    extern const char orchid[];
Packit Service 7770af
    extern const char palegoldenrod[];
Packit Service 7770af
    extern const char palegreen[];
Packit Service 7770af
    extern const char paleturquoise[];
Packit Service 7770af
    extern const char palevioletred[];
Packit Service 7770af
    extern const char papayawhip[];
Packit Service 7770af
    extern const char peachpuff[];
Packit Service 7770af
    extern const char peru[];
Packit Service 7770af
    extern const char pink[];
Packit Service 7770af
    extern const char plum[];
Packit Service 7770af
    extern const char powderblue[];
Packit Service 7770af
    extern const char purple[];
Packit Service 7770af
    extern const char red[];
Packit Service 7770af
    extern const char rosybrown[];
Packit Service 7770af
    extern const char royalblue[];
Packit Service 7770af
    extern const char saddlebrown[];
Packit Service 7770af
    extern const char salmon[];
Packit Service 7770af
    extern const char sandybrown[];
Packit Service 7770af
    extern const char seagreen[];
Packit Service 7770af
    extern const char seashell[];
Packit Service 7770af
    extern const char sienna[];
Packit Service 7770af
    extern const char silver[];
Packit Service 7770af
    extern const char skyblue[];
Packit Service 7770af
    extern const char slateblue[];
Packit Service 7770af
    extern const char slategray[];
Packit Service 7770af
    extern const char slategrey[];
Packit Service 7770af
    extern const char snow[];
Packit Service 7770af
    extern const char springgreen[];
Packit Service 7770af
    extern const char steelblue[];
Packit Service 7770af
    extern const char tan[];
Packit Service 7770af
    extern const char teal[];
Packit Service 7770af
    extern const char thistle[];
Packit Service 7770af
    extern const char tomato[];
Packit Service 7770af
    extern const char turquoise[];
Packit Service 7770af
    extern const char violet[];
Packit Service 7770af
    extern const char wheat[];
Packit Service 7770af
    extern const char white[];
Packit Service 7770af
    extern const char whitesmoke[];
Packit Service 7770af
    extern const char yellow[];
Packit Service 7770af
    extern const char yellowgreen[];
Packit Service 7770af
    extern const char rebeccapurple[];
Packit Service 7770af
    extern const char transparent[];
Packit Service 7770af
  }
Packit Service 7770af
Packit Service 7770af
  namespace Colors {
Packit Service 7770af
    extern const Color aliceblue;
Packit Service 7770af
    extern const Color antiquewhite;
Packit Service 7770af
    extern const Color cyan;
Packit Service 7770af
    extern const Color aqua;
Packit Service 7770af
    extern const Color aquamarine;
Packit Service 7770af
    extern const Color azure;
Packit Service 7770af
    extern const Color beige;
Packit Service 7770af
    extern const Color bisque;
Packit Service 7770af
    extern const Color black;
Packit Service 7770af
    extern const Color blanchedalmond;
Packit Service 7770af
    extern const Color blue;
Packit Service 7770af
    extern const Color blueviolet;
Packit Service 7770af
    extern const Color brown;
Packit Service 7770af
    extern const Color burlywood;
Packit Service 7770af
    extern const Color cadetblue;
Packit Service 7770af
    extern const Color chartreuse;
Packit Service 7770af
    extern const Color chocolate;
Packit Service 7770af
    extern const Color coral;
Packit Service 7770af
    extern const Color cornflowerblue;
Packit Service 7770af
    extern const Color cornsilk;
Packit Service 7770af
    extern const Color crimson;
Packit Service 7770af
    extern const Color darkblue;
Packit Service 7770af
    extern const Color darkcyan;
Packit Service 7770af
    extern const Color darkgoldenrod;
Packit Service 7770af
    extern const Color darkgray;
Packit Service 7770af
    extern const Color darkgrey;
Packit Service 7770af
    extern const Color darkgreen;
Packit Service 7770af
    extern const Color darkkhaki;
Packit Service 7770af
    extern const Color darkmagenta;
Packit Service 7770af
    extern const Color darkolivegreen;
Packit Service 7770af
    extern const Color darkorange;
Packit Service 7770af
    extern const Color darkorchid;
Packit Service 7770af
    extern const Color darkred;
Packit Service 7770af
    extern const Color darksalmon;
Packit Service 7770af
    extern const Color darkseagreen;
Packit Service 7770af
    extern const Color darkslateblue;
Packit Service 7770af
    extern const Color darkslategray;
Packit Service 7770af
    extern const Color darkslategrey;
Packit Service 7770af
    extern const Color darkturquoise;
Packit Service 7770af
    extern const Color darkviolet;
Packit Service 7770af
    extern const Color deeppink;
Packit Service 7770af
    extern const Color deepskyblue;
Packit Service 7770af
    extern const Color dimgray;
Packit Service 7770af
    extern const Color dimgrey;
Packit Service 7770af
    extern const Color dodgerblue;
Packit Service 7770af
    extern const Color firebrick;
Packit Service 7770af
    extern const Color floralwhite;
Packit Service 7770af
    extern const Color forestgreen;
Packit Service 7770af
    extern const Color magenta;
Packit Service 7770af
    extern const Color fuchsia;
Packit Service 7770af
    extern const Color gainsboro;
Packit Service 7770af
    extern const Color ghostwhite;
Packit Service 7770af
    extern const Color gold;
Packit Service 7770af
    extern const Color goldenrod;
Packit Service 7770af
    extern const Color gray;
Packit Service 7770af
    extern const Color grey;
Packit Service 7770af
    extern const Color green;
Packit Service 7770af
    extern const Color greenyellow;
Packit Service 7770af
    extern const Color honeydew;
Packit Service 7770af
    extern const Color hotpink;
Packit Service 7770af
    extern const Color indianred;
Packit Service 7770af
    extern const Color indigo;
Packit Service 7770af
    extern const Color ivory;
Packit Service 7770af
    extern const Color khaki;
Packit Service 7770af
    extern const Color lavender;
Packit Service 7770af
    extern const Color lavenderblush;
Packit Service 7770af
    extern const Color lawngreen;
Packit Service 7770af
    extern const Color lemonchiffon;
Packit Service 7770af
    extern const Color lightblue;
Packit Service 7770af
    extern const Color lightcoral;
Packit Service 7770af
    extern const Color lightcyan;
Packit Service 7770af
    extern const Color lightgoldenrodyellow;
Packit Service 7770af
    extern const Color lightgray;
Packit Service 7770af
    extern const Color lightgrey;
Packit Service 7770af
    extern const Color lightgreen;
Packit Service 7770af
    extern const Color lightpink;
Packit Service 7770af
    extern const Color lightsalmon;
Packit Service 7770af
    extern const Color lightseagreen;
Packit Service 7770af
    extern const Color lightskyblue;
Packit Service 7770af
    extern const Color lightslategray;
Packit Service 7770af
    extern const Color lightslategrey;
Packit Service 7770af
    extern const Color lightsteelblue;
Packit Service 7770af
    extern const Color lightyellow;
Packit Service 7770af
    extern const Color lime;
Packit Service 7770af
    extern const Color limegreen;
Packit Service 7770af
    extern const Color linen;
Packit Service 7770af
    extern const Color maroon;
Packit Service 7770af
    extern const Color mediumaquamarine;
Packit Service 7770af
    extern const Color mediumblue;
Packit Service 7770af
    extern const Color mediumorchid;
Packit Service 7770af
    extern const Color mediumpurple;
Packit Service 7770af
    extern const Color mediumseagreen;
Packit Service 7770af
    extern const Color mediumslateblue;
Packit Service 7770af
    extern const Color mediumspringgreen;
Packit Service 7770af
    extern const Color mediumturquoise;
Packit Service 7770af
    extern const Color mediumvioletred;
Packit Service 7770af
    extern const Color midnightblue;
Packit Service 7770af
    extern const Color mintcream;
Packit Service 7770af
    extern const Color mistyrose;
Packit Service 7770af
    extern const Color moccasin;
Packit Service 7770af
    extern const Color navajowhite;
Packit Service 7770af
    extern const Color navy;
Packit Service 7770af
    extern const Color oldlace;
Packit Service 7770af
    extern const Color olive;
Packit Service 7770af
    extern const Color olivedrab;
Packit Service 7770af
    extern const Color orange;
Packit Service 7770af
    extern const Color orangered;
Packit Service 7770af
    extern const Color orchid;
Packit Service 7770af
    extern const Color palegoldenrod;
Packit Service 7770af
    extern const Color palegreen;
Packit Service 7770af
    extern const Color paleturquoise;
Packit Service 7770af
    extern const Color palevioletred;
Packit Service 7770af
    extern const Color papayawhip;
Packit Service 7770af
    extern const Color peachpuff;
Packit Service 7770af
    extern const Color peru;
Packit Service 7770af
    extern const Color pink;
Packit Service 7770af
    extern const Color plum;
Packit Service 7770af
    extern const Color powderblue;
Packit Service 7770af
    extern const Color purple;
Packit Service 7770af
    extern const Color red;
Packit Service 7770af
    extern const Color rosybrown;
Packit Service 7770af
    extern const Color royalblue;
Packit Service 7770af
    extern const Color saddlebrown;
Packit Service 7770af
    extern const Color salmon;
Packit Service 7770af
    extern const Color sandybrown;
Packit Service 7770af
    extern const Color seagreen;
Packit Service 7770af
    extern const Color seashell;
Packit Service 7770af
    extern const Color sienna;
Packit Service 7770af
    extern const Color silver;
Packit Service 7770af
    extern const Color skyblue;
Packit Service 7770af
    extern const Color slateblue;
Packit Service 7770af
    extern const Color slategray;
Packit Service 7770af
    extern const Color slategrey;
Packit Service 7770af
    extern const Color snow;
Packit Service 7770af
    extern const Color springgreen;
Packit Service 7770af
    extern const Color steelblue;
Packit Service 7770af
    extern const Color tan;
Packit Service 7770af
    extern const Color teal;
Packit Service 7770af
    extern const Color thistle;
Packit Service 7770af
    extern const Color tomato;
Packit Service 7770af
    extern const Color turquoise;
Packit Service 7770af
    extern const Color violet;
Packit Service 7770af
    extern const Color wheat;
Packit Service 7770af
    extern const Color white;
Packit Service 7770af
    extern const Color whitesmoke;
Packit Service 7770af
    extern const Color yellow;
Packit Service 7770af
    extern const Color yellowgreen;
Packit Service 7770af
    extern const Color rebeccapurple;
Packit Service 7770af
    extern const Color transparent;
Packit Service 7770af
  }
Packit Service 7770af
Packit Service 7770af
  Color_Ptr_Const name_to_color(const char*);
Packit Service 7770af
  Color_Ptr_Const name_to_color(const std::string&);
Packit Service 7770af
  const char* color_to_name(const int);
Packit Service 7770af
  const char* color_to_name(const Color&);
Packit Service 7770af
  const char* color_to_name(const double);
Packit Service 7770af
Packit Service 7770af
}
Packit Service 7770af
Packit Service 7770af
#endif