open-axiom repository from github
/*1Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.2All rights reserved.34Redistribution and use in source and binary forms, with or without5modification, are permitted provided that the following conditions are6met:78- Redistributions of source code must retain the above copyright9notice, this list of conditions and the following disclaimer.1011- Redistributions in binary form must reproduce the above copyright12notice, this list of conditions and the following disclaimer in13the documentation and/or other materials provided with the14distribution.1516- Neither the name of The Numerical ALgorithms Group Ltd. nor the17names of its contributors may be used to endorse or promote products18derived from this software without specific prior written permission.1920THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS21IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED22TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A23PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER24OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,25EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,26PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR27PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF28LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING29NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS30SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.31*/323334/*35colors.h36created on 25 November 1992, Jim Wen37(same as the browser/src/color.h file - maybe should share?)38*/3940/* The Hues */41#define red0 042#define red1 143#define red2 244#define orange0 345#define orange1 446#define orange2 547#define tan0 648#define tan1 749#define tan2 850#define yellow0 951#define yellow1 1052#define yellow2 1153#define green0 1254#define green1 1355#define green2 1456#define cyan0 1557#define cyan1 1658#define cyan2 1759#define blue0 1860#define blue1 1961#define blue2 2062#define indigo0 2163#define indigo1 2264#define indigo2 2365#define violet0 2466#define violet1 2567#define violet2 266869/*70The Shades71*/72#define dark 073#define dim 174#define normal 275#define bright 376#define pastel 377#define light 47879/*80The macros81*/82#define moColor(h,s) ((mono)?foregroundColor:XSolidColor(h,s))83#define moColor_BG(h,s) ((mono)?backgroundColor:XSolidColor(h,s))848586