15 lines
376 B
C++
15 lines
376 B
C++
#include "Colors.hpp"
|
|
|
|
Presets::Presets(QObject *parent) : ConfigSection(parent) {
|
|
m_accent = QString();
|
|
m_name = QStringLiteral("Catppuccin");
|
|
m_variant = QStringLiteral("latte");
|
|
wireSignals();
|
|
}
|
|
|
|
Colors::Colors(QObject *parent) : ConfigSection(parent) {
|
|
m_presets = new Presets(this);
|
|
m_schemeType = QStringLiteral("fidelity");
|
|
wireSignals();
|
|
}
|