diff options
author | Redth <redth1206@proton.me> | 2023-11-07 20:01:24 +0800 |
---|---|---|
committer | Redth <redth1206@proton.me> | 2023-11-07 20:01:24 +0800 |
commit | c7eda89469f6f51524c84af9dfb189350b86a00f (patch) | |
tree | 35151ba50ea0fe0533f5902f80f9530634608d3d /src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt | |
parent | cd25a22ebade375a5be4000c04743ba738f9b71f (diff) | |
download | Chatting-c7eda89469f6f51524c84af9dfb189350b86a00f.tar.gz Chatting-c7eda89469f6f51524c84af9dfb189350b86a00f.tar.bz2 Chatting-c7eda89469f6f51524c84af9dfb189350b86a00f.zip |
chat button background colors
Diffstat (limited to 'src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt')
-rw-r--r-- | src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt | 12 |
1 files changed, 12 insertions, 0 deletions
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." |