First session of vibe coding the UI

This commit is contained in:
2026-02-20 00:43:39 -05:00
parent 212581ac77
commit 06b97ad2f4
10 changed files with 437 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
/* Backgrounds */
.root, #chatContainer, #conversationListContainer, #bottomControls {
-fx-background-color: #f5f5f5;
}
.text-area, #chatListView, #conversationList {
-fx-background-color: #ffffff;
-fx-text-fill: black;
}
/* Title color */
.app-title {
-fx-text-fill: black;
}
/* Send button - green */
.send-button {
-fx-background-color: #10b981; /* nice green */
-fx-text-fill: white;
}