opencode/packages/tui/internal/styles/background.go
Adam 7d13baadc8
feat: default system theme (#419)
Co-authored-by: adamdottv <2363879+adamdottv@users.noreply.github.com>
2025-06-26 10:16:07 -05:00

17 lines
254 B
Go

package styles
import "image/color"
type TerminalInfo struct {
Background color.Color
BackgroundIsDark bool
}
var Terminal *TerminalInfo
func init() {
Terminal = &TerminalInfo{
Background: color.Black,
BackgroundIsDark: true,
}
}