mirror of
https://github.com/obsqrbtz/clrsync.git
synced 2026-04-09 04:29:04 +03:00
14 lines
364 B
C++
14 lines
364 B
C++
#ifndef CLRSYNC_GUI_THEME_APPLIER_HPP
|
|
#define CLRSYNC_GUI_THEME_APPLIER_HPP
|
|
|
|
#include "core/palette/palette.hpp"
|
|
#include "color_text_edit/TextEditor.h"
|
|
|
|
namespace theme_applier
|
|
{
|
|
void apply_to_imgui(const clrsync::core::palette& pal);
|
|
void apply_to_editor(TextEditor& editor, const clrsync::core::palette& pal);
|
|
}
|
|
|
|
#endif // CLRSYNC_GUI_THEME_APPLIER_HPP
|