aboutsummaryrefslogtreecommitdiff
path: root/libLumina/themes
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-06-10 10:39:25 -0400
committerKen Moore <ken@pcbsd.org>2015-06-10 10:39:25 -0400
commit51a8abb8d81835fb8578e5db224e2faa97b3dc51 (patch)
tree948c8e22fefeb0c8b49684a27d960bbbda15497d /libLumina/themes
parentUpdate the memory calculation for FreeBSD/PC-BSD to also use the kernel info ... (diff)
downloadlumina-51a8abb8d81835fb8578e5db224e2faa97b3dc51.tar.gz
lumina-51a8abb8d81835fb8578e5db224e2faa97b3dc51.tar.bz2
lumina-51a8abb8d81835fb8578e5db224e2faa97b3dc51.zip
Adjust the themes to use the PRIMARY colors instead of the ACCENT colors for desktop plugin shaders/backgrounds. This ensures a uniformity with the panel appearance (when the panel is following the theme). Also add an entry for the new systemmonitor plugin.
Diffstat (limited to 'libLumina/themes')
-rw-r--r--libLumina/themes/Lumina-default.qss.template15
-rw-r--r--libLumina/themes/None.qss.template17
2 files changed, 21 insertions, 11 deletions
diff --git a/libLumina/themes/Lumina-default.qss.template b/libLumina/themes/Lumina-default.qss.template
index 84924b2d..4d0e0a13 100644
--- a/libLumina/themes/Lumina-default.qss.template
+++ b/libLumina/themes/Lumina-default.qss.template
@@ -31,16 +31,21 @@ LDPlugin#notepad{
border-radius: 5px;
}
+LDPlugin#systemmonitor{
+ background: %%BASECOLOR%%;
+ border-radius: 5px;
+}
+
LDPlugin#applauncher QToolButton{
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 transparent,
stop: 0.7 transparent,
- stop: 1.0 %%ACCENTDISABLECOLOR%%);
+ stop: 1.0 %%PRIMARYDISABLECOLOR%%);
border-radius: 5px;
- color: %%TEXTDISABLECOLOR%%;
+ color: %%TEXTCOLOR%%;
}
LDPlugin#applauncher QToolButton:hover{
- background: %%ACCENTDISABLECOLOR%%;
+ background: %%PRIMARYDISABLECOLOR%%;
border-radius: 5px;
color: %%TEXTHIGHLIGHTCOLOR%%;
}
@@ -53,9 +58,9 @@ LDPlugin#desktopview QListWidget::item{
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 transparent,
stop: 0.7 transparent,
- stop: 1.0 %%ACCENTDISABLECOLOR%%);
+ stop: 1.0 %%PRIMARYDISABLECOLOR%%);
border-radius: 5px;
- color: %%TEXTDISABLECOLOR%%;
+ color: %%TEXTCOLOR%%;
}
LDPlugin#desktopview QListWidget::item:hover{
diff --git a/libLumina/themes/None.qss.template b/libLumina/themes/None.qss.template
index 2f3503ce..57dd84e4 100644
--- a/libLumina/themes/None.qss.template
+++ b/libLumina/themes/None.qss.template
@@ -29,16 +29,21 @@ LDPlugin#notepad{
border-radius: 5px;
}
+LDPlugin#systemmonitor{
+ background: %%BASECOLOR%%;
+ border-radius: 5px;
+}
+
LDPlugin#applauncher QToolButton{
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 transparent,
stop: 0.7 transparent,
- stop: 1.0 %%ACCENTDISABLECOLOR%%);
+ stop: 1.0 %%PRIMARYDISABLECOLOR%%);
border-radius: 5px;
- color: %%TEXTDISABLECOLOR%%;
+ color: %%TEXTCOLOR%%;
}
LDPlugin#applauncher QToolButton:hover{
- background: %%ACCENTDISABLECOLOR%%;
+ background: %%PRIMARYDISABLECOLOR%%;
border-radius: 5px;
color: %%TEXTHIGHLIGHTCOLOR%%;
}
@@ -51,13 +56,13 @@ LDPlugin#desktopview QListWidget::item{
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 transparent,
stop: 0.7 transparent,
- stop: 1.0 %%ACCENTDISABLECOLOR%%);
+ stop: 1.0 %%PRIMARYDISABLECOLOR%%);
border-radius: 5px;
- color: %%TEXTDISABLECOLOR%%;
+ color: %%TEXTCOLOR%%;
}
LDPlugin#desktopview QListWidget::item:hover{
- background: %%ACCENTDISABLECOLOR%%;
+ background: %%PRIMARYDISABLECOLOR%%;
border-radius: 5px;
color: %%TEXTHIGHLIGHTCOLOR%%;
}
bgstack15