Index: /trunk/BNC/bncfigure.cpp
===================================================================
--- /trunk/BNC/bncfigure.cpp	(revision 1992)
+++ /trunk/BNC/bncfigure.cpp	(revision 1993)
@@ -52,7 +52,7 @@
   slotNextAnimationFrame();
   for (int ii = 0; ii <= 1000; ii++) {
-    _rgb[0][ii] = qrand() % 255;
-    _rgb[2][ii] = qrand() % 255;
-    _rgb[1][ii] = qrand() % 255;
+    _ran[0][ii] = qrand() % 255;
+    _ran[1][ii] = qrand() % 40;
+    _ran[2][ii] = qrand() % 100;
   }
 }
@@ -181,5 +181,5 @@
     if(_maxRate > 0.0) {
       int yy = int(yLength * (it.value()->_mean / _maxRate));
-      QColor color = QColor::fromRgb(_rgb[0][anchor],_rgb[1][anchor],_rgb[2][anchor]);
+      QColor color = QColor::fromHsv(0,100+_ran[1][anchor],155+_ran[2][anchor]);
       painter.fillRect(xx-13, int((yMax-yMin)*xLine)-yy, 9, yy, 
                        QBrush(color,Qt::SolidPattern));
Index: /trunk/BNC/bncfigure.h
===================================================================
--- /trunk/BNC/bncfigure.h	(revision 1992)
+++ /trunk/BNC/bncfigure.h	(revision 1993)
@@ -52,5 +52,5 @@
   int                           _counter;
   double                        _maxRate;
-  int                           _rgb[3][1001];
+  int                           _ran[3][1001];
 };
 
Index: /trunk/BNC/bncfigurelate.cpp
===================================================================
--- /trunk/BNC/bncfigurelate.cpp	(revision 1992)
+++ /trunk/BNC/bncfigurelate.cpp	(revision 1993)
@@ -52,7 +52,7 @@
   slotNextAnimationFrame();
   for (int ii = 0; ii <= 1000; ii++) {
-    _rgb[0][ii] = qrand() % 255;
-    _rgb[2][ii] = qrand() % 255;
-    _rgb[1][ii] = qrand() % 255;
+    _ran[0][ii] = qrand() % 255;
+    _ran[1][ii] = qrand() % 255;
+    _ran[2][ii] = qrand() % 100;
   }
 }
@@ -156,5 +156,5 @@
     if(maxLate > 0.0) {
       int yy = int(yLength * (it.value() / maxLate));
-      QColor color = QColor::fromRgb(_rgb[0][anchor],_rgb[1][anchor],_rgb[2][anchor]);
+      QColor color = QColor::fromHsv(180,200,120+_ran[2][anchor]);
       painter.fillRect(xx-13, int((yMax-yMin)*xLine)-yy, 9, yy, 
                        QBrush(color,Qt::SolidPattern));
Index: /trunk/BNC/bncfigurelate.h
===================================================================
--- /trunk/BNC/bncfigurelate.h	(revision 1992)
+++ /trunk/BNC/bncfigurelate.h	(revision 1993)
@@ -43,5 +43,5 @@
   QMap<QByteArray, double> _latency;
   QMutex                   _mutex;
-  int                      _rgb[3][1001];
+  int                      _ran[3][1001];
 };
 
