Move files around, add UI

This commit is contained in:
Michael Mikovsky
2025-06-05 16:02:28 -06:00
parent 8adfc68854
commit 92c9f08a5c
35 changed files with 541 additions and 132 deletions
+27
View File
@@ -0,0 +1,27 @@
export component BorderedRectangle inherits Rectangle {
background: #2a232a;
border-width: 1px;
border-color: darkslateblue;
}
export component BoolText inherits Text {
in property <bool> state;
text: state ? "TRUE" : "FALSE";
color: state ? #00ff00 : #ff0000;
}
export component TitleText inherits HorizontalLayout {
in property <string> text;
alignment: start;
Text {
text: text;
font-weight: 700;
font-size: 15px;
}
@children
}