Skip to content

Commit

Permalink
fix colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Just-a-Unity-Dev committed Jul 10, 2024
1 parent 4200c23 commit d953add
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Content.Client/Lathe/UI/RecipeTooltip.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
MaxWidth="400">
<PanelContainer>
<PanelContainer.PanelOverride>
<gfx:StyleBoxFlat
BorderThickness="2"
<gfx:StyleBoxFlat
BorderThickness="2"
BorderColor="#464966"
BackgroundColor="#25252A"
BackgroundColor="#141414"
/>
</PanelContainer.PanelOverride>
<BoxContainer
<BoxContainer
Orientation="Vertical"
RectClipContent="True"
Margin="4">
Expand Down
2 changes: 1 addition & 1 deletion Content.Client/Lobby/UI/HighlightedContainer.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xmlns="https://spacestation14.io"
xmlns:graphics="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client">
<PanelContainer.PanelOverride>
<graphics:StyleBoxFlat BackgroundColor="#2F2F35"
<graphics:StyleBoxFlat BackgroundColor="#232323"
ContentMarginTopOverride="10"
ContentMarginBottomOverride="10"
ContentMarginLeftOverride="10"
Expand Down
2 changes: 1 addition & 1 deletion Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ public void RefreshJobs()

category.AddChild(new PanelContainer
{
PanelOverride = new StyleBoxFlat {BackgroundColor = Color.FromHex("#464966")},
PanelOverride = new StyleBoxFlat {BackgroundColor = Color.FromHex("#262626")},
Children =
{
new Label
Expand Down
2 changes: 1 addition & 1 deletion Content.Client/MassMedia/Ui/ArticleEditorPanel.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PanelContainer StyleClasses="BackgroundOpenLeft"/>
<PanelContainer>
<PanelContainer.PanelOverride>
<graphics:StyleBoxFlat BorderColor="#25252A" BorderThickness="0 0 0 3"/>
<graphics:StyleBoxFlat BorderColor="#141414" BorderThickness="0 0 0 3"/>
</PanelContainer.PanelOverride>
</PanelContainer>
<BoxContainer Orientation="Vertical" HorizontalExpand="True" VerticalExpand="True">
Expand Down
6 changes: 3 additions & 3 deletions Content.Client/Stylesheets/StyleNano.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public sealed class StyleNano : StyleBase
public const string StyleClassButtonColorRed = "ButtonColorRed";
public const string StyleClassButtonColorGreen = "ButtonColorGreen";

public static readonly Color ChatBackgroundColor = Color.FromHex("#25252ADD");
public static readonly Color ChatBackgroundColor = Color.FromHex("#141414DD");

public override Stylesheet Stylesheet { get; }

Expand Down Expand Up @@ -1373,11 +1373,11 @@ public StyleNano(IResourceCache resCache) : base(resCache)

Element<PanelContainer>().Class("BackgroundOpenRight")
.Prop(PanelContainer.StylePropertyPanel, BaseButtonOpenRight)
.Prop(Control.StylePropertyModulateSelf, Color.FromHex("#25252A")),
.Prop(Control.StylePropertyModulateSelf, Color.FromHex("#141414")),

Element<PanelContainer>().Class("BackgroundOpenLeft")
.Prop(PanelContainer.StylePropertyPanel, BaseButtonOpenLeft)
.Prop(Control.StylePropertyModulateSelf, Color.FromHex("#25252A")),
.Prop(Control.StylePropertyModulateSelf, Color.FromHex("#141414")),
// ---

// Dividers
Expand Down

0 comments on commit d953add

Please sign in to comment.