Fix colors.
This commit is contained in:
parent
bdf942371c
commit
b426b88b79
@ -63,7 +63,7 @@ SplitView {
|
|||||||
Label {
|
Label {
|
||||||
id: numbers
|
id: numbers
|
||||||
|
|
||||||
color: "white"
|
color: RustColors.linenumber
|
||||||
font: textArea.font
|
font: textArea.font
|
||||||
height: parent.height
|
height: parent.height
|
||||||
horizontalAlignment: Text.AlignLeft
|
horizontalAlignment: Text.AlignLeft
|
||||||
|
|||||||
@ -6,13 +6,13 @@ import clide.module 1.0
|
|||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: root
|
id: root
|
||||||
|
color: RustColors.explorer_background
|
||||||
|
|
||||||
signal fileClicked(string filePath)
|
signal fileClicked(string filePath)
|
||||||
|
|
||||||
color: RustColors.explorer_background
|
|
||||||
|
|
||||||
TreeView {
|
TreeView {
|
||||||
id: fileSystemTreeView
|
id: fileSystemTreeView
|
||||||
|
anchors.margins: 15
|
||||||
|
|
||||||
// rootIndex: FileSystem.rootIndex
|
// rootIndex: FileSystem.rootIndex
|
||||||
property int lastIndex: -1
|
property int lastIndex: -1
|
||||||
|
|||||||
@ -73,7 +73,7 @@ impl Default for RustColorsImpl {
|
|||||||
scrollbar: QColor::try_from("#4b4f51").unwrap(),
|
scrollbar: QColor::try_from("#4b4f51").unwrap(),
|
||||||
scrollbar_active: QColor::try_from("#4b4f51").unwrap(),
|
scrollbar_active: QColor::try_from("#4b4f51").unwrap(),
|
||||||
scrollbar_gutter: QColor::try_from("#3b3b3b").unwrap(),
|
scrollbar_gutter: QColor::try_from("#3b3b3b").unwrap(),
|
||||||
linenumber: QColor::try_from("#FFF").unwrap(),
|
linenumber: QColor::try_from("#94989b").unwrap(),
|
||||||
active: QColor::try_from("#a9acb0").unwrap(),
|
active: QColor::try_from("#a9acb0").unwrap(),
|
||||||
inactive: QColor::try_from("#FFF").unwrap(),
|
inactive: QColor::try_from("#FFF").unwrap(),
|
||||||
editor_background: QColor::try_from("#2b2b2b").unwrap(),
|
editor_background: QColor::try_from("#2b2b2b").unwrap(),
|
||||||
@ -85,7 +85,7 @@ impl Default for RustColorsImpl {
|
|||||||
explorer_text: QColor::try_from("#3b3b3b").unwrap(),
|
explorer_text: QColor::try_from("#3b3b3b").unwrap(),
|
||||||
explorer_text_selected: QColor::try_from("#8b8b8b").unwrap(),
|
explorer_text_selected: QColor::try_from("#8b8b8b").unwrap(),
|
||||||
explorer_background: QColor::try_from("#676c70").unwrap(),
|
explorer_background: QColor::try_from("#676c70").unwrap(),
|
||||||
explorer_folder: QColor::try_from("#FFF").unwrap(),
|
explorer_folder: QColor::try_from("#54585b").unwrap(),
|
||||||
explorer_folder_open: QColor::try_from("#FFF").unwrap(),
|
explorer_folder_open: QColor::try_from("#FFF").unwrap(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user