From c7eda89469f6f51524c84af9dfb189350b86a00f Mon Sep 17 00:00:00 2001 From: Redth Date: Tue, 7 Nov 2023 20:01:24 +0800 Subject: chat button background colors --- .../kotlin/cc/woverflow/chatting/config/ChattingConfig.kt | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt') diff --git a/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt b/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt index e17eb0c..711250f 100644 --- a/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt +++ b/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt @@ -62,6 +62,18 @@ object ChattingConfig : Config( ) var inputBoxBackgroundColor = OneColor(0, 0, 0, 128) + @Color( + name = "Chat Button Background Color", category = "General", + description = "The color of the chat button background." + ) + var chatButtonBackgroundColor = OneColor(0, 0, 0, 128) + + @Color( + name = "Chat Button Hovered Background Color", category = "General", + description = "The color of the chat button background when hovered." + ) + var chatButtonHoveredBackgroundColor = OneColor(255, 255, 255, 128) + @Switch( name = "Inform Outdated Mods", category = "General", description = "Inform the user when a mod can be replaced by Chatting." -- cgit