From a6d2fb9e31b23c6ce6c9324d593aa6fd5aeefbe6 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sat, 29 Mar 2025 10:26:39 -0400 Subject: [PATCH] Change colors. --- qml/Menu/ClideMenuBar.qml | 1 + qml/main.qml | 21 +++++++-------------- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/qml/Menu/ClideMenuBar.qml b/qml/Menu/ClideMenuBar.qml index 9a7a58c..f252803 100644 --- a/qml/Menu/ClideMenuBar.qml +++ b/qml/Menu/ClideMenuBar.qml @@ -4,6 +4,7 @@ import QtQuick.Controls MenuBar { background: Rectangle { color: "#3c3f41" + border.color: "#575757" } Action { diff --git a/qml/main.qml b/qml/main.qml index efa1836..041794a 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -58,9 +58,10 @@ ApplicationWindow { anchors.fill: parent // Shows the help text. - Text { - color: "white" - text: qsTr("File system view placeholder") + TextArea { + readOnly: true + placeholderText: qsTr("File system view placeholder") + placeholderTextColor: "white" wrapMode: TextArea.Wrap } @@ -137,23 +138,15 @@ ApplicationWindow { TextArea { id: areaConsole - bottomPadding: 0 - leftPadding: 6 - persistentSelection: true placeholderText: qsTr("Placeholder for bash terminal.") - placeholderTextColor: "gray" + placeholderTextColor: "white" + height: 100 readOnly: true - rightPadding: 6 - selectByMouse: true - // selectedTextColor: control.palette.highlightedText - // selectionColor: control.palette.highlight - textFormat: Qt.AutoText - topPadding: 6 wrapMode: TextArea.Wrap background: Rectangle { color: "#2b2b2b" - implicitHeight: 20 + implicitHeight: 100 // border.color: control.enabled ? "#21be2b" : "transparent" } }