* Changed the colors slightly in chat screen
authorArt Cancro <ajc@citadel.org>
Tue, 24 Feb 2004 04:06:42 +0000 (04:06 +0000)
committerArt Cancro <ajc@citadel.org>
Tue, 24 Feb 2004 04:06:42 +0000 (04:06 +0000)
webcit/ChangeLog
webcit/paging.c

index 657881e2125666ae82bccb559d25d74930c547f4..b25e4a0534180fdd08cabbe7bc8d106a5457450b 100644 (file)
@@ -1,4 +1,7 @@
 $Log$
+Revision 505.2  2004/02/24 04:06:42  ajc
+* Changed the colors slightly in chat screen
+
 Revision 505.1  2004/02/20 06:07:06  ajc
 * Replaced the Java chat with a new system based on IFRAME's and JavaScript
 
@@ -1668,5 +1671,3 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
-
-
index 92b7351807d060fae7968b6e8a3d4cf4d9751b41..fc573cd62066d8f7c398c06668244eb35844af12 100644 (file)
@@ -1,4 +1,8 @@
-/* $Id$ */
+/*
+ * $Id$
+ *
+ * Functions which implement the chat and paging facilities.
+ */
 
 #include <ctype.h>
 #include <stdlib.h>
@@ -261,7 +265,7 @@ void chat_recv(void) {
                "<HEAD>\n"
                "<META HTTP-EQUIV=\"refresh\" CONTENT=\"3\">\n"
                "</HEAD>\n"
-               "<BODY>"
+               "<BODY BGCOLOR=\"#FFFFFF\">"
        );
 
        if (setup_chat_socket() != 0) {
@@ -311,13 +315,13 @@ void chat_recv(void) {
                        extract(name, WC->chatlines[i], 0);
                        extract(text, WC->chatlines[i], 1);
                        if (!strcasecmp(name, WC->wc_username)) {
-                               wprintf("<FONT COLOR=\"#00FF00\">");
+                               wprintf("<FONT COLOR=\"#004400\">");
                        }
                        else if (!strcmp(name, ":")) {
-                               wprintf("<FONT COLOR=\"#FF0000\">");
+                               wprintf("<FONT COLOR=\"#440000\">");
                        }
                        else {
-                               wprintf("<FONT COLOR=\"#0000FF\">");
+                               wprintf("<FONT COLOR=\"#000044\">");
                        }
                        escputs(name);
                        wprintf(": </FONT>");