Purpur-Fetthenne Imgui Theme
This is a dark, purple theme for Dear Imgui.
- Get Dear Imgui
- Get GLFW
- Update CMakeLists file.
- Get Roboto font.
- Build and run Purp.
$ git clone https://github.com/ocornut/imgui
You can either install the libraries or download the source. If you download the source you also need to build the library.
$ sudo apt install libglfw3 libglfw3-dev
$ git clone [email protected]:glfw/glfw.git
Follow these steps to compile.
Update the paths in the CMakeLists file for gl3w and imgui. GL3W is included with Dear Imgui.
$ mkdir roboto
$ cd roboto
$ wget https://github.com/google/roboto/releases/download/v2.138/roboto-android.zip
$ unzup roboto-android.zip
You must run from the project root so that the code can find the Roboto Font. You could also modify the path to the font in the code.
$ mkdir build
$ cd build
$ cmake -GNinja ..
$ ninja
$ cd ..
$ ./build/imgui-theme