1 #pragma once
2 
3 struct style {
4 	struct ui_font *font, *bold_font, *header_font;
5 	struct nk_color red;
6 	struct nk_color green;
7 	struct nk_color yellow;
8 	struct nk_color black;
9 };
10