19 lines
288 B
C
19 lines
288 B
C
|
#pragma once
|
||
|
|
||
|
#include <QProxyStyle>
|
||
|
#include <QPalette>
|
||
|
|
||
|
namespace Colors
|
||
|
{
|
||
|
static QColor gray(83, 83, 80);
|
||
|
static QColor darkerGray(80, 80, 75);
|
||
|
};
|
||
|
|
||
|
class EditorStyle : public QProxyStyle
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
EditorStyle();
|
||
|
|
||
|
void polish(QPalette &palette) override;
|
||
|
};
|