File indexing completed on 2024-05-19 04:48:21

0001 #include "colorutils.h"
0002 #include <KGuiAddons/KColorUtils>
0003 
0004 ColorUtils::ColorUtils(QObject *parent)
0005 {
0006 
0007 }
0008 
0009 qreal ColorUtils::contrastRatio(const QColor &c1, const QColor &c2)
0010 {
0011    return KColorUtils::contrastRatio(c1, c2);
0012 }