summaryrefslogtreecommitdiff
path: root/raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/banner.go
diff options
context:
space:
mode:
Diffstat (limited to 'raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/banner.go')
-rw-r--r--raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/banner.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/banner.go b/raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/banner.go
new file mode 100644
index 0000000..e3a2ca3
--- /dev/null
+++ b/raveos-hyprland-theme/theme-data/DankMaterialShell/core/internal/tui/banner.go
@@ -0,0 +1,21 @@
+package tui
+
+import "github.com/charmbracelet/lipgloss"
+
+func (m Model) renderBanner() string {
+ logo := `
+██████╗ █████╗ ███╗ ██╗██╗ ██╗
+██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
+██║ ██║███████║██╔██╗ ██║█████╔╝
+██║ ██║██╔══██║██║╚██╗██║██╔═██╗
+██████╔╝██║ ██║██║ ╚████║██║ ██╗
+╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝ `
+
+ theme := TerminalTheme()
+ style := lipgloss.NewStyle().
+ Foreground(lipgloss.Color(theme.Primary)).
+ Bold(true).
+ MarginBottom(1)
+
+ return style.Render(logo)
+}