mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-01 22:10:23 +00:00
13 lines
169 B
Go
13 lines
169 B
Go
package styles
|
|
|
|
type TerminalInfo struct {
|
|
BackgroundIsDark bool
|
|
}
|
|
|
|
var Terminal *TerminalInfo
|
|
|
|
func init() {
|
|
Terminal = &TerminalInfo{
|
|
BackgroundIsDark: true,
|
|
}
|
|
}
|