First commit

This commit is contained in:
Aurélie Delhaie
2022-12-12 20:57:18 +01:00
commit 8bbbff7fea
37 changed files with 2123 additions and 0 deletions

16
src/tools.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef TOOLS_H
#define TOOLS_H
#include <QColor>
class Tools
{
public:
Tools();
static QColor getRandomColor();
static QColor getForegroundColor(QColor background);
};
#endif // TOOLS_H