Jelajahi Sumber

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

ayn2op 10 bulan lalu
induk
melakukan
115ea266f6
2 mengubah file dengan 2 tambahan dan 0 penghapusan
  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"`
 	}
 )