From 8c3f10f97d58e596a2ecd1c5c2280d2b6b7f5e11 Mon Sep 17 00:00:00 2001 From: Robert Jonsson Date: Sat, 2 Mar 2013 23:48:54 +0000 Subject: added ardour theme --- muse2/share/themes/Ardour.cfg | 62 ++++++++++++++++++++++++++++++++++++ muse2/share/themes/Ardour.qss | 53 +++++++++++++++++++++++++++++++ muse2/share/themes/CMakeLists.txt | 30 ++++++++++++++++++ muse2/share/themes/Dark Theme.cfg | 62 ++++++++++++++++++++++++++++++++++++ muse2/share/themes/Dark Theme.qss | 53 +++++++++++++++++++++++++++++++ muse2/share/themes/Light Theme.cfg | 64 ++++++++++++++++++++++++++++++++++++++ 6 files changed, 324 insertions(+) create mode 100644 muse2/share/themes/Ardour.cfg create mode 100644 muse2/share/themes/Ardour.qss create mode 100644 muse2/share/themes/CMakeLists.txt create mode 100644 muse2/share/themes/Dark Theme.cfg create mode 100644 muse2/share/themes/Dark Theme.qss create mode 100644 muse2/share/themes/Light Theme.cfg (limited to 'muse2/share/themes') diff --git a/muse2/share/themes/Ardour.cfg b/muse2/share/themes/Ardour.cfg new file mode 100644 index 00000000..a41bbb65 --- /dev/null +++ b/muse2/share/themes/Ardour.cfg @@ -0,0 +1,62 @@ + + + + Oxygen + 170 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/muse2/share/themes/Ardour.qss b/muse2/share/themes/Ardour.qss new file mode 100644 index 00000000..fa563e87 --- /dev/null +++ b/muse2/share/themes/Ardour.qss @@ -0,0 +1,53 @@ +QWidget { + background-color: rgb(108,109,121); + color: rgb(193,193,197); +} + +QToolBar QToolButton { + background-color: rgb(93,94,106); + border-color: rgb(70,70,70); + border-style: outset; + border-width: 1px; + border-radius: 5px; + padding: 1px; + +} + +QAction { + background-color: rgb(150,150,150); + spacing: 3px; + padding: 1px 4px; + background: transparent; + border-radius: 4px; + } + +QMenu::item:selected { + background-color: rgb(40,90,40); +} + +QToolBar QToolButton:hover { + background-color: rgb(50,50,50); + border-color: rgb(58,167,221); + border-style: outset; + border-width: 1px; + border-radius: 3px; + padding: 2px; + +} + +QToolBar QToolButton:pressed { + background-color: rgb(125,247,131); + border-style: inset; + border-width: 1px; + border-radius: 2px; + padding: 2px; + +} +QToolBar QToolButton:checked { + background-color: rgb(125,247,131); + border-style: inset; + border-width: 1px; + border-radius: 2px; + padding: 2px; + +} diff --git a/muse2/share/themes/CMakeLists.txt b/muse2/share/themes/CMakeLists.txt new file mode 100644 index 00000000..b31ddaec --- /dev/null +++ b/muse2/share/themes/CMakeLists.txt @@ -0,0 +1,30 @@ +#============================================================================= +# MusE +# Linux Music Editor +# $Id:$ +# +# Copyright (C) 1999-2013 by Werner Schweer and others +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the +# Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +#============================================================================= + +file (GLOB theme_files *.cfg *.qss + ) + +install( FILES ${theme_files} + DESTINATION ${MusE_SHARE_DIR}/themes + ) + diff --git a/muse2/share/themes/Dark Theme.cfg b/muse2/share/themes/Dark Theme.cfg new file mode 100644 index 00000000..6ec8bcb5 --- /dev/null +++ b/muse2/share/themes/Dark Theme.cfg @@ -0,0 +1,62 @@ + + + + Oxygen + 170 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/muse2/share/themes/Dark Theme.qss b/muse2/share/themes/Dark Theme.qss new file mode 100644 index 00000000..8c40a4ba --- /dev/null +++ b/muse2/share/themes/Dark Theme.qss @@ -0,0 +1,53 @@ +QWidget { + background-color: rgb(30,30,30); + color: rgb(120,120,120); +} + +QToolBar QToolButton { + background-color: rgb(50,50,50); + border-color: rgb(70,70,70); + border-style: outset; + border-width: 1px; + border-radius: 3px; + padding: 1px; + +} + +QAction { + background-color: rgb(150,150,150); + spacing: 3px; + padding: 1px 4px; + background: transparent; + border-radius: 4px; + } + +QMenu::item:selected { + background-color: rgb(40,90,40); +} + +QToolBar QToolButton:hover { + background-color: rgb(50,50,50); + border-color: rgb(58,167,221); + border-style: outset; + border-width: 1px; + border-radius: 3px; + padding: 2px; + +} + +QToolBar QToolButton:pressed { + background-color: rgb(30,30,30); + border-style: inset; + border-width: 1px; + border-radius: 2px; + padding: 2px; + +} +QToolBar QToolButton:checked { + background-color: rgb(30,30,30); + border-style: inset; + border-width: 1px; + border-radius: 2px; + padding: 2px; + +} diff --git a/muse2/share/themes/Light Theme.cfg b/muse2/share/themes/Light Theme.cfg new file mode 100644 index 00000000..9cced291 --- /dev/null +++ b/muse2/share/themes/Light Theme.cfg @@ -0,0 +1,64 @@ + + + + + 170 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3