340dfdea9cdbee56a51f62b3934c2d3b7bbf6b57
max
  Mon Apr 30 14:50:12 2012 -0700
UI themes for hgc/hgGene and some fixes for hgTracks
diff --git src/inc/htmshell.h src/inc/htmshell.h
index 80fcbec..0f7da4c 100644
--- src/inc/htmshell.h
+++ src/inc/htmshell.h
@@ -77,30 +77,34 @@
 void htmlEnd();
 /* Write the end of a cgi-generated html file */
 
 void htmEnd(FILE *f);
 /* Write the end of a stand-alone html file */
 
 extern char *htmlStyleUndecoratedLink;
 /* Style that gets rid of underline of links. */
 
 void htmlSetStyle(char *style);
 /* Set document wide style. A favorite style to
  * use for many purposes is htmlStyleUndecoratedLink
  * which will remove underlines from links.
  * Needs to be called before htmlStart or htmShell. */
 
+void htmlSetStyleTheme(char *style);
+/* Set theme style, these styles can overwrite document wide styles.
+ * Needs to be called before htmlStart or htmShell. */
+
 void htmlSetBackground(char *imageFile);
 /* Set background image - needs to be called before htmlStart
  * or htmShell. */
 
 void htmlSetBgColor(int color);
 /* Set background color - needs to be called before htmlStart
  * or htmShell. */
 
 void htmlBadVar(char *varName);
 /* Complain about input variables. */
 
 void htmlImage(char *fileName, int width, int height);
 /* Display centered image file. */
 
 jmp_buf htmlRecover;  /* Error recovery jump. Exposed for cart's use. */