mirror of
https://github.com/mrusme/neonmodem.git
synced 2024-11-03 04:27:16 -05:00
ecfd936650
Spinner color from config
508 lines
16 KiB
Go
508 lines
16 KiB
Go
package config
|
|
|
|
import (
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
|
|
"github.com/charmbracelet/lipgloss"
|
|
"github.com/pelletier/go-toml/v2"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
const (
|
|
StatusOnline int8 = iota
|
|
StatusOffline = 2
|
|
StatusNoNewSyncs = 3
|
|
)
|
|
|
|
var VERSION string
|
|
|
|
type ServiceStatus int8
|
|
|
|
type SystemConfig struct {
|
|
Type string
|
|
Config map[string]interface{}
|
|
}
|
|
|
|
type ThemeItemConfig struct {
|
|
Foreground lipgloss.AdaptiveColor
|
|
Background lipgloss.AdaptiveColor
|
|
Border struct {
|
|
Foreground lipgloss.AdaptiveColor
|
|
Background lipgloss.AdaptiveColor
|
|
Border lipgloss.Border
|
|
Sides []bool
|
|
}
|
|
Padding []int
|
|
Margin []int
|
|
}
|
|
|
|
type Config struct {
|
|
Debug bool
|
|
Log string
|
|
Proxy string
|
|
Browser string
|
|
RenderShadows bool
|
|
RenderImages bool
|
|
RenderSplash bool
|
|
RenderBanner bool
|
|
|
|
Systems []SystemConfig
|
|
|
|
Theme struct {
|
|
Header struct {
|
|
Selector ThemeItemConfig
|
|
Spinner ThemeItemConfig
|
|
}
|
|
|
|
DialogBox struct {
|
|
Window struct {
|
|
Focused ThemeItemConfig
|
|
Blurred ThemeItemConfig
|
|
}
|
|
Titlebar struct {
|
|
Focused ThemeItemConfig
|
|
Blurred ThemeItemConfig
|
|
}
|
|
Bottombar ThemeItemConfig
|
|
}
|
|
|
|
ErrorDialogBox struct {
|
|
Window struct {
|
|
Focused ThemeItemConfig
|
|
Blurred ThemeItemConfig
|
|
}
|
|
Titlebar struct {
|
|
Focused ThemeItemConfig
|
|
Blurred ThemeItemConfig
|
|
}
|
|
Bottombar ThemeItemConfig
|
|
}
|
|
|
|
PostsList struct {
|
|
List struct {
|
|
Focused ThemeItemConfig
|
|
Blurred ThemeItemConfig
|
|
}
|
|
Item struct {
|
|
Focused ThemeItemConfig
|
|
Blurred ThemeItemConfig
|
|
Selected ThemeItemConfig
|
|
}
|
|
ItemDetail struct {
|
|
Focused ThemeItemConfig
|
|
Blurred ThemeItemConfig
|
|
Selected ThemeItemConfig
|
|
}
|
|
}
|
|
|
|
PopupList struct {
|
|
List struct {
|
|
Focused ThemeItemConfig
|
|
Blurred ThemeItemConfig
|
|
}
|
|
Item struct {
|
|
Focused ThemeItemConfig
|
|
Blurred ThemeItemConfig
|
|
Selected ThemeItemConfig
|
|
}
|
|
ItemDetail struct {
|
|
Focused ThemeItemConfig
|
|
Blurred ThemeItemConfig
|
|
Selected ThemeItemConfig
|
|
}
|
|
}
|
|
|
|
Post struct {
|
|
Author ThemeItemConfig
|
|
Subject ThemeItemConfig
|
|
}
|
|
|
|
Reply struct {
|
|
Author ThemeItemConfig
|
|
}
|
|
}
|
|
}
|
|
|
|
func Load() (Config, error) {
|
|
cfgDir, err := os.UserConfigDir()
|
|
if err != nil {
|
|
return Config{}, err
|
|
}
|
|
homeDir, err := os.UserHomeDir()
|
|
if err != nil {
|
|
return Config{}, err
|
|
}
|
|
cacheDir, err := os.UserCacheDir()
|
|
if err != nil {
|
|
return Config{}, err
|
|
}
|
|
|
|
SetDefaults(cacheDir)
|
|
|
|
viper.SetConfigName("neonmodem")
|
|
viper.SetConfigType("toml")
|
|
viper.AddConfigPath(cfgDir)
|
|
viper.AddConfigPath(homeDir)
|
|
|
|
viper.SetEnvPrefix("neonmodem")
|
|
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
|
|
viper.AutomaticEnv()
|
|
|
|
if err := viper.ReadInConfig(); err != nil {
|
|
if _, ok := err.(viper.ConfigFileNotFoundError); !ok {
|
|
return Config{}, err
|
|
}
|
|
}
|
|
|
|
var config Config
|
|
if err := viper.Unmarshal(&config); err != nil {
|
|
return Config{}, err
|
|
}
|
|
|
|
return config, nil
|
|
}
|
|
|
|
func (cfg *Config) Save() error {
|
|
cfgFile := viper.ConfigFileUsed()
|
|
if cfgFile == "" {
|
|
cfgDir, err := os.UserConfigDir()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cfgFile = path.Join(cfgDir, "neonmodem.toml")
|
|
}
|
|
|
|
fd, err := os.OpenFile(cfgFile, os.O_WRONLY|os.O_CREATE, 0600)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer fd.Close()
|
|
|
|
if err := toml.NewEncoder(fd).Encode(cfg); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func SetDefaults(cacheDir string) {
|
|
viper.SetDefault("Debug", "false")
|
|
viper.SetDefault("Log", path.Join(cacheDir, "neonmodem.log"))
|
|
viper.SetDefault("Proxy", "")
|
|
viper.SetDefault("Browser", "")
|
|
|
|
viper.SetDefault("RenderShadows", "true")
|
|
viper.SetDefault("RenderImages", "true")
|
|
viper.SetDefault("RenderSplash", "true")
|
|
viper.SetDefault("RenderBanner", "true")
|
|
|
|
// --- Header ---
|
|
// Header Selector
|
|
viper.SetDefault("Theme.Header.Selector.Margin",
|
|
[]int{0, 0, 0, 0})
|
|
viper.SetDefault("Theme.Header.Selector.Padding",
|
|
[]int{0, 1, 0, 1})
|
|
viper.SetDefault("Theme.Header.Selector.Border.Border",
|
|
lipgloss.NormalBorder())
|
|
viper.SetDefault("Theme.Header.Selector.Border.Sides",
|
|
[]bool{true, true, true, true},
|
|
)
|
|
viper.SetDefault("Theme.Header.Selector.Border.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#6ca1d0", Dark: "#6ca1d0"})
|
|
viper.SetDefault("Theme.Header.Selector.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#6ca1d0", Dark: "#6ca1d0"})
|
|
|
|
// Header Spinner
|
|
viper.SetDefault("Theme.Header.Spinner",
|
|
lipgloss.AdaptiveColor{Light: "#FF5FAF", Dark: "#FF5FAF"})
|
|
|
|
// --- DialogBox ---
|
|
// DialogBox Window:Focused
|
|
viper.SetDefault("Theme.DialogBox.Window.Focused.Margin",
|
|
[]int{0, 0, 0, 0})
|
|
viper.SetDefault("Theme.DialogBox.Window.Focused.Padding",
|
|
[]int{0, 0, 0, 0})
|
|
viper.SetDefault("Theme.DialogBox.Window.Focused.Border.Border",
|
|
lipgloss.ThickBorder())
|
|
viper.SetDefault("Theme.DialogBox.Window.Focused.Border.Sides",
|
|
[]bool{false, true, true, true},
|
|
)
|
|
viper.SetDefault("Theme.DialogBox.Window.Focused.Border.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#82e4dc", Dark: "#82e4dc"})
|
|
|
|
// DialogBox Window:Blurred
|
|
viper.SetDefault("Theme.DialogBox.Window.Blurred.Margin",
|
|
[]int{0, 0, 0, 0})
|
|
viper.SetDefault("Theme.DialogBox.Window.Blurred.Padding",
|
|
[]int{0, 0, 0, 0})
|
|
viper.SetDefault("Theme.DialogBox.Window.Blurred.Border.Border",
|
|
lipgloss.ThickBorder())
|
|
viper.SetDefault("Theme.DialogBox.Window.Blurred.Border.Sides",
|
|
[]bool{false, true, true, true},
|
|
)
|
|
viper.SetDefault("Theme.DialogBox.Window.Blurred.Border.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
|
|
|
|
// DialogBox Titlebar:Focused
|
|
viper.SetDefault("Theme.DialogBox.Titlebar.Focused.Margin",
|
|
[]int{0, 0, 1, 0})
|
|
viper.SetDefault("Theme.DialogBox.Titlebar.Focused.Padding",
|
|
[]int{0, 1, 0, 1})
|
|
viper.SetDefault("Theme.DialogBox.Titlebar.Focused.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#ffffff", Dark: "#000000"})
|
|
viper.SetDefault("Theme.DialogBox.Titlebar.Focused.Background",
|
|
lipgloss.AdaptiveColor{Light: "#82e4dc", Dark: "#82e4dc"})
|
|
|
|
// DialogBox Titlebar:Blurred
|
|
viper.SetDefault("Theme.DialogBox.Titlebar.Blurred.Margin",
|
|
[]int{0, 0, 1, 0})
|
|
viper.SetDefault("Theme.DialogBox.Titlebar.Blurred.Padding",
|
|
[]int{0, 1, 0, 1})
|
|
viper.SetDefault("Theme.DialogBox.Titlebar.Blurred.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#ffffff", Dark: "#000000"})
|
|
viper.SetDefault("Theme.DialogBox.Titlebar.Blurred.Background",
|
|
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
|
|
|
|
// DialogBox Bottombar
|
|
viper.SetDefault("Theme.DialogBox.Bottombar.Margin",
|
|
[]int{1, 0, 0, 0})
|
|
viper.SetDefault("Theme.DialogBox.Bottombar.Padding",
|
|
[]int{0, 1, 0, 1})
|
|
viper.SetDefault("Theme.DialogBox.Bottombar.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#aaaaaa", Dark: "#999999"})
|
|
|
|
// --- ErrorDialogBox ---
|
|
// ErrorDialogBox Window:Focused
|
|
viper.SetDefault("Theme.ErrorDialogBox.Window.Focused.Margin",
|
|
[]int{0, 0, 0, 0})
|
|
viper.SetDefault("Theme.ErrorDialogBox.Window.Focused.Padding",
|
|
[]int{0, 0, 0, 0})
|
|
viper.SetDefault("Theme.ErrorDialogBox.Window.Focused.Border.Border",
|
|
lipgloss.ThickBorder())
|
|
viper.SetDefault("Theme.ErrorDialogBox.Window.Focused.Border.Sides",
|
|
[]bool{false, true, true, true},
|
|
)
|
|
viper.SetDefault("Theme.ErrorDialogBox.Window.Focused.Border.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#dc143c", Dark: "#dc143c"})
|
|
|
|
// ErrorDialogBox Window:Blurred
|
|
viper.SetDefault("Theme.ErrorDialogBox.Window.Blurred.Margin",
|
|
[]int{0, 0, 0, 0})
|
|
viper.SetDefault("Theme.ErrorDialogBox.Window.Blurred.Padding",
|
|
[]int{0, 0, 0, 0})
|
|
viper.SetDefault("Theme.ErrorDialogBox.Window.Blurred.Border.Border",
|
|
lipgloss.ThickBorder())
|
|
viper.SetDefault("Theme.ErrorDialogBox.Window.Blurred.Border.Sides",
|
|
[]bool{false, true, true, true},
|
|
)
|
|
viper.SetDefault("Theme.ErrorDialogBox.Window.Blurred.Border.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
|
|
|
|
// ErrorDialogBox Titlebar:Focused
|
|
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Focused.Margin",
|
|
[]int{0, 0, 1, 0})
|
|
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Focused.Padding",
|
|
[]int{0, 1, 0, 1})
|
|
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Focused.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#ffffff", Dark: "#000000"})
|
|
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Focused.Background",
|
|
lipgloss.AdaptiveColor{Light: "#dc143c", Dark: "#dc143c"})
|
|
|
|
// ErrorDialogBox Titlebar:Blurred
|
|
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Blurred.Margin",
|
|
[]int{0, 0, 1, 0})
|
|
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Blurred.Padding",
|
|
[]int{0, 1, 0, 1})
|
|
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Blurred.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#ffffff", Dark: "#000000"})
|
|
viper.SetDefault("Theme.ErrorDialogBox.Titlebar.Blurred.Background",
|
|
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
|
|
|
|
// ErrorDialogBox Bottombar
|
|
viper.SetDefault("Theme.ErrorDialogBox.Bottombar.Margin",
|
|
[]int{1, 0, 0, 0})
|
|
viper.SetDefault("Theme.ErrorDialogBox.Bottombar.Padding",
|
|
[]int{0, 1, 0, 1})
|
|
viper.SetDefault("Theme.ErrorDialogBox.Bottombar.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#aaaaaa", Dark: "#999999"})
|
|
|
|
// --- PostsList ---
|
|
// PostsList List:Focused
|
|
viper.SetDefault("Theme.PostsList.List.Focused.Margin",
|
|
[]int{0, 0, 0, 0})
|
|
viper.SetDefault("Theme.PostsList.List.Focused.Padding",
|
|
[]int{1, 1, 1, 1})
|
|
viper.SetDefault("Theme.PostsList.List.Focused.Border.Border",
|
|
lipgloss.DoubleBorder())
|
|
viper.SetDefault("Theme.PostsList.List.Focused.Border.Sides",
|
|
[]bool{true, true, true, true},
|
|
)
|
|
viper.SetDefault("Theme.PostsList.List.Focused.Border.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#82e4dc", Dark: "#82e4dc"})
|
|
|
|
// PostsList List:Blurred
|
|
viper.SetDefault("Theme.PostsList.List.Blurred.Margin",
|
|
[]int{0, 0, 0, 0})
|
|
viper.SetDefault("Theme.PostsList.List.Blurred.Padding",
|
|
[]int{1, 1, 1, 1})
|
|
viper.SetDefault("Theme.PostsList.List.Blurred.Border.Border",
|
|
lipgloss.DoubleBorder())
|
|
viper.SetDefault("Theme.PostsList.List.Blurred.Border.Sides",
|
|
[]bool{true, true, true, true},
|
|
)
|
|
viper.SetDefault("Theme.PostsList.List.Blurred.Border.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
|
|
|
|
// PostsList Item:Focused
|
|
viper.SetDefault("Theme.PostsList.Item.Focused.Padding",
|
|
[]int{0, 0, 0, 2})
|
|
viper.SetDefault("Theme.PostsList.Item.Focused.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#333333", Dark: "#cccccc"})
|
|
|
|
// PostsList Item:Blurred
|
|
viper.SetDefault("Theme.PostsList.Item.Blurred.Padding",
|
|
[]int{0, 0, 0, 2})
|
|
viper.SetDefault("Theme.PostsList.Item.Blurred.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
|
|
|
|
// PostsList Item:Selected
|
|
viper.SetDefault("Theme.PostsList.Item.Selected.Padding",
|
|
[]int{0, 0, 0, 1})
|
|
viper.SetDefault("Theme.PostsList.Item.Selected.Border.Border",
|
|
lipgloss.NormalBorder())
|
|
viper.SetDefault("Theme.PostsList.Item.Selected.Border.Sides",
|
|
[]bool{false, false, false, true},
|
|
)
|
|
viper.SetDefault("Theme.PostsList.Item.Selected.Border.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#ffd500", Dark: "#ffd500"})
|
|
viper.SetDefault("Theme.PostsList.Item.Selected.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#f119a0", Dark: "#f119a0"})
|
|
|
|
// PostsList ItemDetail:Focused
|
|
viper.SetDefault("Theme.PostsList.ItemDetail.Focused.Padding",
|
|
[]int{0, 0, 0, 2})
|
|
viper.SetDefault("Theme.PostsList.ItemDetail.Focused.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#666666", Dark: "#4d4d4d"})
|
|
|
|
// PostsList ItemDetail:Blurred
|
|
viper.SetDefault("Theme.PostsList.ItemDetail.Blurred.Padding",
|
|
[]int{0, 0, 0, 2})
|
|
viper.SetDefault("Theme.PostsList.ItemDetail.Blurred.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#666666", Dark: "#4d4d4d"})
|
|
|
|
// PostsList ItemDetail:Selected
|
|
viper.SetDefault("Theme.PostsList.ItemDetail.Selected.Padding",
|
|
[]int{0, 0, 0, 1})
|
|
viper.SetDefault("Theme.PostsList.ItemDetail.Selected.Border.Border",
|
|
lipgloss.NormalBorder())
|
|
viper.SetDefault("Theme.PostsList.ItemDetail.Selected.Border.Sides",
|
|
[]bool{false, false, false, true},
|
|
)
|
|
viper.SetDefault("Theme.PostsList.ItemDetail.Selected.Border.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#ffd500", Dark: "#ffd500"})
|
|
viper.SetDefault("Theme.PostsList.ItemDetail.Selected.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#000000", Dark: "#FFFFFF"})
|
|
|
|
// --- PopupList ---
|
|
// PopupList List:Focused
|
|
viper.SetDefault("Theme.PopupList.List.Focused.Margin",
|
|
[]int{0, 0, 0, 0})
|
|
viper.SetDefault("Theme.PopupList.List.Focused.Padding",
|
|
[]int{1, 1, 1, 1})
|
|
viper.SetDefault("Theme.PopupList.List.Focused.Border.Border",
|
|
lipgloss.HiddenBorder())
|
|
viper.SetDefault("Theme.PopupList.List.Focused.Border.Sides",
|
|
[]bool{true, true, true, true},
|
|
)
|
|
viper.SetDefault("Theme.PopupList.List.Focused.Border.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#82e4dc", Dark: "#82e4dc"})
|
|
|
|
// PopupList List:Blurred
|
|
viper.SetDefault("Theme.PopupList.List.Blurred.Margin",
|
|
[]int{0, 0, 0, 0})
|
|
viper.SetDefault("Theme.PopupList.List.Blurred.Padding",
|
|
[]int{1, 1, 1, 1})
|
|
viper.SetDefault("Theme.PopupList.List.Blurred.Border.Border",
|
|
lipgloss.HiddenBorder())
|
|
viper.SetDefault("Theme.PopupList.List.Blurred.Border.Sides",
|
|
[]bool{true, true, true, true},
|
|
)
|
|
viper.SetDefault("Theme.PopupList.List.Blurred.Border.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
|
|
|
|
// PopupList Item:Focused
|
|
viper.SetDefault("Theme.PopupList.Item.Focused.Padding",
|
|
[]int{0, 0, 0, 2})
|
|
viper.SetDefault("Theme.PopupList.Item.Focused.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#333333", Dark: "#cccccc"})
|
|
|
|
// PopupList Item:Blurred
|
|
viper.SetDefault("Theme.PopupList.Item.Blurred.Padding",
|
|
[]int{0, 0, 0, 2})
|
|
viper.SetDefault("Theme.PopupList.Item.Blurred.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#cccccc", Dark: "#333333"})
|
|
|
|
// PopupList Item:Selected
|
|
viper.SetDefault("Theme.PopupList.Item.Selected.Padding",
|
|
[]int{0, 0, 0, 1})
|
|
viper.SetDefault("Theme.PopupList.Item.Selected.Border.Border",
|
|
lipgloss.NormalBorder())
|
|
viper.SetDefault("Theme.PopupList.Item.Selected.Border.Sides",
|
|
[]bool{false, false, false, true},
|
|
)
|
|
viper.SetDefault("Theme.PopupList.Item.Selected.Border.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#ffd500", Dark: "#ffd500"})
|
|
viper.SetDefault("Theme.PopupList.Item.Selected.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#f119a0", Dark: "#f119a0"})
|
|
|
|
// PopupList ItemDetail:Focused
|
|
viper.SetDefault("Theme.PopupList.ItemDetail.Focused.Padding",
|
|
[]int{0, 0, 0, 2})
|
|
viper.SetDefault("Theme.PopupList.ItemDetail.Focused.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#666666", Dark: "#4d4d4d"})
|
|
|
|
// PopupList ItemDetail:Blurred
|
|
viper.SetDefault("Theme.PopupList.ItemDetail.Blurred.Padding",
|
|
[]int{0, 0, 0, 2})
|
|
viper.SetDefault("Theme.PopupList.ItemDetail.Blurred.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#666666", Dark: "#4d4d4d"})
|
|
|
|
// PopupList ItemDetail:Selected
|
|
viper.SetDefault("Theme.PopupList.ItemDetail.Selected.Padding",
|
|
[]int{0, 0, 0, 1})
|
|
viper.SetDefault("Theme.PopupList.ItemDetail.Selected.Border.Border",
|
|
lipgloss.NormalBorder())
|
|
viper.SetDefault("Theme.PopupList.ItemDetail.Selected.Border.Sides",
|
|
[]bool{false, false, false, true},
|
|
)
|
|
viper.SetDefault("Theme.PopupList.ItemDetail.Selected.Border.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#ffd500", Dark: "#ffd500"})
|
|
viper.SetDefault("Theme.PopupList.ItemDetail.Selected.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#000000", Dark: "#FFFFFF"})
|
|
|
|
// --- Post ---
|
|
// Post Author
|
|
viper.SetDefault("Theme.Post.Author.Padding",
|
|
[]int{0, 1, 0, 1})
|
|
viper.SetDefault("Theme.Post.Author.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#f119a0", Dark: "#f119a0"})
|
|
|
|
// Post Subject
|
|
viper.SetDefault("Theme.Post.Subject.Padding",
|
|
[]int{0, 1, 0, 1})
|
|
viper.SetDefault("Theme.Post.Subject.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#FFFFFF", Dark: "#FFFFFF"})
|
|
viper.SetDefault("Theme.Post.Subject.Background",
|
|
lipgloss.AdaptiveColor{Light: "#f119a0", Dark: "#f119a0"})
|
|
|
|
// Reply Author
|
|
viper.SetDefault("Theme.Reply.Author.Padding",
|
|
[]int{0, 1, 0, 1})
|
|
viper.SetDefault("Theme.Reply.Author.Foreground",
|
|
lipgloss.AdaptiveColor{Light: "#000000", Dark: "#00000"})
|
|
viper.SetDefault("Theme.Reply.Author.Background",
|
|
lipgloss.AdaptiveColor{Light: "#ffd500", Dark: "#ffd500"})
|
|
}
|