From d65495e20e9f21f9a1cbe5f1fc9f22b9e5c014bb Mon Sep 17 00:00:00 2001 From: Paddle Date: Tue, 15 Aug 2023 09:57:48 +0200 Subject: [PATCH] Create themes for Behave-Dark, ProDark, Dark-Contrast. Rename other themes to remove 'theme' from name. --- src/Gui/PreferencePacks/CMakeLists.txt | 12 +- .../Classic theme.cfg => Classic/Classic.cfg} | 0 .../Dark behave/Dark behave.cfg | 105 ++++++++++++++++++ .../Dark contrast/Dark contrast.cfg | 105 ++++++++++++++++++ .../Dark modern.cfg} | 0 .../Dark theme.cfg => Dark/Dark.cfg} | 0 .../Darker theme.cfg => Darker/Darker.cfg} | 0 .../Light modern.cfg} | 0 .../Light theme.cfg => Light/Light.cfg} | 0 src/Gui/PreferencePacks/ProDark/ProDark.cfg | 105 ++++++++++++++++++ src/Gui/PreferencePacks/package.xml | 76 ++++++++++++- 11 files changed, 395 insertions(+), 8 deletions(-) rename src/Gui/PreferencePacks/{Classic theme/Classic theme.cfg => Classic/Classic.cfg} (100%) create mode 100644 src/Gui/PreferencePacks/Dark behave/Dark behave.cfg create mode 100644 src/Gui/PreferencePacks/Dark contrast/Dark contrast.cfg rename src/Gui/PreferencePacks/{Dark modern theme/Dark modern theme.cfg => Dark modern/Dark modern.cfg} (100%) rename src/Gui/PreferencePacks/{Dark theme/Dark theme.cfg => Dark/Dark.cfg} (100%) rename src/Gui/PreferencePacks/{Darker theme/Darker theme.cfg => Darker/Darker.cfg} (100%) rename src/Gui/PreferencePacks/{Light modern theme/Light modern theme.cfg => Light modern/Light modern.cfg} (100%) rename src/Gui/PreferencePacks/{Light theme/Light theme.cfg => Light/Light.cfg} (100%) create mode 100644 src/Gui/PreferencePacks/ProDark/ProDark.cfg diff --git a/src/Gui/PreferencePacks/CMakeLists.txt b/src/Gui/PreferencePacks/CMakeLists.txt index 7b9a17260d..eaceafddc2 100644 --- a/src/Gui/PreferencePacks/CMakeLists.txt +++ b/src/Gui/PreferencePacks/CMakeLists.txt @@ -4,9 +4,15 @@ SET(PreferencePacks_Files ) SET(PreferencePacks_Directories -"Classic theme" -"Dark theme" -"Light theme" +"Classic" +"Dark" +"Darker" +"Dark modern" +"Dark behave" +"Dark contrast" +"ProDark" +"Light" +"Light modern" ) ADD_CUSTOM_TARGET(PreferencePacks_data ALL diff --git a/src/Gui/PreferencePacks/Classic theme/Classic theme.cfg b/src/Gui/PreferencePacks/Classic/Classic.cfg similarity index 100% rename from src/Gui/PreferencePacks/Classic theme/Classic theme.cfg rename to src/Gui/PreferencePacks/Classic/Classic.cfg diff --git a/src/Gui/PreferencePacks/Dark behave/Dark behave.cfg b/src/Gui/PreferencePacks/Dark behave/Dark behave.cfg new file mode 100644 index 0000000000..ce2e0e057e --- /dev/null +++ b/src/Gui/PreferencePacks/Dark behave/Dark behave.cfg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + #9b4de6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Behave-dark.qss + + + + + diff --git a/src/Gui/PreferencePacks/Dark contrast/Dark contrast.cfg b/src/Gui/PreferencePacks/Dark contrast/Dark contrast.cfg new file mode 100644 index 0000000000..0709adf25f --- /dev/null +++ b/src/Gui/PreferencePacks/Dark contrast/Dark contrast.cfg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + #9b4de6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Dark-contrast.qss + + + + + diff --git a/src/Gui/PreferencePacks/Dark modern theme/Dark modern theme.cfg b/src/Gui/PreferencePacks/Dark modern/Dark modern.cfg similarity index 100% rename from src/Gui/PreferencePacks/Dark modern theme/Dark modern theme.cfg rename to src/Gui/PreferencePacks/Dark modern/Dark modern.cfg diff --git a/src/Gui/PreferencePacks/Dark theme/Dark theme.cfg b/src/Gui/PreferencePacks/Dark/Dark.cfg similarity index 100% rename from src/Gui/PreferencePacks/Dark theme/Dark theme.cfg rename to src/Gui/PreferencePacks/Dark/Dark.cfg diff --git a/src/Gui/PreferencePacks/Darker theme/Darker theme.cfg b/src/Gui/PreferencePacks/Darker/Darker.cfg similarity index 100% rename from src/Gui/PreferencePacks/Darker theme/Darker theme.cfg rename to src/Gui/PreferencePacks/Darker/Darker.cfg diff --git a/src/Gui/PreferencePacks/Light modern theme/Light modern theme.cfg b/src/Gui/PreferencePacks/Light modern/Light modern.cfg similarity index 100% rename from src/Gui/PreferencePacks/Light modern theme/Light modern theme.cfg rename to src/Gui/PreferencePacks/Light modern/Light modern.cfg diff --git a/src/Gui/PreferencePacks/Light theme/Light theme.cfg b/src/Gui/PreferencePacks/Light/Light.cfg similarity index 100% rename from src/Gui/PreferencePacks/Light theme/Light theme.cfg rename to src/Gui/PreferencePacks/Light/Light.cfg diff --git a/src/Gui/PreferencePacks/ProDark/ProDark.cfg b/src/Gui/PreferencePacks/ProDark/ProDark.cfg new file mode 100644 index 0000000000..3326403640 --- /dev/null +++ b/src/Gui/PreferencePacks/ProDark/ProDark.cfg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + #9b4de6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ProDark.qss + + + + + diff --git a/src/Gui/PreferencePacks/package.xml b/src/Gui/PreferencePacks/package.xml index aff173db12..7fe115c499 100644 --- a/src/Gui/PreferencePacks/package.xml +++ b/src/Gui/PreferencePacks/package.xml @@ -9,7 +9,7 @@ - Classic theme + Classic Theme Removes stylesheets, and applies the classic purple/gray background. Resets all colors to default 1.0.0 @@ -19,9 +19,9 @@ classic theme - Dark theme + Dark Theme - Applies a dark background and a darker stylesheet, you can choose other stylesheets as you wish. + Applies a dark background and a darker stylesheet. 0.5.0 built-in dark @@ -30,9 +30,75 @@ theme - Light theme + Darker Theme - Applies a light background and a light stylesheet, you can choose other stylesheets as you wish. + Applies a dark background and a darker stylesheet. + 0.5.0 + built-in + dark + background + stylesheet + theme + + + Dark modern + Theme + Applies a dark background and a darker stylesheet. + 0.5.0 + built-in + dark + background + stylesheet + theme + + + ProDark + Theme + Applies a dark background and a darker stylesheet. + 0.5.0 + built-in + dark + background + stylesheet + theme + + + Dark behave + Theme + Applies a dark background and a darker stylesheet. + 0.5.0 + built-in + dark + background + stylesheet + theme + + + Dark contrast + Theme + Dark theme with high contrasts. + 0.5.0 + built-in + dark + background + stylesheet + theme + + + Light + Theme + Applies a light background and a light stylesheet. + 0.5.0 + built-in + light + background + stylesheet + theme + + + Light modern + Theme + Applies a light background and a light stylesheet. 0.5.0 built-in light