omar

Results 2356 comments of omar

> yes, I think touching all the style-related issues together in the same release is a good choice. "all" is a little optimistic. Even changing just the border thing is...

Copying for reference, from https://github.com/procedural/gpulib/ ( https://github.com/procedural/gpulib/blob/e0bda0cd486d720a90857df9f7797722265e9312/examples/04%20Dear%20ImGui/main.c ) It turns out that I'm more and more tempted to look into making that FreeType loader official, because at small sizes it's...

Another one from an old software (may not be up to date) Based on @Pagghiu theme ![mc2001](https://cloud.githubusercontent.com/assets/8225057/19492761/4d13f05e-9578-11e6-990d-f70bc89127a8.JPG) ![childwindows](https://cloud.githubusercontent.com/assets/5406873/14646337/6b49fa04-0659-11e6-8ad9-16248ff60de7.gif) ``` // Setup style ImGuiStyle& style = ImGui::GetStyle(); style.Colors[ImGuiCol_Text] = ImVec4(0.31f, 0.25f,...

Some minor tweaks to Doug's theme above ``` // Dark ImVec4* colors = ImGui::GetStyle().Colors; colors[ImGuiCol_Text] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); colors[ImGuiCol_TextDisabled] = ImVec4(0.40f, 0.40f, 0.40f, 1.00f); colors[ImGuiCol_WindowBg] = ImVec4(0.06f, 0.06f,...

I made some changes: 1. The Classic theme has been reworked a little. In particular I have changed the buttons to use shades of blues instead of the redish-pink. ![image](https://user-images.githubusercontent.com/8225057/32991877-e81392b8-cd43-11e7-91cf-5a482f0ed2d7.png)...

> Here is my theme, which (more or less) mimics Microsoft Design Guidelines (https://design.microsoft.com/): Thanks! Also that link and example are useful for #438. Among the thing that are missing...

FYI, pushed a small change a few days ago to use a cross in the closing button instead of the infamous circle: ![image](https://user-images.githubusercontent.com/8225057/37404694-dd5d599a-2792-11e8-8ac6-c200ab43c328.png) ![image](https://user-images.githubusercontent.com/8225057/37404725-f6775c96-2792-11e8-8a27-bab19d0f3d6e.png) The highlight fill (which is circular...

@forrestthewoods IMHO I think it's really undesirable at the moment because the style system is really primitive and will change a lot this year. The only thing worse than a...

@ice1000 > Poor simulation on IntelliJ's Darcula theme: Screenshot?

Copying LightGreen style from @ebachard posted in #1776 (so I can close the other topic for now). ![capture du 2018-04-26 20-42-40](https://user-images.githubusercontent.com/23149049/39325520-b47da4b8-4992-11e8-9152-053353cac400.png) ``` // generic miniDart theme void ImGui::StyleColorsLightGreen(ImGuiStyle* dst) {...