#pragma once
#include <QColor>
namespace whittle::Palette {
// panel 1
inline const QColor TreeBg {0xFF, 0xFF, 0xFF};
inline const QColor TreeText {0x11, 0x11, 0x11};
// panel 2/3
inline const QColor ListBg {0xFF, 0xFF, 0xFF};
inline const QColor ListText {0x11, 0x11, 0x11};
inline const QColor ListLine {0xEE, 0xEE, 0xEE};
// new
inline const QColor NewOnUsb {0x00, 0x00, 0xBB};
// no file
inline const QColor UsbOnly {0xCC, 0x00, 0x00};
// error
inline const QColor Skipped {0xE6, 0x9F, 0x00};
}