summaryrefslogtreecommitdiffstats
path: root/application/Colors.h
blob: 8825f39f8aa92151674a20fd81a566514d446765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
#include <QtGui/QColor>
#include <rainbow.h>
namespace Color
{
/**
 * Blend the color with the front color, adapting to the back color
 */
QColor blend(QColor front, QColor back, QColor color, uchar ratio);

/**
 * Blend the color with the back color
 */
QColor blendBackground(QColor back, QColor color, uchar ratio);
}