From eece3cb994280498d2a9c259030cc79a4be3fce3 Mon Sep 17 00:00:00 2001 From: Wyvest <45589059+Wyvest@users.noreply.github.com> Date: Sat, 12 Mar 2022 15:43:15 +0700 Subject: color property --- src/main/kotlin/cc/woverflow/chatting/chat/ChatTab.kt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main/kotlin/cc/woverflow/chatting/chat/ChatTab.kt') diff --git a/src/main/kotlin/cc/woverflow/chatting/chat/ChatTab.kt b/src/main/kotlin/cc/woverflow/chatting/chat/ChatTab.kt index 1e20b01..2cd4418 100644 --- a/src/main/kotlin/cc/woverflow/chatting/chat/ChatTab.kt +++ b/src/main/kotlin/cc/woverflow/chatting/chat/ChatTab.kt @@ -20,6 +20,9 @@ data class ChatTab( @SerializedName("ignore_ends") val ignoreEndsWith: List?, @SerializedName("ignore_equals") val ignoreEquals: List?, @SerializedName("ignore_regex") val uncompiledIgnoreRegex: List?, + val color: Int?, + @SerializedName("hovered_color") val hoveredColor: Int?, + @SerializedName("selected_color") val selectedColor: Int?, val prefix: String, ) { lateinit var button: TabButton -- cgit