Warning, /graphics/krita/libs/libqml/qmlthemes/default/theme.qml is written in an unsupported language. File is not indexed.
0001 /* This file is part of the KDE project 0002 * SPDX-FileCopyrightText: 2014 Arjen Hiemstra <ahiemstra@heimr.nl> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 import QtQuick 2.3 0008 import org.krita.sketch 1.0 0009 import "colors.js" as Colors 0010 import "sizes.js" as Sizes 0011 import "fonts.js" as Fonts 0012 0013 Theme { 0014 id: "default" 0015 name: "Default" 0016 0017 colors: Colors.values; 0018 sizes: Sizes.values; 0019 fonts: Fonts.values; 0020 0021 iconPath: "icons/" 0022 imagePath: "images/" 0023 fontPath: "fonts/" 0024 }