1
0
mirror of https://github.com/Swordfish90/cool-retro-term.git synced 2025-01-18 12:15:27 +00:00

colors removed from real terminal. It new passes black and white.

This commit is contained in:
Filippo Scognamiglio 2013-12-25 02:29:16 +01:00
parent ee580b33f9
commit cece882ca1
2 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ TerminalScreen {
Rectangle {
id: background
anchors.fill: parent
color: shadersettings.background_color
color: "black"
}
Connections {
@ -116,7 +116,7 @@ TerminalScreen {
height: fontHeight
x: 0
y: 0
color: shadersettings.font_color
color: "white"
// SequentialAnimation on opacity{
// NumberAnimation{from: 0; to: 1; duration: 500}
// NumberAnimation{from: 1; to: 0; duration: 500}
@ -127,7 +127,7 @@ TerminalScreen {
Rectangle {
id: flash
anchors.fill: parent
color: shadersettings.font_color
color: "white"
opacity: 0
SequentialAnimation {
id: flashAnimation

View File

@ -48,7 +48,7 @@ ObjectDestructItem {
id: textElement
anchors.fill: parent
text: objectHandle.text
color: shadersettings.font_color
color: "white"
font: textItem.font
textFormat: Text.PlainText
}