38 lines
2.1 KiB
Go
38 lines
2.1 KiB
Go
|
|
package ui
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/gdamore/tcell/v2"
|
||
|
|
"github.com/rivo/tview"
|
||
|
|
)
|
||
|
|
|
||
|
|
func applyStyles() {
|
||
|
|
tview.Styles.PrimitiveBackgroundColor = tcell.NewRGBColor(12, 13, 22)
|
||
|
|
tview.Styles.ContrastBackgroundColor = tcell.NewRGBColor(34, 19, 53)
|
||
|
|
tview.Styles.MoreContrastBackgroundColor = tcell.NewRGBColor(18, 18, 32)
|
||
|
|
tview.Styles.BorderColor = tcell.NewRGBColor(112, 102, 255)
|
||
|
|
tview.Styles.TitleColor = tcell.NewRGBColor(255, 121, 198)
|
||
|
|
tview.Styles.GraphicsColor = tcell.NewRGBColor(139, 233, 253)
|
||
|
|
tview.Styles.PrimaryTextColor = tcell.NewRGBColor(241, 250, 255)
|
||
|
|
tview.Styles.SecondaryTextColor = tcell.NewRGBColor(80, 250, 123)
|
||
|
|
tview.Styles.TertiaryTextColor = tcell.NewRGBColor(139, 233, 253)
|
||
|
|
tview.Styles.InverseTextColor = tcell.NewRGBColor(12, 13, 22)
|
||
|
|
tview.Styles.ContrastSecondaryTextColor = tcell.NewRGBColor(189, 147, 249)
|
||
|
|
}
|
||
|
|
|
||
|
|
func bannerView() *tview.TextView {
|
||
|
|
text := tview.NewTextView()
|
||
|
|
text.SetDynamicColors(true)
|
||
|
|
text.SetTextAlign(tview.AlignCenter)
|
||
|
|
text.SetBackgroundColor(tview.Styles.PrimitiveBackgroundColor)
|
||
|
|
text.SetText(
|
||
|
|
"[::b][#84aaff]██████╗ ██╗ ██████╗ ██████╗ ██████╗██╗ █████╗ ██╗ ██╗\n" +
|
||
|
|
"[#84aaff]██╔══██╗██║██╔════╝██╔═══██╗██╔════╝██║ ██╔══██╗██║ ██║\n" +
|
||
|
|
"[#84aaff]██████╔╝██║██║ ██║ ██║██║ ██║ ███████║██║ █╗ ██║\n" +
|
||
|
|
"[#84aaff]██╔═══╝ ██║██║ ██║ ██║██║ ██║ ██╔══██║██║███╗██║\n" +
|
||
|
|
"[#84aaff]██║ ██║╚██████╗╚██████╔╝╚██████╗███████╗██║ ██║╚███╔███╔╝\n" +
|
||
|
|
"[#84aaff]╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═════╝╚══════╝╚═╝ ╚═╝ ╚══╝╚══╝",
|
||
|
|
)
|
||
|
|
text.SetBorder(false)
|
||
|
|
return text
|
||
|
|
}
|