Merge pull request #513 from ad1217/theme-fix

Fix unset text colors on bright backgrounds
This commit is contained in:
awhiemstra 2015-10-28 15:51:43 +01:00
commit 70c46f8a4f
5 changed files with 6 additions and 0 deletions

View File

@ -81,6 +81,7 @@ Item{
text: catalog.i18nc("@label","Global Profile:");
width: parent.width/100*45
font: UM.Theme.fonts.default;
color: UM.Theme.colors.text_default;
}

View File

@ -100,6 +100,7 @@ Item
anchors.leftMargin: UM.Theme.sizes.default_margin.width
anchors.verticalCenter: parent.verticalCenter
font: UM.Theme.fonts.default;
color: UM.Theme.colors.text_default;
}
ToolButton {

View File

@ -33,6 +33,7 @@ Item
//: Infill selection label
text: catalog.i18nc("@label","Infill:");
font: UM.Theme.fonts.default;
color: UM.Theme.colors.text_default;
anchors.top: parent.top
anchors.topMargin: UM.Theme.sizes.default_margin.height
anchors.left: parent.left
@ -166,6 +167,7 @@ Item
//: Helpers selection label
text: catalog.i18nc("@label:listbox","Helpers:");
font: UM.Theme.fonts.default;
color: UM.Theme.colors.text_default;
}
}
Rectangle {

View File

@ -47,5 +47,6 @@ Rectangle {
}
wrapMode: Text.Wrap;
font: UM.Theme.fonts.default;
color: UM.Theme.colors.text_default;
}
}

View File

@ -50,6 +50,7 @@
},
"colors": {
"text_default": [0, 0, 0, 255],
"sidebar": [255, 255, 255, 255],
"lining": [208, 210, 211, 255],