Skip to content

Commit

Permalink
client: consistently use color in config descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam- committed Dec 5, 2024
1 parent 82c9c36 commit 74639e2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ default ItemIdentificationMode identificationType()
keyName = "textColor",
name = "Color",
position = -3,
description = "The colour of the identification text."
description = "The color of the identification text."
)
default Color textColor()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ default boolean showAreaLines()
@Alpha
@ConfigItem(
keyName = "npcAggroAreaColor",
name = "Aggressive colour",
description = "Choose colour to use for marking NPC unaggressive area when NPCs are aggressive.",
name = "Aggressive color",
description = "Choose color to use for marking NPC unaggressive area when NPCs are aggressive.",
position = 5
)
default Color aggroAreaColor()
Expand All @@ -99,8 +99,8 @@ default Color aggroAreaColor()
@Alpha
@ConfigItem(
keyName = "npcUnaggroAreaColor",
name = "Unaggressive colour",
description = "Choose colour to use for marking NPC unaggressive area after NPCs have lost aggression.",
name = "Unaggressive color",
description = "Choose color to use for marking NPC unaggressive area after NPCs have lost aggression.",
position = 6
)
default Color unaggroAreaColor()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ public interface TimestampConfig extends Config
keyName = "opaqueTimestamp",
name = "Timestamps (opaque)",
position = 1,
description = "Colour of timestamps from the Timestamps plugin (opaque)."
description = "Color of timestamps from the Timestamps plugin (opaque)."
)
Color opaqueTimestamp();

@ConfigItem(
keyName = "transparentTimestamp",
name = "Timestamps (transparent)",
position = 2,
description = "Colour of timestamps from the Timestamps plugin (transparent)."
description = "Color of timestamps from the Timestamps plugin (transparent)."
)
Color transparentTimestamp();

Expand Down

0 comments on commit 74639e2

Please sign in to comment.