Skip to content

Commit 6ce42ac

Browse files
committed
Hud color adjustments
1 parent f723d5d commit 6ce42ac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/kotlin/com/lambda/client/module/modules/client/GuiColors.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ object GuiColors : Module(
1414
private val primarySetting by setting("Primary Color", ColorHolder(108, 0, 43, 255))
1515
private val outlineSetting by setting("Outline Color", ColorHolder(78, 0, 31, 200))
1616
private val backgroundSetting by setting("Background Color", ColorHolder(31, 10, 18, 200))
17-
private val textSetting by setting("Text Color", ColorHolder(255, 255, 255, 255))
17+
private val textSetting by setting("Text Color", ColorHolder(255, 240, 246, 255))
1818
private val aHover by setting("Hover Alpha", 32, 0..255, 1)
1919

2020
val primary get() = primarySetting.clone()

src/main/kotlin/com/lambda/client/module/modules/client/Hud.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ object Hud : Module(
1212
enabledByDefault = true
1313
) {
1414
val hudFrame by setting("Hud Frame", false)
15-
val primaryColor by setting("Primary Color", ColorHolder(255, 255, 255), false)
16-
val secondaryColor by setting("Secondary Color", ColorHolder(155, 144, 255), false)
15+
val primaryColor by setting("Primary Color", ColorHolder(255, 240, 246), false)
16+
val secondaryColor by setting("Secondary Color", ColorHolder(108, 0, 43), false)
1717
}

0 commit comments

Comments
 (0)