Files
harbour-core/contrib/xhb/htmlclrs.ch
Viktor Szakats 5a2a287752 2017-09-08 16:00 UTC Viktor Szakats (vszakats users.noreply.github.com)
* *
    * partial sync with the 3.4 fork codebase. These are the things
      synces for the most part:
      - copyright headers
      - grammar/typos in comments and some readmes
      - comment/whitespace/decorations
      - variable scoping in C files
      - DO CASE/SWITCH and some other alternate syntax usage
      - minimal amount of human readable text in strings
      - minor code updates
      - HB_TRACE() void * casts for pointers and few other changes to
        avoid C compiler warnings
      - various other, minor code cleanups
      - only Harbour/C code/headers were touched in src, utils, contrib,
        include. No 3rd party code, no make files, and with just a few
        exceptions, no 'tests' code was touched.
      - certain components were not touched were 3.4 diverged too much
        already, like f.e. hbmk2, hbssl, hbcurl, hbexpat
      - the goal was that no actual program logic should be altered by
        these changes. Except some possible minor exceptions, any such
        change is probably a bug in this patch.
      It's a massive patch, if you find anything broken after it, please
      open an Issue with the details. Build test was done on macOS.
      The goal is make it easier to see what actual code/logic was changed
      in 3.4 compared to 3.2 and to make patches easier to apply in both
      ways.
2017-09-08 16:25:13 +00:00

193 lines
7.7 KiB
Plaintext

