summaryrefslogtreecommitdiff
path: root/Bus/Horloge/Rgbcolor.h
diff options
context:
space:
mode:
authorfcolin2007-02-01 12:52:42 +0000
committerfcolin2007-02-01 12:52:42 +0000
commitb4ac1e8daa9e66672fe66f31c56adb63edce632c (patch)
tree8376f5a2487316236970c1a6f76c5558719bc887 /Bus/Horloge/Rgbcolor.h
parent4fda03e10faee7c39a7bf84df2a31e49773a8ab8 (diff)
downloadivy-cplusplus-b4ac1e8daa9e66672fe66f31c56adb63edce632c.zip
ivy-cplusplus-b4ac1e8daa9e66672fe66f31c56adb63edce632c.tar.gz
ivy-cplusplus-b4ac1e8daa9e66672fe66f31c56adb63edce632c.tar.bz2
ivy-cplusplus-b4ac1e8daa9e66672fe66f31c56adb63edce632c.tar.xz
Utilisateur : Fcolin Date : 25/10/01 Heure : 11:44 Créé (vss 1)
Diffstat (limited to 'Bus/Horloge/Rgbcolor.h')
-rw-r--r--Bus/Horloge/Rgbcolor.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/Bus/Horloge/Rgbcolor.h b/Bus/Horloge/Rgbcolor.h
new file mode 100644
index 0000000..1c45453
--- /dev/null
+++ b/Bus/Horloge/Rgbcolor.h
@@ -0,0 +1,40 @@
+/////////////////////////////////////////////////////////////////////////////
+// Copyright (C) 2000 by Michel Wassink
+// All rights reserved
+//
+// This is free software.
+// You may redistribute it by any means providing it is not sold for profit
+// without the author written consent.
+//
+// No warrantee of any kind, expressed or implied, is included with this
+// software; use at your own risk, responsibility for damages (if any) to
+// anyone resulting from the use of this software rests entirely with the
+// user.
+//
+// Send bug reports, bug fixes, enhancements, requests, flames, etc., and
+// I'll try to keep a version up to date. I can be reached as follows:
+// mwassink@csi.com (private site)
+/////////////////////////////////////////////////////////////////////////////
+
+#ifndef __RGBCOLOR_H__
+#define __RGBCOLOR_H__
+
+#define BLACK RGB( 000, 000, 000 )
+#define DARKBLUE RGB( 000, 000, 128 )
+#define DARKGREEN RGB( 000, 064, 000 )
+#define DARKCYAN RGB( 000, 064, 064 )
+#define DARKRED RGB( 064, 000, 000 )
+#define DARKMAGENTA RGB( 128, 000, 128 )
+#define BROWN RGB( 128, 128, 000 )
+#define DARKGRAY RGB( 128, 128, 128 )
+
+#define LIGHTGRAY RGB( 192, 192, 192 )
+#define LIGHTBLUE RGB( 000, 000, 255 )
+#define LIGHTGREEN RGB( 000, 255, 000 )
+#define LIGHTCYAN RGB( 000, 255, 255 )
+#define LIGHTRED RGB( 255, 000, 000 )
+#define LIGHTMAGENTA RGB( 255, 000, 255 )
+#define YELLOW RGB( 255, 255, 000 )
+#define WHITE RGB( 255, 255, 255 )
+
+#endif // __RGBCOLOR_H__