Skip to content

Commit

Permalink
Hud color adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Avanatiker committed Jul 1, 2021
1 parent f723d5d commit 6ce42ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object GuiColors : Module(
private val primarySetting by setting("Primary Color", ColorHolder(108, 0, 43, 255))
private val outlineSetting by setting("Outline Color", ColorHolder(78, 0, 31, 200))
private val backgroundSetting by setting("Background Color", ColorHolder(31, 10, 18, 200))
private val textSetting by setting("Text Color", ColorHolder(255, 255, 255, 255))
private val textSetting by setting("Text Color", ColorHolder(255, 240, 246, 255))
private val aHover by setting("Hover Alpha", 32, 0..255, 1)

val primary get() = primarySetting.clone()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ object Hud : Module(
enabledByDefault = true
) {
val hudFrame by setting("Hud Frame", false)
val primaryColor by setting("Primary Color", ColorHolder(255, 255, 255), false)
val secondaryColor by setting("Secondary Color", ColorHolder(155, 144, 255), false)
val primaryColor by setting("Primary Color", ColorHolder(255, 240, 246), false)
val secondaryColor by setting("Secondary Color", ColorHolder(108, 0, 43), false)
}

0 comments on commit 6ce42ac

Please sign in to comment.