mirror of
https://github.com/sst/opencode.git
synced 2025-08-25 07:24:05 +00:00
17 lines
254 B
Go
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,
|
|
}
|
|
}
|