import QtQuick 2.14
import QtQuick.Controls 2.14
import QtQuick.Controls.impl 2.14


TextField {
    id: control

    

    color: activePalette.text
    selectionColor: activePalette.highlight
    selectedTextColor: activePalette.highlightedText
    placeholderTextColor: Color.transparent(control.color, 0.5)
    verticalAlignment: TextInput.AlignVCenter

    background: Rectangle {
        implicitWidth: 200
        implicitHeight: 40
        border.width: control.activeFocus ? 2 : 1
        color: activePalette.button
        border.color: control.activeFocus ? activePalette.highlight : activePalette.mid
    }
}