Quantcast
Viewing all articles
Browse latest Browse all 40524

GUI wars, using gui libraries with oF

@jvcleave allowed me to merge my fork to his repo, so check his repo now! Image may be NSFW.
Clik here to view.
:smile:

Currently I'm trying to simplify theming, it works by setting just 5 variables:

For default theme:

m_ui.col_main_text = ofColor::fromHex(0xdbede2);
m_ui.col_main_head = ofColor::fromHex(0x044C29);
m_ui.col_main_area = ofColor::fromHex(0x167F39);
m_ui.col_win_popup = ofColor::fromHex(0x45BF55);
m_ui.col_win_backg = ofColor::fromHex(0x00261C);

For a modified one:

m_ui.col_main_text = ofColor::fromHex(0xdbede2);
m_ui.col_main_head = ofColor::fromHex(0x644D52);
m_ui.col_main_area = ofColor::fromHex(0x4C374C);
m_ui.col_win_popup = ofColor::fromHex(0xF77A52);
m_ui.col_win_backg = ofColor::fromHex(0x332532);

And so forth Image may be NSFW.
Clik here to view.
:blush:
Tomorrow I'll make it so tweaking of these variables will be possible inside of imgui, when application is running, in real time...


Viewing all articles
Browse latest Browse all 40524

Trending Articles