Use conservative colors: replace bright colors with standard terminal palette

This commit is contained in:
2025-11-07 12:49:04 +00:00
parent e4e8e59762
commit 3cedac371c
6 changed files with 29 additions and 29 deletions

View File

@ -17,20 +17,20 @@ import (
var (
previewBoxStyle = lipgloss.NewStyle().
Border(lipgloss.RoundedBorder()).
BorderForeground(lipgloss.Color("#7D56F4")).
BorderForeground(lipgloss.Color("240")).
Padding(1, 2)
checkPassedStyle = lipgloss.NewStyle().
Foreground(lipgloss.Color("#04B575"))
Foreground(lipgloss.Color("2"))
checkFailedStyle = lipgloss.NewStyle().
Foreground(lipgloss.Color("#FF6B6B"))
Foreground(lipgloss.Color("1"))
checkWarningStyle = lipgloss.NewStyle().
Foreground(lipgloss.Color("#FFA500"))
Foreground(lipgloss.Color("3"))
checkPendingStyle = lipgloss.NewStyle().
Foreground(lipgloss.Color("#626262"))
Foreground(lipgloss.Color("244"))
)
// SafetyCheck represents a pre-restore safety check