custom buttons
[colorflood] / colorflood / src / colorscheme.cpp
index c7cd4be..bb7af78 100644 (file)
@@ -23,12 +23,13 @@ ColorScheme::ColorScheme ()
 
     QVector<QBrush> s;
 
-    s << QColor(0x00, 0x00, 0xff); // blue
-    s << QColor(0xff, 0x00, 0x00); // red
-    s << QColor(0x00, 0xff, 0x00); // green
-    s << QColor(0xff, 0xff, 0x00); // yellow
-    s << QColor(0xff, 0x00, 0xff); // magenta
-    s << QColor(0x80, 0x00, 0x80); // purple
+    s << QColor(0x60, 0x60, 0xa8);
+    s << QColor(0xf6, 0xf6, 0x1d);
+    s << QColor(0x46, 0xb0, 0xe0);
+    s << QColor(0x7e, 0xa0, 0x20);
+    s << QColor(0xf0, 0x70, 0xa0);
+    s << QColor(0xdc, 0x4a, 0x20);
+    /*: default color scheme name */
     schemes << QPair<QString, QVector<QBrush> >(QObject::tr("Default"), s);
 
     s.clear();
@@ -38,6 +39,7 @@ ColorScheme::ColorScheme ()
     s << QBrush(QColor(0x99, 0x99, 0x99), Qt::SolidPattern);
     s << QBrush(QColor(0xcc, 0xcc, 0xcc), Qt::CrossPattern);
     s << QBrush(QColor(0xff, 0xff, 0xff), Qt::SolidPattern);
+    /*: black-and-white color scheme name */
     schemes << QPair<QString, QVector<QBrush> >(QObject::tr("Black-and-white"), s);
 
     QSettings settings;