mirror of
https://github.com/L4ki/Jolly-Plasma-Themes.git
synced 2026-02-01 13:17:38 +01:00
17 lines
376 B
QML
17 lines
376 B
QML
import QtQuick 2.2
|
|
import QtQuick.Layouts 1.2
|
|
import QtQuick.Controls 2.4
|
|
|
|
TextField {
|
|
placeholderTextColor: config.color
|
|
palette.text: config.color
|
|
font.pointSize: config.fontSize
|
|
font.family: config.font
|
|
width: parent.width
|
|
background: Rectangle {
|
|
color: parent.focus ? "#5c5c88" : "#8282c1"
|
|
radius: 100
|
|
opacity: 0.65
|
|
}
|
|
}
|