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