View Single Post
Posts: 69 | Thanked: 85 times | Joined on Mar 2013
#151
In the file okboard.qml in plugin directory we can adjust the gradient values for the background:

Code:
 Rectangle {
                    anchors.fill: parent
                    gradient: Gradient {
                        GradientStop { position: 0; color: Theme.rgba(Theme.highlightBackgroundColor, .15) }
                        GradientStop { position: 1; color: Theme.rgba(Theme.highlightBackgroundColor, .3) }
                    }
                }
I've modified both values to 0.7 and the transparency is less, but we have more ambience color now
 

The Following 7 Users Say Thank You to frullewulle For This Useful Post: