mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-03 23:53:46 +00:00
14 lines
170 B
Go
14 lines
170 B
Go
package styles
|
|
|
|
type TerminalInfo struct {
|
|
BackgroundIsDark bool
|
|
}
|
|
|
|
var Terminal *TerminalInfo
|
|
|
|
func init() {
|
|
Terminal = &TerminalInfo{
|
|
BackgroundIsDark: false,
|
|
}
|
|
}
|