Răsfoiți Sursa

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

ayn2op 10 luni în urmă
părinte
comite
115ea266f6
2 a modificat fișierele cu 2 adăugiri și 0 ștergeri
  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"`
 	}
 )