mirror of
https://github.com/encounter/numix-blue-gtk-theme.git
synced 2026-07-10 12:18:49 -07:00
Initial Commit
This commit is contained in:
@@ -0,0 +1,257 @@
|
||||
/***********************
|
||||
* fallback mode panel *
|
||||
***********************/
|
||||
PanelWidget,
|
||||
PanelApplet,
|
||||
PanelToplevel {
|
||||
padding: 0;
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(@panel_bg_color, 1.1)),
|
||||
to (shade(@panel_bg_color, 0.9)));
|
||||
|
||||
color: @panel_fg_color;
|
||||
}
|
||||
|
||||
PanelApplet {
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
PanelSeparator {
|
||||
border-width: 0;
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(@panel_bg_color, 1.1)),
|
||||
to (shade(@panel_bg_color, 0.9)));
|
||||
|
||||
color: @panel_fg_color;
|
||||
}
|
||||
|
||||
.gnome-panel-menu-bar,
|
||||
PanelApplet > GtkMenuBar.menubar,
|
||||
PanelApplet > GtkMenuBar.menubar.menuitem,
|
||||
PanelMenuBar.menubar,
|
||||
PanelMenuBar.menubar.menuitem {
|
||||
-PanelMenuBar-icon-visible: true;
|
||||
|
||||
border-width: 0;
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(@panel_bg_color, 1.1)),
|
||||
to (shade(@panel_bg_color, 0.9)));
|
||||
}
|
||||
|
||||
PanelAppletFrame {
|
||||
border-width: 0;
|
||||
background-color: @panel_bg_color;
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(@panel_bg_color, 1.1)),
|
||||
to (shade(@panel_bg_color, 0.9)));
|
||||
}
|
||||
|
||||
PanelApplet .button {
|
||||
-GtkButton-inner-border: 2;
|
||||
|
||||
border-width: 0 1px;
|
||||
border-radius: 0;
|
||||
border-color: transparent;
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(@panel_bg_color, 1.1)),
|
||||
to (shade(@panel_bg_color, 0.9)));
|
||||
|
||||
color: @panel_fg_color;
|
||||
}
|
||||
|
||||
PanelApplet .button:active {
|
||||
border-width: 0 1px;
|
||||
border-radius: 0;
|
||||
border-color: shade(@panel_bg_color, 0.8);
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(shade(@panel_bg_color, 1.02), 0.9)),
|
||||
to (shade(shade(@panel_bg_color, 1.02), 0.95)));
|
||||
}
|
||||
|
||||
PanelApplet .button:prelight {
|
||||
border-color: transparent;
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(@panel_bg_color, 1.2)),
|
||||
to (shade(@panel_bg_color, 1.0)));
|
||||
}
|
||||
|
||||
PanelApplet .button:active:prelight {
|
||||
border-color: shade(@panel_bg_color, 0.8);
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(shade(@panel_bg_color, 1.02), 1.0)),
|
||||
to (shade(shade(@panel_bg_color, 1.02), 1.05)));
|
||||
}
|
||||
|
||||
WnckPager, WnckTasklist {
|
||||
background-color: @panel_bg_color;
|
||||
}
|
||||
|
||||
/************
|
||||
* nautilus *
|
||||
************/
|
||||
.nautilus-canvas-item {
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.nautilus-desktop.nautilus-canvas-item {
|
||||
color: #fff;
|
||||
text-shadow: 1px 1px #000;
|
||||
}
|
||||
|
||||
.nautilus-desktop.nautilus-canvas-item:active {
|
||||
background-color: alpha(@theme_bg_color, 0.8);
|
||||
background-image: none;
|
||||
color: @theme_fg_color;
|
||||
}
|
||||
|
||||
.nautilus-desktop.nautilus-canvas-item:selected {
|
||||
background-color: alpha(@theme_selected_bg_color, 0.8);
|
||||
background-image: none;
|
||||
color: @theme_selected_fg_color;
|
||||
}
|
||||
|
||||
.nautilus-desktop.nautilus-canvas-item:active,
|
||||
.nautilus-desktop.nautilus-canvas-item:prelight,
|
||||
.nautilus-desktop.nautilus-canvas-item:selected {
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
NautilusWindow .sidebar .frame {
|
||||
border-width: 1px 0 0 0;
|
||||
border-style: solid;
|
||||
border-color: shade(@theme_bg_color, 0.8);
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
NautilusWindow > GtkGrid > .pane-separator {
|
||||
border-width: 1px 1px 0 0;
|
||||
border-style: solid;
|
||||
border-color: shade(@theme_bg_color, 0.8);
|
||||
background-color: @theme_bg_color;
|
||||
}
|
||||
|
||||
NautilusView.frame,
|
||||
NautilusNotebook.notebook {
|
||||
border-right-width: 0;
|
||||
border-bottom-width: 0;
|
||||
border-left-width: 0;
|
||||
}
|
||||
|
||||
NautilusNotebook .frame {
|
||||
border-width: 1px 0 0 0;
|
||||
}
|
||||
|
||||
NautilusQueryEditor .primary-toolbar.toolbar {
|
||||
padding: 4px;
|
||||
border-top-width: 1px;
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
|
||||
NautilusQueryEditor .primary-toolbar.toolbar .button {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
NautilusQueryEditor .toolbar {
|
||||
padding: 4px 4px 3px 4px;
|
||||
border-width: 1px 0 0 0;
|
||||
border-style: solid;
|
||||
border-color: @theme_bg_color;
|
||||
background-color: mix(@theme_bg_color, @theme_base_color, 0.5);
|
||||
}
|
||||
|
||||
NautilusQueryEditor .toolbar:nth-child(2) {
|
||||
border-color: shade(@theme_bg_color, 0.8);
|
||||
}
|
||||
|
||||
NautilusNotebook.notebook NautilusQueryEditor .primary-toolbar.toolbar {
|
||||
border-top-width: 0;
|
||||
}
|
||||
|
||||
NautilusNotebook.notebook NautilusQueryEditor .toolbar:last-child,
|
||||
NautilusNotebook.notebook NautilusQueryEditor .primary-toolbar.toolbar:only-child {
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-color: shade(@theme_bg_color, 0.8);
|
||||
}
|
||||
|
||||
.toolbar NautilusPathBar .button {
|
||||
padding: 1px 5px;
|
||||
}
|
||||
|
||||
/******************
|
||||
* gnome terminal *
|
||||
******************/
|
||||
TerminalScreen {
|
||||
-TerminalScreen-background-darkness: 0.9;
|
||||
|
||||
background-color: #2D2D2D;
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
TerminalWindow GtkNotebook.notebook {
|
||||
border-right-width: 0;
|
||||
border-bottom-width: 0;
|
||||
border-left-width: 0;
|
||||
}
|
||||
|
||||
TerminalWindow .scrollbars-junction,
|
||||
TerminalWindow .scrollbar.trough {
|
||||
background-color: #2D2D2D;
|
||||
}
|
||||
|
||||
TerminalWindow .scrollbar.button,
|
||||
TerminalWindow .scrollbar.button:active,
|
||||
TerminalWindow .scrollbar.button:active:hover {
|
||||
color: shade(#2D2D2D, 0.6);
|
||||
}
|
||||
|
||||
/*********
|
||||
* gedit *
|
||||
*********/
|
||||
GeditWindow .pane-separator,
|
||||
GeditWindow .pane-separator:hover {
|
||||
border-width: 0 1px 1px 1px;
|
||||
border-style: solid;
|
||||
border-color: shade(@theme_bg_color, 0.8);
|
||||
background-color: shade(@theme_bg_color, 1.02);
|
||||
color: shade(@theme_bg_color, 0.8);
|
||||
}
|
||||
|
||||
GeditPanel.title GtkLabel {
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
GeditPanel .toolbar {
|
||||
border-style: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
GeditDocumentsPanel .view {
|
||||
background-color: shade(@theme_bg_color, 1.02);
|
||||
}
|
||||
|
||||
GeditPanel .notebook {
|
||||
padding: 0;
|
||||
border-width: 1px 0;
|
||||
}
|
||||
|
||||
GeditWindow .notebook {
|
||||
border-width: 1px 0;
|
||||
}
|
||||
|
||||
GeditPanel .notebook tab,
|
||||
GeditWindow .notebook tab {
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
GeditFloatingSlider .not-found {
|
||||
background-color: @error_bg_color;
|
||||
background-image: none;
|
||||
color: @error_fg_color;
|
||||
}
|
||||
|
||||
/***********************
|
||||
* gnome control center *
|
||||
***********************/
|
||||
CcShellItemView.view {
|
||||
background-color: @theme_bg_color;
|
||||
}
|
||||
@@ -0,0 +1,272 @@
|
||||
/*********************
|
||||
* dynamic notebooks *
|
||||
*********************/
|
||||
.dynamic-notebook {
|
||||
background-color: shade(@theme_bg_color, 1.02);
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.dynamic-notebook .notebook {
|
||||
-GtkNotebook-tab-overlap: 3px;
|
||||
-GtkNotebook-initial-gap: 5px;
|
||||
|
||||
border-width: 1px 0 0 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.dynamic-notebook .notebook tab {
|
||||
padding: 2px 3px 0 3px;
|
||||
border-width: 0 1px 0 0;
|
||||
border-color: shade(@theme_bg_color, 0.8);
|
||||
border-radius: 0;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: @theme_fg_color;
|
||||
}
|
||||
|
||||
.dynamic-notebook .notebook tab:nth-child(first) {
|
||||
border-width: 0 1px 0 1px;
|
||||
}
|
||||
|
||||
.dynamic-notebook .notebook tab:active {
|
||||
border-width: 1px;
|
||||
border-color: shade(@theme_bg_color, 0.8);
|
||||
border-radius: 2px;
|
||||
background-color: shade(@theme_bg_color, 1.02);
|
||||
color: @theme_fg_color;
|
||||
}
|
||||
|
||||
.dynamic-notebook .button,
|
||||
.dynamic-notebook .button:hover,
|
||||
.dynamic-notebook .button:hover:active,
|
||||
.dynamic-notebook .notebook .button,
|
||||
.dynamic-notebook .notebook .button:hover,
|
||||
.dynamic-notebook .notebook .button:hover:active {
|
||||
padding: 0;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
/****************
|
||||
* content view *
|
||||
****************/
|
||||
.content-view,
|
||||
.content-view *,
|
||||
.content-view GtkViewport {
|
||||
background-color: @theme_base_color;
|
||||
}
|
||||
|
||||
.content-view-window {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: shade(@theme_bg_color, 0.8);
|
||||
border-radius: 5px;
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (@theme_base_color),
|
||||
to (shade(@theme_base_color, 0.97)));
|
||||
}
|
||||
|
||||
.content-view .entry {
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(@theme_base_color, 0.97)),
|
||||
to (@theme_base_color));
|
||||
}
|
||||
|
||||
.content-view .title,
|
||||
.content-view .option-title {
|
||||
color: @theme_text_color;
|
||||
}
|
||||
|
||||
.content-view .subtitle,
|
||||
.content-view .option-description {
|
||||
color: mix(@theme_fg_color, @theme_bg_color, 0.5);
|
||||
}
|
||||
|
||||
.content-view .button {
|
||||
border-style: solid;
|
||||
border-radius: 2px;
|
||||
background-color: alpha(@theme_bg_color, 0.0);
|
||||
background-image: none;
|
||||
color: @theme_fg_color;
|
||||
}
|
||||
|
||||
.content-view .button:active,
|
||||
.content-view .button:active:hover {
|
||||
background-color: alpha(@theme_bg_color, 0.5);
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.content-view .button:insensitive {
|
||||
background-color: alpha(@theme_base_color, 0.0);
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.content-view .help_button * {
|
||||
color: @theme_text_color;
|
||||
}
|
||||
|
||||
.content-view .toolbar {
|
||||
padding: 1px;
|
||||
border-width: 0 0 1px 0;
|
||||
border-style: solid;
|
||||
border-color: shade(@theme_bg_color, 0.8);
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(@theme_bg_color, 0.96)),
|
||||
to (shade(@theme_bg_color, 0.94)));
|
||||
-GtkWidget-window-dragging: true;
|
||||
}
|
||||
|
||||
/*******************
|
||||
* album list view *
|
||||
*******************/
|
||||
.album-list-view,
|
||||
.album-list-view * {
|
||||
border-color: shade(@theme_bg_color, 0.8);
|
||||
border-radius: 0;
|
||||
background-color: @theme_base_color;
|
||||
color: @theme_fg_color;
|
||||
}
|
||||
|
||||
.album-list-view GtkTreeView {
|
||||
-GtkTreeView-vertical-separator: 1;
|
||||
-GtkTreeView-grid-line-width: 0;
|
||||
|
||||
background-color: @theme_base_color;
|
||||
color: @theme_fg_color;
|
||||
}
|
||||
|
||||
.album-list-view GtkTreeView row:nth-child(even) {
|
||||
border-width: 0;
|
||||
border-style: none;
|
||||
background-color: shade(@theme_base_color, 0.97);
|
||||
}
|
||||
|
||||
.album-list-view GtkTreeView row:nth-child(odd) {
|
||||
border-width: 0;
|
||||
border-style: none;
|
||||
background-color: shade(@theme_base_color, 1.0);
|
||||
}
|
||||
|
||||
/*************
|
||||
* statusbar *
|
||||
*************/
|
||||
GraniteWidgetsStatusBar {
|
||||
padding: 1px;
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(shade(@theme_bg_color, 1.02), 1.1)),
|
||||
to (shade(shade(@theme_bg_color, 1.02), 0.9)));
|
||||
|
||||
box-shadow: inset 0 1px shade(@theme_bg_color, 0.8);
|
||||
}
|
||||
|
||||
/***********
|
||||
* popover *
|
||||
***********/
|
||||
GraniteWidgetsPopOver {
|
||||
-GraniteWidgetsPopOver-arrow-width: 24;
|
||||
-GraniteWidgetsPopOver-arrow-height: 12;
|
||||
-GraniteWidgetsPopOver-border-radius: 5px;
|
||||
-GraniteWidgetsPopOver-border-width: 1;
|
||||
-GraniteWidgetsPopOver-shadow-size: 15;
|
||||
|
||||
margin: 0;
|
||||
border-style: solid;
|
||||
border-color: shade(@menu_bg_color, 0.8);
|
||||
color: @menu_fg_color;
|
||||
}
|
||||
|
||||
.popover_bg {
|
||||
background-color: transparent;
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(@menu_bg_color, 1.02)),
|
||||
to (shade(@menu_bg_color, 1.0)));
|
||||
}
|
||||
|
||||
GraniteWidgetsPopOver .sidebar.view,
|
||||
GraniteWidgetsPopOver * {
|
||||
background-color: transparent;
|
||||
color: @menu_fg_color;
|
||||
}
|
||||
|
||||
GraniteWidgetsPopOver .button {
|
||||
border-color: shade(@menu_bg_color, 0.8);
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: @menu_fg_color;
|
||||
}
|
||||
|
||||
GraniteWidgetsPopOver .button:active,
|
||||
GraniteWidgetsPopOver .button:hover:active {
|
||||
background-color: @menu_bg_color;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
GraniteWidgetsPopOver .entry {
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(@theme_base_color, 0.97)),
|
||||
to (@theme_base_color));
|
||||
|
||||
color: @theme_text_color;
|
||||
}
|
||||
|
||||
.button.app {
|
||||
border-width: 0;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.app:hover,
|
||||
.app:focus {
|
||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
||||
from (shade(@theme_selected_bg_color, 1.1)),
|
||||
to (shade(@theme_selected_bg_color, 0.9)));
|
||||
|
||||
color: @theme_selected_fg_color;
|
||||
}
|
||||
|
||||
/*************
|
||||
* wingpanel *
|
||||
*************/
|
||||
.panel {
|
||||
background-color: alpha (#000, 0.6);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.shadow {
|
||||
background-color: transparent;
|
||||
background-image: -gtk-gradient(linear,
|
||||
left top, left bottom,
|
||||
from (rgba(0, 0, 0, 0.3)),
|
||||
to (transparent));
|
||||
}
|
||||
|
||||
.composited-indicator,
|
||||
.wingpanel-app-button,
|
||||
.wingpanel-indicator-button {
|
||||
padding: 0 2px;
|
||||
background-color: transparent;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.composited-indicator.menuitem:active,
|
||||
.composited-indicator.menuitem:prelight {
|
||||
border-style: none;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
/**********
|
||||
* notify *
|
||||
**********/
|
||||
.notify {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: shade(@theme_bg_color, 0.8);
|
||||
border-radius: 5px;
|
||||
background-color: @theme_base_color;
|
||||
color: @theme_text_color;
|
||||
}
|
||||
|
||||
.notify .low {
|
||||
}
|
||||
|
||||
.notify .critical {
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
UnityPanelWidget,
|
||||
.unity-panel {
|
||||
border-width: 0 0 1px 0;
|
||||
border-style: solid;
|
||||
border-color: @panel_bg_color;
|
||||
background-image: none;
|
||||
background-color: @panel_bg_color;
|
||||
color: @panel_fg_color;
|
||||
}
|
||||
|
||||
.unity-panel.menubar,
|
||||
.unity-panel .menubar {
|
||||
}
|
||||
|
||||
.unity-panel.menuitem,
|
||||
.unity-panel .menuitem {
|
||||
border-width: 0 1px;
|
||||
color: @panel_fg_color;
|
||||
}
|
||||
|
||||
.unity-panel.menubar.menuitem:hover,
|
||||
.unity-panel.menubar .menuitem *:hover {
|
||||
border-color: mix(@menubar_bg_color, @theme_bg_color, 0.23);
|
||||
background-image: none;
|
||||
background-color: mix(@menubar_bg_color, @theme_bg_color, 0.21);
|
||||
color: mix(@menubar_fg_color, @theme_base_color, 0.8);
|
||||
}
|
||||
Reference in New Issue
Block a user