Negative transaction color changed to red (was grey due to mistake)
[novacoin.git] / src / qt / guiconstants.h
1 #ifndef GUICONSTANTS_H
2 #define GUICONSTANTS_H
3
4 /* milliseconds between model updates */
5 static const int MODEL_UPDATE_DELAY = 500;
6
7 /* Invalid field background style */
8 #define STYLE_INVALID "background:#FF8080"
9
10 /* Transaction list -- unconfirmed transaction */
11 #define COLOR_UNCONFIRMED QColor(128, 128, 128)
12 /* Transaction list -- negative amount */
13 #define COLOR_NEGATIVE QColor(255, 0, 0)
14
15 #endif // GUICONSTANTS_H