ayn2op пре 1 година
родитељ
комит
b6d8baf607
1 измењених фајлова са 8 додато и 8 уклоњено
  1. 8 8
      internal/config/theme.go

+ 8 - 8
internal/config/theme.go

@@ -24,10 +24,10 @@ type (
 	}
 
 	MessagesTextTheme struct {
-		AuthorColor     string `toml:"author_color"`
-    		ContentColor    string `toml:"content_color"`
-		EmoteColor      string `toml:"emote_color"`
-		ReplyIndicator  string `toml:"reply_indicator"`
+		AuthorColor    string `toml:"author_color"`
+		ContentColor   string `toml:"content_color"`
+		EmoteColor     string `toml:"emote_color"`
+		ReplyIndicator string `toml:"reply_indicator"`
 	}
 )
 
@@ -48,10 +48,10 @@ func defaultTheme() Theme {
 			PrivateChannelColor: tview.Styles.PrimaryTextColor.String(),
 		},
 		MessagesText: MessagesTextTheme{
-			AuthorColor:        "aqua",
-      			ContentColor:       tview.Styles.PrimaryTextColor.String(),
-			EmoteColor:         "green",
-			ReplyIndicator:     string(tview.BoxDrawingsLightArcDownAndRight) + " ",
+			AuthorColor:    "aqua",
+			ContentColor:   tview.Styles.PrimaryTextColor.String(),
+			EmoteColor:     "green",
+			ReplyIndicator: string(tview.BoxDrawingsLightArcDownAndRight) + " ",
 		},
 	}
 }