15 lines
339 B
QML
15 lines
339 B
QML
// Copyright 2019 miruka
|
|
// This file is part of harmonyqml, licensed under LGPLv3.
|
|
|
|
import QtQuick.Controls 2.12
|
|
|
|
Label {
|
|
font.family: theme.fontFamily.sans
|
|
font.pixelSize: theme.fontSize.normal
|
|
textFormat: Label.PlainText
|
|
|
|
color: theme.colors.foreground
|
|
style: Label.Outline
|
|
styleColor: theme.colors.textBorder
|
|
}
|