6f4f2099c79ee94a6834b96d723e91839cea3e3f
kate
  Tue Jan 20 13:31:02 2015 -0800
Use color constant (one step toward using style)
diff --git src/hg/lib/web.c src/hg/lib/web.c
index 91bd3d5..af1773a 100644
--- src/hg/lib/web.c
+++ src/hg/lib/web.c
@@ -943,31 +943,31 @@
 }
 
 void webIncludeHelpFile(char *fileRoot, boolean addHorizLine)
 /* Given a help file root name (e.g. "hgPcrResult" or "cutters"),
  * print out the contents of the file.  If addHorizLine, print out an
  * <HR> first. */
 {
 if (addHorizLine)
     htmlHorizontalLine();
 webIncludeFile(hHelpFile(fileRoot));
 }
 
 void webPrintLinkTableStart()
 /* Print link table start in our colors. */
 {
-printf("<TABLE><TR><TD BGCOLOR='#888888'>\n");
+printf("<TABLE><TR><TD BGCOLOR='#" HG_COL_BORDER "'>\n");
 printf("<TABLE CELLSPACING=1 CELLPADDING=3><TR>\n");
 }
 
 void webPrintLinkTableEnd()
 /* Print link table end in our colors. */
 {
 printf("</TR></TABLE>\n");
 printf("</TD></TR></TABLE>\n");
 }
 
 void webPrintLinkOutCellStart()
 /* Print link cell that goes out of our site. End with
  * webPrintLinkTableEnd. */
 {
 printf("<TD BGCOLOR='#" HG_COL_LOCAL_TABLE "'>");