23 lines
576 B
Go
23 lines
576 B
Go
package ui
|
|
|
|
// WindowSpec locks the visual baseline tested by the Windows UI Spike. The
|
|
// production V2 app will consume the same semantic colours and medium desktop
|
|
// layout after the decoding/inference pipeline is complete.
|
|
type WindowSpec struct {
|
|
Title string
|
|
Width int
|
|
Height int
|
|
BackgroundHex string
|
|
AlertHex string
|
|
}
|
|
|
|
func MonitorWindowSpec() WindowSpec {
|
|
return WindowSpec{
|
|
Title: "Silver Pose V2 · 技术 Spike",
|
|
Width: 1120,
|
|
Height: 720,
|
|
BackgroundHex: "#F3F6FA",
|
|
AlertHex: "#C62828",
|
|
}
|
|
}
|