This is a creation in Article, where the information may have evolved or changed.
In some desktop environments, if QT does not work, open the documentation for the Go API, which may not be able to read the document or even see the text due to the system color. Browse through a liteide directory and find a style sheet on Liteide/share/liteide/packages/go/godoc: Style.css. Modify the style sheet to adjust the style of the document.
Body {margin:0;font-family:helvetica, Arial, Sans-serif;background: #333;}
I added the body background color to #333 so that it is not affected by the system desktop configuration.
Pre {background: #333;p adding:10px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
H2 {background: #333;p adding:2px 5px;}
Modify the declaration and the H2 title The background color is #333, making all backgrounds consistent.
Body {color: #eee;}
Then set the font color, it's much nicer.