LOL try something as follows in your hostname.cfg file (the one created with cfgmaker)
Code:
Colours[HOSTNAME_OR_ROUTER]: GREEN#00eb0c,BLUE#1000ff,DARK GREEN#006600,VIOLET#ff00ff
Here are some colours and hex values
#FFFF00 Yellow
#3399FF
#990099
In short these are hexadecimal color codes used on the Web. Colors are specified as hexadecimal numbers (base 16, in the same way that decimal numbers are base 10). Same colors are used by mrtg cfg files.
Quoted from man page of mrtg
Quote:
Colours
The Colours tag allows you to override the default colour scheme. Note: All 4 of the required colours must be specified here. The colour name ('Colourx' below) is the legend name displayed, while the RGB value is the real colour used for the display, both on the graph and in the html doc.
Format is: Colour1#RRGGBB,Colour2#RRGGBB,Colour3#RRGGBB,Colou r4#RRGGBB
Important: If you use the dorelpercent options tag a fifth colour name colour value pair is required: Colour1#RRGGBB,Colour2#RRGGBB,Colour3#RRGGBB,Colou r4#RRGGBB,Colour5#RRGGBB
Colour1
First variable (normally Input) on default graph
Colour2
Second variable (normally Output) on default graph
Colour3
Max first variable (input)
Colour4
Max second variable (output)
RRGGBB
2 digit hex values for Red, Green and Blue
Example:
Colours[ezwf]: GREEN#00eb0c,BLUE#1000ff,DARK GREEN#006600,VIOLET#ff00ff
Background
With the Background tag you can configure the background colour of the generated HTML page
Example:
Background[ezwf]: #a0a0a0a
|
Hope this helps