mirror of
https://github.com/brianstrauch/solitaire-tui.git
synced 2024-11-16 07:47:52 +01:00
use adaptive colors for dark mode
This commit is contained in:
parent
bff0997c87
commit
944d9def9a
2 changed files with 11 additions and 9 deletions
16
pkg/card.go
16
pkg/card.go
|
@ -31,17 +31,17 @@ func NewCard(value, suit int) *Card {
|
|||
}
|
||||
|
||||
func (c *Card) View() string {
|
||||
color := "#000000"
|
||||
color := lipgloss.AdaptiveColor{Light: "#000000", Dark: "#FFFFFF"}
|
||||
|
||||
if c.IsSelected {
|
||||
color = "#FFFF00"
|
||||
color = lipgloss.AdaptiveColor{Light: "#FFFF00", Dark: "#FFFF00"}
|
||||
}
|
||||
|
||||
if !c.IsVisible {
|
||||
return viewCard("╱", "", color)
|
||||
}
|
||||
|
||||
style := lipgloss.NewStyle().Foreground(lipgloss.Color(c.Color()))
|
||||
style := lipgloss.NewStyle().Foreground(c.Color())
|
||||
return viewCard(" ", style.Render(c.String()), color)
|
||||
}
|
||||
|
||||
|
@ -49,11 +49,11 @@ func (c *Card) Flip() {
|
|||
c.IsVisible = !c.IsVisible
|
||||
}
|
||||
|
||||
func (c *Card) Color() string {
|
||||
func (c *Card) Color() lipgloss.AdaptiveColor {
|
||||
if c.Suit == 1 || c.Suit == 2 {
|
||||
return "#FF0000"
|
||||
return lipgloss.AdaptiveColor{Light: "#FF0000", Dark: "#FF0000"}
|
||||
} else {
|
||||
return "#000000"
|
||||
return lipgloss.AdaptiveColor{Light: "#000000", Dark: "#888888"}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -61,8 +61,8 @@ func (c *Card) String() string {
|
|||
return values[c.Value] + suits[c.Suit]
|
||||
}
|
||||
|
||||
func viewCard(design, shorthand, color string) string {
|
||||
style := lipgloss.NewStyle().Foreground(lipgloss.Color(color))
|
||||
func viewCard(design, shorthand string, color lipgloss.AdaptiveColor) string {
|
||||
style := lipgloss.NewStyle().Foreground(color)
|
||||
padding := strings.Repeat("─", Width-2-lipgloss.Width(shorthand))
|
||||
|
||||
view := style.Render("╭") + shorthand + style.Render(padding+"╮") + "\n"
|
||||
|
|
|
@ -3,6 +3,8 @@ package pkg
|
|||
import (
|
||||
"math/rand"
|
||||
"strings"
|
||||
|
||||
"github.com/charmbracelet/lipgloss"
|
||||
)
|
||||
|
||||
type Deck struct {
|
||||
|
@ -49,7 +51,7 @@ func (d *Deck) View() string {
|
|||
|
||||
// Outline
|
||||
if d.Size() == 0 {
|
||||
return viewCard(" ", "", "#EEEEEE")
|
||||
return viewCard(" ", "", lipgloss.AdaptiveColor{Light: "#EEEEEE", Dark: "#888888"})
|
||||
}
|
||||
|
||||
// Expanded cards
|
||||
|
|
Loading…
Reference in a new issue