diff --git a/Content.Client/AI/ClientPathfindingDebugSystem.cs b/Content.Client/AI/ClientPathfindingDebugSystem.cs index 805d66ca5b..f81918ad9f 100644 --- a/Content.Client/AI/ClientPathfindingDebugSystem.cs +++ b/Content.Client/AI/ClientPathfindingDebugSystem.cs @@ -270,7 +270,7 @@ namespace Content.Client.AI } else { - _cachedRegionColors[gridId][region] = Color.Green.WithAlpha(0.3f); + _cachedRegionColors[gridId][region] = Color.LimeGreen.WithAlpha(0.3f); } Timer.Spawn(3000, () => diff --git a/Content.Client/Atmos/Overlays/AtmosDebugOverlay.cs b/Content.Client/Atmos/Overlays/AtmosDebugOverlay.cs index 3aff6e7484..b669e6c20d 100644 --- a/Content.Client/Atmos/Overlays/AtmosDebugOverlay.cs +++ b/Content.Client/Atmos/Overlays/AtmosDebugOverlay.cs @@ -87,11 +87,11 @@ namespace Content.Client.Atmos.Overlays // Red-Green-Blue interpolation if (interp < 0.5f) { - res = Color.InterpolateBetween(Color.Red, Color.Green, interp * 2); + res = Color.InterpolateBetween(Color.Red, Color.LimeGreen, interp * 2); } else { - res = Color.InterpolateBetween(Color.Green, Color.Blue, (interp - 0.5f) * 2); + res = Color.InterpolateBetween(Color.LimeGreen, Color.Blue, (interp - 0.5f) * 2); } } res = res.WithAlpha(0.75f); diff --git a/Content.Client/Chat/ChatHelper.cs b/Content.Client/Chat/ChatHelper.cs index 350ab6aa1c..275c7d2069 100644 --- a/Content.Client/Chat/ChatHelper.cs +++ b/Content.Client/Chat/ChatHelper.cs @@ -9,7 +9,7 @@ namespace Content.Client.Chat channel switch { ChatChannel.Server => Color.Orange, - ChatChannel.Radio => Color.Green, + ChatChannel.Radio => Color.LimeGreen, ChatChannel.OOC => Color.LightSkyBlue, ChatChannel.Dead => Color.MediumPurple, ChatChannel.Admin => Color.Red, diff --git a/Content.Client/Chat/UI/ChatBox.xaml.cs b/Content.Client/Chat/UI/ChatBox.xaml.cs index ee3ff56d9f..74d3f8eb11 100644 --- a/Content.Client/Chat/UI/ChatBox.xaml.cs +++ b/Content.Client/Chat/UI/ChatBox.xaml.cs @@ -490,7 +490,7 @@ namespace Content.Client.Chat.UI { return channel switch { - ChatSelectChannel.Radio => Color.Green, + ChatSelectChannel.Radio => Color.LimeGreen, ChatSelectChannel.OOC => Color.LightSkyBlue, ChatSelectChannel.Dead => Color.MediumPurple, ChatSelectChannel.Admin => Color.Red, diff --git a/Content.Client/Cloning/UI/CloningPodWindow.cs b/Content.Client/Cloning/UI/CloningPodWindow.cs index a52ef93ebd..d9d333f653 100644 --- a/Content.Client/Cloning/UI/CloningPodWindow.cs +++ b/Content.Client/Cloning/UI/CloningPodWindow.cs @@ -116,7 +116,7 @@ namespace Content.Client.Cloning.UI _cloningProgressBar.MaxValue = state.Maximum; UpdateProgress(); _mindState.Text = Loc.GetString(state.MindPresent ? "cloning-pod-mind-present-text" : "cloning-pod-no-activity-text"); - _mindState.FontColorOverride = state.MindPresent ? Color.Green : Color.Red; + _mindState.FontColorOverride = state.MindPresent ? Color.LimeGreen : Color.Red; } protected override void FrameUpdate(FrameEventArgs args) diff --git a/Content.Client/HealthOverlay/UI/HealthOverlayGui.cs b/Content.Client/HealthOverlay/UI/HealthOverlayGui.cs index a4892d3dee..00b016ae12 100644 --- a/Content.Client/HealthOverlay/UI/HealthOverlayGui.cs +++ b/Content.Client/HealthOverlay/UI/HealthOverlayGui.cs @@ -34,7 +34,7 @@ namespace Content.Client.HealthOverlay.UI { Visible = false, VerticalAlignment = VAlignment.Center, - Color = Color.Green + Color = Color.LimeGreen }; AddChild(Panel = new PanelContainer diff --git a/Content.Client/Light/Components/HandheldLightComponent.cs b/Content.Client/Light/Components/HandheldLightComponent.cs index e2dfa67dbc..1b2b194652 100644 --- a/Content.Client/Light/Components/HandheldLightComponent.cs +++ b/Content.Client/Light/Components/HandheldLightComponent.cs @@ -44,7 +44,7 @@ namespace Content.Client.Light.Components private static readonly StyleBoxFlat StyleBoxLit = new() { - BackgroundColor = Color.Green + BackgroundColor = Color.LimeGreen }; private static readonly StyleBoxFlat StyleBoxUnlit = new() diff --git a/Content.Client/PDA/PDABoundUserInterface.cs b/Content.Client/PDA/PDABoundUserInterface.cs index 4e32a06dd6..f8004e1562 100644 --- a/Content.Client/PDA/PDABoundUserInterface.cs +++ b/Content.Client/PDA/PDABoundUserInterface.cs @@ -171,7 +171,7 @@ namespace Content.Client.PDA } if (x <= 5) { - weightedColor = Color.Green; + weightedColor = Color.LimeGreen; } else if (x > 5 && x < 10) { diff --git a/Content.Client/StationEvents/RadiationPulseOverlay.cs b/Content.Client/StationEvents/RadiationPulseOverlay.cs index 02a057a849..94a80fbd0c 100644 --- a/Content.Client/StationEvents/RadiationPulseOverlay.cs +++ b/Content.Client/StationEvents/RadiationPulseOverlay.cs @@ -102,7 +102,7 @@ namespace Content.Client.StationEvents } _transitions[entity] = (!easingIn, transitionTime); - _colors[entity] = Color.Green.WithAlpha(0.0f); + _colors[entity] = Color.LimeGreen.WithAlpha(0.0f); _alphaRateOfChange[entity] = 1.0f / (float) (transitionTime - currentTime).TotalSeconds; } diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index def72ccdb9..4674d2afaa 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -375,7 +375,7 @@ namespace Content.Client.Stylesheets sliderForeBox.SetPatchMargin(StyleBox.Margin.All, 12); sliderGrabBox.SetPatchMargin(StyleBox.Margin.All, 12); - var sliderFillGreen = new StyleBoxTexture(sliderFillBox) {Modulate = Color.Green}; + var sliderFillGreen = new StyleBoxTexture(sliderFillBox) {Modulate = Color.LimeGreen}; var sliderFillRed = new StyleBoxTexture(sliderFillBox) {Modulate = Color.Red}; var sliderFillBlue = new StyleBoxTexture(sliderFillBox) {Modulate = Color.Blue}; diff --git a/Content.Client/Suspicion/SuspicionGui.xaml.cs b/Content.Client/Suspicion/SuspicionGui.xaml.cs index 8e7aa39b93..ec70ed5e2b 100644 --- a/Content.Client/Suspicion/SuspicionGui.xaml.cs +++ b/Content.Client/Suspicion/SuspicionGui.xaml.cs @@ -111,7 +111,7 @@ namespace Content.Client.Suspicion buttonText = Loc.GetString(buttonText); RoleButton.Text = buttonText; - RoleButton.ModulateSelfOverride = _previousAntagonist ? Color.Red : Color.Green; + RoleButton.ModulateSelfOverride = _previousAntagonist ? Color.Red : Color.LimeGreen; Visible = true; } diff --git a/Content.Client/Weapons/Ranged/Barrels/Components/ClientRevolverBarrelComponent.cs b/Content.Client/Weapons/Ranged/Barrels/Components/ClientRevolverBarrelComponent.cs index 0058700482..c4054a43a9 100644 --- a/Content.Client/Weapons/Ranged/Barrels/Components/ClientRevolverBarrelComponent.cs +++ b/Content.Client/Weapons/Ranged/Barrels/Components/ClientRevolverBarrelComponent.cs @@ -132,7 +132,7 @@ namespace Content.Client.Weapons.Ranged.Barrels.Components { Texture = texture, TextureScale = (scale, scale), - ModulateSelfOverride = Color.Green, + ModulateSelfOverride = Color.LimeGreen, }); } Color color; diff --git a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorControlBoxComponent.cs b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorControlBoxComponent.cs index 11cacdd052..8ef4e82bd4 100644 --- a/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorControlBoxComponent.cs +++ b/Content.Server/ParticleAccelerator/Components/ParticleAcceleratorControlBoxComponent.cs @@ -337,7 +337,7 @@ namespace Content.Server.ParticleAccelerator.Components } var powerBlock = _wirePowerBlocked; - var keyboardLight = new StatusLightData(Color.Green, + var keyboardLight = new StatusLightData(Color.LimeGreen, _wireInterfaceBlocked ? StatusLightState.BlinkingFast : StatusLightState.On, diff --git a/Content.Shared/Wires/SharedWiresComponent.cs b/Content.Shared/Wires/SharedWiresComponent.cs index 862be567ab..225ef52873 100644 --- a/Content.Shared/Wires/SharedWiresComponent.cs +++ b/Content.Shared/Wires/SharedWiresComponent.cs @@ -208,7 +208,7 @@ namespace Content.Shared.Wires { WireColor.Red => Color.Red, WireColor.Blue => Color.Blue, - WireColor.Green => Color.Green, + WireColor.Green => Color.LimeGreen, WireColor.Orange => Color.Orange, WireColor.Brown => Color.Brown, WireColor.Gold => Color.Gold,