2 Commits

Author SHA1 Message Date
Hadi 47ed1886a9 change default colors
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
2026-05-26 16:07:40 +02:00
Hadi 9a336aff8e add color to title 2026-05-26 16:02:58 +02:00
2 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ func RenderWithTitle(border lipgloss.Style, title, content string, width, height
fillW = 0 fillW = 0
} }
bc := lipgloss.NewStyle().Foreground(border.GetBorderTopForeground()) bc := lipgloss.NewStyle().Foreground(border.GetBorderTopForeground())
topLine := bc.Render("╭ ") + title + bc.Render(" "+strings.Repeat("─", fillW)+"╮") topLine := bc.Render("╭ ") + bc.Render(title) + bc.Render(" "+strings.Repeat("─", fillW)+"╮")
return lipgloss.JoinVertical(lipgloss.Left, topLine, box) return lipgloss.JoinVertical(lipgloss.Left, topLine, box)
} }
+16 -16
View File
@@ -1,19 +1,19 @@
# ilovetui default theme # ilovetui default theme
# Copy to ~/.config/ilovetui/config.yaml and edit to customize. # Copy to ~/.config/ilovetui/config.yaml and edit to customize.
colors: colors:
base00: "#1e1e2e" # Background base00: "#110F12" # Background
base01: "#181825" # Lighter Background / Status Bars base01: "#1C1920" # Lighter Background / Status Bars
base02: "#313244" # Selection Background base02: "#1D1A26" # Selection Background
base03: "#45475a" # Comments / Invisibles base03: "#514D63" # Comments / Invisibles
base04: "#585b70" # Dark Foreground / Status Bars base04: "#8E8AA0" # Dark Foreground / Status Bars
base05: "#cdd6f4" # Default Foreground base05: "#C2BED6" # Default Foreground
base06: "#f5f5f5" # Light Foreground base06: "#D8D5EA" # Light Foreground
base07: "#b4befe" # Light Background base07: "#EAE7F7" # Light Background
base08: "#f38ba8" # Variables / Errors / Diff Deleted base08: "#E07080" # Variables / Errors / Diff Deleted
base09: "#fab387" # Integers / Constants / Booleans base09: "#D49070" # Integers / Constants / Booleans
base0a: "#f9e2af" # Classes / Warnings / Search Background base0a: "#C4B060" # Classes / Warnings / Search Background
base0b: "#a6e3a1" # Strings / Success / Diff Inserted base0b: "#80B880" # Strings / Success / Diff Inserted
base0c: "#94e2d5" # Support / Regex / Escape Characters base0c: "#70B8C0" # Support / Regex / Escape Characters
base0d: "#89b4fa" # Functions / Methods / Headings / Accent base0d: "#9E97F8" # Functions / Methods / Headings / Accent
base0e: "#cba6f7" # Keywords / Storage / Diff Changed base0e: "#C090E8" # Keywords / Storage / Diff Changed
base0f: "#f2cdcd" # Embedded / Misc base0f: "#D080A0" # Embedded / Misc