Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
graphite/editor/include/editorstyle.h
2024-01-03 16:05:02 -05:00

19 lines
No EOL
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;
};