Browse Source

feat(config): add theme.messages_text.mention_color field

ayn2op 10 tháng trước cách đây
mục cha
commit
115ea266f6
2 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 1 0
      internal/config/config.toml
  2. 1 0
      internal/config/theme.go

+ 1 - 0
internal/config/config.toml

@@ -126,3 +126,4 @@ content_color = "white"
 emoji_color = "green"
 link_color = "blue"
 attachment_color = "yellow"
+mention_color = "blue"

+ 1 - 0
internal/config/theme.go

@@ -110,5 +110,6 @@ type (
 		EmojiColor      string `toml:"emoji_color"`
 		LinkColor       string `toml:"link_color"`
 		AttachmentColor string `toml:"attachment_color"`
+		MentionColor    string `toml:"mention_color"`
 	}
 )