mirror of
https://github.com/luneko/SweetTokyoNight.git
synced 2025-12-16 16:39:52 +01:00
21 lines
498 B
QML
21 lines
498 B
QML
import QtQuick 2.2
|
|
import QtQuick.Layouts 1.2
|
|
import QtQuick.Controls 2.4
|
|
import QtQuick.Controls.Styles 1.4
|
|
|
|
TextField {
|
|
placeholderTextColor: config.color
|
|
palette.text: config.color
|
|
font.pointSize: config.fontSize
|
|
font.family: config.font
|
|
background: Rectangle {
|
|
color: "#1c2124"
|
|
opacity: 0.7
|
|
radius: parent.width / 2
|
|
border.width: 1
|
|
border.color: "#0C0E15"
|
|
height: 30
|
|
width: 270
|
|
anchors.centerIn: parent
|
|
}
|
|
} |