mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-17 12:56:41 +02:00
7d13baadc8
Co-authored-by: adamdottv <2363879+adamdottv@users.noreply.github.com>
18 lines
254 B
Go
18 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,
|
|
}
|
|
}
|