/*
* Colors include file for HTMLLIB
*
* Copyright 2000 Manos Aspradakis <maspr@otenet.gr>
* Copyright 2000 Luiz Rafael Culik <culik@sl.conex.net> (Porting this library to Harbour)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file LICENSE.txt. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA (or visit https://www.gnu.org/licenses/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
#ifndef _COLORS_CH
#define ALICEBLUE "#A0CF00"
#define ANTIQUEWHITE "#FFE8D0"
#define AQUA "#00FFFF"
#define AQUAMARINE "#7FFFD0"
#define AZURE "#F0FFFF"
#define BEIGE "#F0F7DF"
#define BISQUE "#FFE7C0"
#define BLACK "#000000"
#define BLANCHEDALMOND "#FFE8CF"
#define BLUE "#0000FF"
#define BLUEVIOLET "#8F28E0"
#define BROWN "#A0282F"
#define BURLYWOOD "#DFB880"
#define CADETBLUE "#5F9FA0"
#define CHARTREUSE "#7FFF00"
#define CHOCOLATE "#D0861F"
#define CORAL "#FF7F50"
#define CORNFLOWERBLUE "#6097EF"
#define CORNSILK "#FFF8DF"
#define CRIMSON "#DF173F"
#define CYAN "#00FFFF"
#define DARKBLUE "#00008F"
#define DARKCYAN "#00888F"
#define DARKGOLDENROD "#BF87F0"
#define DARKGRAY "#AFA8AF"
#define DARKGREEN "#006700"
#define DARKKHAKI "#BFB76F"
#define DARKMAGENTA "#8F008F"
#define DARKOLIVEGREEN "#50682F"
#define DARKORANGE "#FF8F00"
#define DARKORCHID "#9F30CF"
#define DARKRED "#8F0000"
#define DARKSALMON "#EF977F"
#define DARKSEAGREEN "#8FBF8F"
#define DARKSLATEBLUE "#4F3F8F"
#define DARKSLATEGRAY "#2F4F4F"
#define DARKTURQUOISE "#00CFD0"
#define DARKVIOLET "#9000D0"
#define DEEPPINK "#FF1790"
#define DEEPSKYBLUE "#00BFFF"
#define DIMGRAY "#6F686F"
#define DODGERBLUE "#1F90FF"
#define FIREBRICK "#B02020"
#define FLORALWHITE "#FFF8F0"
#define FORESTGREEN "#208820"
#define FUCHSIA "#FF00FF"
#define GAINSBORO "#DFDFDF"
#define GHOSTWHITE "#FFF8FF"
#define GOLD "#FFD700"
#define GOLDENROD "#DFA720"
#define GRAY "#808080"
#define GREEN "#008000"
#define GREENYELLOW "#AFFF2F"
#define HONEYDEW "#F0FFF0"
#define HOTPINK "#FF68B0"
#define INDIANRED "#CF5F5F"
#define INDIGO "#4F0080"
#define IVORY "#FFFFF0"
#define KHAKI "#F0E78F"
#define LAVENDER "#E0E7FF"
#define LAVENDERBLUSH "#FFF0F0"
#define LAWNGREEN "#7FFF00"
#define LEMONCHIFFON "#FFF8CF"
#define LIGHTBLUE "#AFD8E0"
#define LIGHTCORAL "#F08080"
#define LIGHTCYAN "#E0FFFF"
#define LIGHTGOLDENRODYELLOW "#FFF8D0"
#define LIGHTGREEN "#90EF90"
#define LIGHTGREY "#D0D0D0"
#define LIGHTPINK "#FFB7C0"
#define LIGHTSALMON "#FFA07F"
#define LIGHTSEAGREEN "#20B0AF"
#define LIGHTSKYBLUE "#80CFFF"
#define LIGHTSLATEGRAY "#70889F"
#define LIGHTSTEELBLUE "#B0C7DF"
#define LIGHTYELLOW "#FFFFE0"
#define LIME "#00FF00"
#define LIMEGREEN "#30CF30"
#define LINEN "#FFF0E0"
#define MAGENTA "#FF00FF"
#define MAROON "#800000"
#define MEDIUMAQUAMARINE "#60CFAF"
#define MEDIUMBLUE "#0000CF"
#define MEDIUMORCHID "#BF57D0"
#define MEDIUMPURPLE "#9070DF"
#define MEDIUMSEAGREEN "#3FB070"
#define MEDIUMSLATEBLUE "#7F68EF"
#define MEDIUMSPRINGGREEN "#00F89F"
#define MEDIUMTURQUOISE "#4FD0CF"
#define MEDIUMVIOLETRED "#C01780"
#define MIDNIGHTBLUE "#1F1870"
#define MINTCREAM "#F0FFFF"
#define MISTYROSE "#FFE7E0"
#define MOCCASIN "#FFE7B0"
#define NAVAJOWHITE "#FFDFAF"
#define NAVY "#000080"
#define OLDLACE "#FFF7E0"
#define OLIVE "#808000"
#define OLIVEDRAB "#6F8F20"
#define ORANGE "#FFA700"
#define ORANGERED "#FF4700"
#define ORCHID "#DF70D0"
#define PALEGOLDENROD "#EFE8AF"
#define PALEGREEN "#9FF89F"
#define PALETURQUOISE "#AFEFEF"
#define PALEVIOLETRED "#DF7090"
#define PAPAYAWHIP "#FFEFD0"
#define PEACHPUFF "#FFD8BF"
#define PERU "#CF873F"
#define PINK "#FFC0CF"
#define PLUM "#DFA1DF"
#define POWDERBLUE "#B0E0E0"
#define PURPLE "#800080"
#define RED "#FF0000"
#define ROSYBROWN "#BF8F8F"
#define ROYALBLUE "#4068E0"
#define SADDLEBROWN "#8F4710"
#define SALMON "#FF8070"
#define SANDYBROWN "#F0A760"
#define SEAGREEN "#2F8850"
#define SEASHELL "#FFF7EF"
#define SIENNA "#A0502F"
#define SILVER "#C0C0C0"
#define SKYBLUE "#80CFEF"
#define SLATEBLUE "#6F58CF"
#define SLATEGRAY "#708090"
#define SNOW "#FFF8FF"
#define SPRINGGREEN "#00FF7F"
#define STEELBLUE "#4080B0"
#define TAN "#D0B78F"
#define TEAL "#008080"
#define THISTLE "#DFBFDF"
#define TOMATO "#FF6040"
#define TURQUOISE "#40E0D0"
#define VIOLET "#EF80EF"
#define WHEAT "#F0DFB0"
#define WHITE "#FFFFFF"
#define WHITESMOKE "#F0F7F0"
#define YELLOW "#FFFF00"
#define YELLOWGREEN "#9FCF30"
#define _COLORS_CH
#endif