New value dial color schemes: make the alpha overlay of the digit highlight a bit thinner

pull/60/head
f4exb 2017-05-16 18:52:53 +02:00
rodzic 5a96b78454
commit d3a22638e4
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -115,7 +115,7 @@ ColorMapper::ColorMapper(Theme theme) :
m_dialBackgroundcolorMap.push_back(std::pair<float, QColor>(1.0, QColor(33, 33, 33))); // 59% darkness
m_foregroundColor = QColor(99, 128, 64); // 50% saturation 50% brightbess - shadow face color
m_secondaryForegroundColor = QColor(198, 255, 128); // 50% saturation - front face color
m_highlightColor = QColor(169, 255, 64, 128); // 75% saturation - digit highlight overlay
m_highlightColor = QColor(169, 255, 64, 80); // 75% saturation - digit highlight overlay
m_boundaryColor = QColor(32, 32, 32); // background 60% darkness - inter wheel gap
m_boundaryAlphaColor = QColor(140, 255, 0, 32); // Base with alpha - wheel edges
break;
@ -129,7 +129,7 @@ ColorMapper::ColorMapper(Theme theme) :
m_dialBackgroundcolorMap.push_back(std::pair<float, QColor>(1.0, QColor(33, 33, 33))); // 59% darkness
m_foregroundColor = QColor(128, 98, 64); // 50% saturation 50% brightbess - shadow face color
m_secondaryForegroundColor = QColor(255, 197, 128); // 50% saturation - front face color
m_highlightColor = QColor(255, 169, 64, 128); // 75% saturation - digit highlight overlay
m_highlightColor = QColor(255, 169, 64, 80); // 75% saturation - digit highlight overlay
m_boundaryColor = QColor(32, 32, 32); // background 60% darkness - inter wheel gap
m_boundaryAlphaColor = QColor(255, 139, 0, 32); // Base with alpha - wheel edges
break;