change color theme feature with reset functionality to settings UI also changed dalamudyellow to lightlessyellow

This commit is contained in:
thijmenh
2025-09-07 19:19:49 +02:00
parent d2ac922881
commit 1b6eb149b8
16 changed files with 216 additions and 105 deletions

View File

@@ -122,7 +122,7 @@ public class SyncshellAdminUI : WindowMediatorSubscriberBase
{
if (!_pairManager.GroupPairs.TryGetValue(GroupFullInfo, out var pairs))
{
UiSharedService.ColorTextWrapped("No users found in this Syncshell", ImGuiColors.DalamudYellow);
UiSharedService.ColorTextWrapped("No users found in this Syncshell", UIColors.Get("LightlessYellow"));
}
else
{
@@ -280,7 +280,7 @@ public class SyncshellAdminUI : WindowMediatorSubscriberBase
{
if (!_pruneTestTask.IsCompleted)
{
UiSharedService.ColorTextWrapped("Calculating inactive users...", ImGuiColors.DalamudYellow);
UiSharedService.ColorTextWrapped("Calculating inactive users...", UIColors.Get("LightlessYellow"));
}
else
{
@@ -305,7 +305,7 @@ public class SyncshellAdminUI : WindowMediatorSubscriberBase
{
if (!_pruneTask.IsCompleted)
{
UiSharedService.ColorTextWrapped("Pruning Syncshell...", ImGuiColors.DalamudYellow);
UiSharedService.ColorTextWrapped("Pruning Syncshell...", UIColors.Get("LightlessYellow"));
}
else
{
@@ -434,7 +434,7 @@ public class SyncshellAdminUI : WindowMediatorSubscriberBase
if (!_pwChangeSuccess)
{
UiSharedService.ColorTextWrapped("Failed to change the password. Password requires to be at least 10 characters long.", ImGuiColors.DalamudYellow);
UiSharedService.ColorTextWrapped("Failed to change the password. Password requires to be at least 10 characters long.", UIColors.Get("LightlessYellow"));
}
if (_uiSharedService.IconTextButton(FontAwesomeIcon.Trash, "Delete Syncshell") && UiSharedService.CtrlPressed() && UiSharedService.ShiftPressed())