Updated all styles to latest raygui 4.x and rGuiStyler 6.0

This commit is contained in:
Ray
2025-03-27 19:04:19 +01:00
parent decc5151e6
commit ea928f5609
65 changed files with 1779 additions and 1810 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 136 KiB

View File

@ -7,7 +7,7 @@
// more info and bugs-report: github.com/raysan5/raygui //
// feedback and support: ray[at]raylibtech.com //
// //
// Copyright (c) 2020-2024 raylib technologies (@raylibtech) //
// Copyright (c) 2020-2025 raylib technologies (@raylibtech) //
// //
//////////////////////////////////////////////////////////////////////////////////
@ -15,22 +15,22 @@
// Custom style name: Lavanda
static const GuiStyleProp lavandaStyleProps[LAVANDA_STYLE_PROPS_COUNT] = {
{ 0, 0, 0xab9bd3ff }, // DEFAULT_BORDER_COLOR_NORMAL
{ 0, 1, 0x3e4350ff }, // DEFAULT_BASE_COLOR_NORMAL
{ 0, 2, 0xdadaf4ff }, // DEFAULT_TEXT_COLOR_NORMAL
{ 0, 3, 0xee84a0ff }, // DEFAULT_BORDER_COLOR_FOCUSED
{ 0, 4, 0xf4b7c7ff }, // DEFAULT_BASE_COLOR_FOCUSED
{ 0, 5, 0xb7657bff }, // DEFAULT_TEXT_COLOR_FOCUSED
{ 0, 6, 0xd5c8dbff }, // DEFAULT_BORDER_COLOR_PRESSED
{ 0, 7, 0x966ec0ff }, // DEFAULT_BASE_COLOR_PRESSED
{ 0, 8, 0xd7ccf7ff }, // DEFAULT_TEXT_COLOR_PRESSED
{ 0, 9, 0x8fa2bdff }, // DEFAULT_BORDER_COLOR_DISABLED
{ 0, 10, 0x6b798dff }, // DEFAULT_BASE_COLOR_DISABLED
{ 0, 11, 0x8292a9ff }, // DEFAULT_TEXT_COLOR_DISABLED
{ 0, 16, 0x00000010 }, // DEFAULT_TEXT_SIZE
{ 0, 18, 0x84adb7ff }, // DEFAULT_LINE_COLOR
{ 0, 19, 0x5b5b81ff }, // DEFAULT_BACKGROUND_COLOR
{ 0, 20, 0x00000018 }, // DEFAULT_TEXT_LINE_SPACING
{ 0, 0, (int)0xab9bd3ff }, // DEFAULT_BORDER_COLOR_NORMAL
{ 0, 1, (int)0x3e4350ff }, // DEFAULT_BASE_COLOR_NORMAL
{ 0, 2, (int)0xdadaf4ff }, // DEFAULT_TEXT_COLOR_NORMAL
{ 0, 3, (int)0xee84a0ff }, // DEFAULT_BORDER_COLOR_FOCUSED
{ 0, 4, (int)0xf4b7c7ff }, // DEFAULT_BASE_COLOR_FOCUSED
{ 0, 5, (int)0xb7657bff }, // DEFAULT_TEXT_COLOR_FOCUSED
{ 0, 6, (int)0xd5c8dbff }, // DEFAULT_BORDER_COLOR_PRESSED
{ 0, 7, (int)0x966ec0ff }, // DEFAULT_BASE_COLOR_PRESSED
{ 0, 8, (int)0xd7ccf7ff }, // DEFAULT_TEXT_COLOR_PRESSED
{ 0, 9, (int)0x8fa2bdff }, // DEFAULT_BORDER_COLOR_DISABLED
{ 0, 10, (int)0x6b798dff }, // DEFAULT_BASE_COLOR_DISABLED
{ 0, 11, (int)0x8292a9ff }, // DEFAULT_TEXT_COLOR_DISABLED
{ 0, 16, (int)0x00000010 }, // DEFAULT_TEXT_SIZE
{ 0, 18, (int)0x84adb7ff }, // DEFAULT_LINE_COLOR
{ 0, 19, (int)0x5b5b81ff }, // DEFAULT_BACKGROUND_COLOR
{ 0, 20, (int)0x00000018 }, // DEFAULT_TEXT_LINE_SPACING
};
// WARNING: This style uses a custom font: "Cartridge.ttf" (size: 16, spacing: 1)
@ -368,7 +368,7 @@ static const Rectangle lavandaFontRecs[189] = {
// Font glyphs info data
// NOTE: No glyphs.image data provided
static const GlyphInfo lavandaFontGlyphs[189] = {
{ 32, 0, 12, 5, { 0 }},
{ 32, 0, 0, 5, { 0 }},
{ 33, 0, 3, 2, { 0 }},
{ 34, 0, 3, 4, { 0 }},
{ 35, 0, 3, 8, { 0 }},

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.