20 lines
552 B
Go
20 lines
552 B
Go
package balance
|
|
|
|
import "git.kirsle.net/go/render"
|
|
|
|
// Shell related variables.
|
|
var (
|
|
ShellFontFilename = "DejaVuSansMono.ttf"
|
|
ShellBackgroundColor = render.RGBA(0, 20, 40, 200)
|
|
ShellForegroundColor = render.RGBA(0, 153, 255, 255)
|
|
ShellPromptColor = render.White
|
|
ShellPadding = 8
|
|
ShellFontSize = 16
|
|
ShellFontSizeSmall = 10
|
|
ShellCursorBlinkRate uint64 = 20
|
|
ShellHistoryLineCount = 8
|
|
|
|
// Ticks that a flashed message persists for.
|
|
FlashTTL uint64 = 400
|
|
)
|