mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-30 13:39:52 +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,
|
|
}
|
|
}
|