Skip to content

Commit

Permalink
New default theme
Browse files Browse the repository at this point in the history
  • Loading branch information
Glyceri committed Jul 26, 2024
1 parent 54aca4b commit 2007927
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions PetNicknames/PetNicknames/Windowing/Base/Style/WindowStyles.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,30 +57,30 @@ internal static class WindowStyles

public static readonly ColourProfile DefaultColourProfile = new ColourProfile(Translator.GetLine("Style.Title.Default"), "Glyceri", new()
{
new("Outline", new Color(176, 169, 120).ToUInt()),
new("Outline:Fade", new Color(176, 169, 120, 100).ToUInt()),
new("Outline", new Color(255, 255, 255).ToUInt()),
new("Outline:Fade", new Color(255, 255, 255, 100).ToUInt()),
new("Titlebar.Minion", new Color(255, 194, 63, 150).ToUInt()),
new("Titlebar.Minion:Dark", new Color(110, 78, 10).ToUInt()),
new("Titlebar.BattlePet", new Color(37, 112, 37, 150).ToUInt()),
new("Titlebar.BattlePet:Dark", new Color(26, 84, 26).ToUInt()),
new("Titlebar.Base", new Color(255, 255, 255).ToUInt()),
new("Window.Background", new Color(26, 20, 0, 255).ToUInt()),
new("Window.BackgroundLight", new Color(26, 20, 0, 150).ToUInt()),
new("BackgroundImageColour", new Color(40, 40, 0, 230).ToUInt()),
new("ListElementBackground", new Color(26, 20, 0, 130).ToUInt()),
new("SearchBarBackground", new Color(150, 150, 150, 150).ToUInt()),
new("Window.Background", new Color(0, 0, 0, 255).ToUInt()),
new("Window.BackgroundLight", new Color(0, 0, 0, 150).ToUInt()),
new("BackgroundImageColour", new Color(67, 67, 0, 230).ToUInt()),
new("ListElementBackground", new Color(0, 0, 0).ToUInt()),
new("SearchBarBackground", new Color(150, 150, 150, 150).ToUInt()),
new("ModeToggleInactive", new Color(100, 0, 0, 0.01f).ToUInt()),
new("Window.TextOutline", new Color(189, 141, 6, 190).ToUInt()),
new("Window.TextOutlineButton", new Color(194, 82, 17, 190).ToUInt()),
new("Window.TextOutline", new Color(0, 0, 0, 255).ToUInt()),
new("Window.TextOutlineButton", new Color(86, 86, 86, 255).ToUInt()),
new("PetNicknamesButton", new Color(91, 120, 83, 150).ToUInt()),
new("PetNicknamesButton:Hover", new Color(47, 69, 41, 150).ToUInt()),
new("Window.Text", 0xFFD0D0D0),
new("Window.TextLight", 0xFFFFFFFF),
new("WindowBorder:Active", new Color(224, 183, 18).ToUInt()),
new("WindowBorder:Inactive", 0xFF404040),
new("Button.Background", new Color(76, 69, 20, 200).ToUInt()),
new("Button.Background:Hover", new Color(76, 69, 20, 250).ToUInt()),
new("Button.Background:Inactive", new Color(76, 69, 20, 100).ToUInt()),
new("Window.Text", new Color(0, 0, 0, 255).ToUInt()),
new("Window.TextLight", new Color(255, 255, 255, 255).ToUInt()),
new("WindowBorder:Active", new Color(117, 117, 0).ToUInt()),
new("WindowBorder:Inactive", new Color(0, 0, 0, 0).ToUInt()),
new("Button.Background", new Color(168, 168, 168, 200).ToUInt()),
new("Button.Background:Hover", new Color(158, 158, 158, 250).ToUInt()),
new("Button.Background:Inactive", new Color(193, 193, 193, 100).ToUInt()),
new("FlareImageColour", new Color(255, 255, 0).ToUInt()),
});
}

0 comments on commit 2007927

Please sign in to comment.