in go/utils.go [126:166]
func getTableStyle(style string) table.Style {
switch style {
case "StyleColoredBright":
return table.StyleColoredBright
case "StyleBold":
return table.StyleBold
case "StyleColoredDark":
return table.StyleColoredDark
case "StyleColoredBlackOnBlueWhite":
return table.StyleColoredBlackOnBlueWhite
case "StyleColoredBlackOnCyanWhite":
return table.StyleColoredBlackOnCyanWhite
case "StyleColoredBlackOnGreenWhite":
return table.StyleColoredBlackOnGreenWhite
case "StyleColoredBlackOnMagentaWhite":
return table.StyleColoredBlackOnMagentaWhite
case "StyleColoredBlackOnYellowWhite":
return table.StyleColoredBlackOnYellowWhite
case "StyleColoredBlackOnRedWhite":
return table.StyleColoredBlackOnRedWhite
case "StyleColoredBlueWhiteOnBlack":
return table.StyleColoredBlueWhiteOnBlack
case "StyleColoredCyanWhiteOnBlack":
return table.StyleColoredCyanWhiteOnBlack
case "StyleColoredGreenWhiteOnBlack":
return table.StyleColoredGreenWhiteOnBlack
case "StyleColoredMagentaWhiteOnBlack":
return table.StyleColoredMagentaWhiteOnBlack
case "StyleColoredRedWhiteOnBlack":
return table.StyleColoredRedWhiteOnBlack
case "StyleColoredYellowWhiteOnBlack":
return table.StyleColoredYellowWhiteOnBlack
case "StyleDouble":
return table.StyleDouble
case "StyleLight":
return table.StyleLight
case "StyleRounded":
return table.StyleRounded
}
return table.StyleDefault
}