9 lines
179 B
QML
9 lines
179 B
QML
|
|
import QtQuick
|
|||
|
|
import QtQuick.Controls.Styles
|
|||
|
|
TextAreaStyle {
|
|||
|
|
textColor: "#333"
|
|||
|
|
selectionColor: "steelblue"
|
|||
|
|
selectedTextColor: "#eee"
|
|||
|
|
backgroundColor: "#eee"
|
|||
|
|
}
|