@ -0,0 +1,59 @@
|
||||
### PIXMAP MENUBAR ###
|
||||
style "pixbuf-menubar"
|
||||
|
||||
{
|
||||
xthickness = 1
|
||||
ythickness = 2
|
||||
text[NORMAL] = @selected_fg_color # Fix Openoffice menubar
|
||||
|
||||
engine "pixmap"
|
||||
{
|
||||
image
|
||||
{
|
||||
function = BOX
|
||||
state = NORMAL
|
||||
file = "images/menubar.png"
|
||||
border = { 0, 0, 0, 2 }
|
||||
stretch = TRUE
|
||||
}
|
||||
|
||||
image
|
||||
{
|
||||
function = BOX
|
||||
state = ACTIVE
|
||||
file = "images/menubar.png"
|
||||
border = { 0, 0, 0, 2 }
|
||||
stretch = TRUE
|
||||
}
|
||||
|
||||
image
|
||||
{
|
||||
function = BOX
|
||||
state = INSENSITIVE
|
||||
file = "images/menubar.png"
|
||||
border = { 0, 0, 0, 2 }
|
||||
stretch = TRUE
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
style "menubar-menuitem"
|
||||
{
|
||||
bg[PRELIGHT] = @selected_bg_color
|
||||
bg[SELECTED] = @selected_bg_color
|
||||
fg[NORMAL] = @selected_fg_color
|
||||
fg[PRELIGHT] = @selected_fg_color
|
||||
fg[SELECTED] = @selected_fg_color
|
||||
text[NORMAL] = @base_color
|
||||
text[PRELIGHT] = @selected_fg_color
|
||||
text[SELECTED] = @selected_fg_color
|
||||
}
|
||||
|
||||
style "menubar-menuitem-prelight"
|
||||
{
|
||||
fg[PRELIGHT] = @selected_fg_color
|
||||
}
|
||||
|
||||
widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar-menuitem"
|
||||
widget_class "*<GtkMenuItem>*" style "menubar-menuitem-prelight"
|
||||
widget_class "*<GtkMenuBar>*" style "pixbuf-menubar"
|
After Width: | Height: | Size: 373 B |
After Width: | Height: | Size: 373 B |
After Width: | Height: | Size: 142 B |
After Width: | Height: | Size: 142 B |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 275 B |
@ -0,0 +1,122 @@
|
||||
# ==============================================================================
|
||||
# GNOME PANEL SPECIFIC SETTINGS
|
||||
# ==============================================================================
|
||||
|
||||
style "panel"
|
||||
{
|
||||
xthickness = 0
|
||||
ythickness = 0
|
||||
bg_pixmap[NORMAL] = "images/panel.png"
|
||||
engine "murrine" {
|
||||
#contrast = 1.0
|
||||
textstyle = 1
|
||||
text_shade = 1.5
|
||||
}
|
||||
}
|
||||
|
||||
style "panel_task_button"
|
||||
{
|
||||
xthickness = 3
|
||||
xthickness = 3
|
||||
|
||||
GtkWidget::focus-line-width = 0
|
||||
GtkWidget::focus_padding = 0
|
||||
GtkWidget::interior_focus = 0
|
||||
GtkWidget::internal_padding = 0
|
||||
|
||||
GtkButton::child_displacement_x = 0
|
||||
GtkButton::child_displacement_y = 0
|
||||
GtkButton::default_border = {0, 0, 0, 0}
|
||||
GtkButton::default_outside_border = {0, 0, 0, 0}
|
||||
GtkButtonBox::child_internal_pad_x = 0
|
||||
GtkButtonBox::child_internal_pad_y = 0
|
||||
GtkButtonBox::child_min_heigth = 0
|
||||
|
||||
fg[NORMAL] = @selected_fg_color
|
||||
fg[PRELIGHT] = @selected_fg_color
|
||||
fg[ACTIVE] = @selected_fg_color
|
||||
|
||||
bg[SELECTED] = shade (0.2, @bg_color)
|
||||
bg[PRELIGHT] = shade (0.26, @bg_color)
|
||||
bg[ACTIVE] = shade (0.2, @bg_color)
|
||||
|
||||
engine "pixmap" {
|
||||
|
||||
image
|
||||
{
|
||||
function = BOX
|
||||
recolorable = TRUE
|
||||
state = NORMAL
|
||||
file = "images/panel-button-inactive.png"
|
||||
border = { 1, 1, 1, 1 }
|
||||
stretch = TRUE
|
||||
}
|
||||
|
||||
image
|
||||
{
|
||||
function = BOX
|
||||
recolorable = TRUE
|
||||
state = PRELIGHT
|
||||
file = "images/panel-button-hover.png"
|
||||
border = { 1, 1, 1, 1 }
|
||||
stretch = TRUE
|
||||
}
|
||||
|
||||
image
|
||||
{
|
||||
function = BOX
|
||||
recolorable = TRUE
|
||||
shadow = OUT
|
||||
state = PRELIGHT
|
||||
file = "images/panel-button-hover.png"
|
||||
border = { 1, 1, 1, 1 }
|
||||
stretch = TRUE
|
||||
|
||||
}
|
||||
|
||||
image
|
||||
{
|
||||
function = BOX
|
||||
recolorable = TRUE
|
||||
shadow = IN
|
||||
state = PRELIGHT
|
||||
file = "images/panel-button-hover.png"
|
||||
border = { 1, 1, 1, 1 }
|
||||
stretch = TRUE
|
||||
|
||||
}
|
||||
|
||||
image
|
||||
{
|
||||
function = BOX
|
||||
recolorable = TRUE
|
||||
state = ACTIVE
|
||||
file = "images/panel-button-active.png"
|
||||
border = { 4, 4, 4, 4 }
|
||||
stretch = TRUE
|
||||
}
|
||||
image
|
||||
{
|
||||
function = BOX
|
||||
recolorable = TRUE
|
||||
state = INSENSITIVE
|
||||
file = "images/panel-button-inactive.png"
|
||||
border = { 1, 1, 1, 1 }
|
||||
stretch = TRUE
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#widget_class "*Panel*" style "panel"
|
||||
widget "*PanelWidget*" style "panel"
|
||||
widget "*PanelApplet*" style "panel"
|
||||
widget "*fast-user-switch*" style "panel" # workaround for Fast User Switch applet
|
||||
class "PanelApp*" style "panel"
|
||||
class "PanelToplevel*" style "panel"
|
||||
#widget_class "*Mail*" style "panel"
|
||||
widget_class "*notif*" style "panel"
|
||||
|
||||
#widget_class "*?anel*utton" style "panel_task_button" # causing problems to monodevelop
|
||||
widget "*task*" style "panel_task_button"
|
||||
widget "*.tasklist-button" style "panel_task_button"
|
||||
widget "*PanelApplet*TaskTitle*" style "panel_task_button"
|
@ -0,0 +1,74 @@
|
||||
style "theme-panel" = "murrine-dark"
|
||||
{
|
||||
xthickness = 1
|
||||
ythickness = 0
|
||||
|
||||
bg[NORMAL] = "#212936"
|
||||
bg[ACTIVE] = "#091720"
|
||||
bg[PRELIGHT] = "#16364d"
|
||||
|
||||
fg[NORMAL] = @selected_fg_color
|
||||
fg[PRELIGHT] = @selected_fg_color
|
||||
fg[ACTIVE] = @selected_fg_color
|
||||
|
||||
text[NORMAL] = @selected_fg_color
|
||||
text[PRELIGHT] = @selected_fg_color
|
||||
text[ACTIVE] = @selected_fg_color
|
||||
|
||||
engine "murrine" {
|
||||
#border_shades = { 1.3, 0.9 }
|
||||
contrast = 0.0
|
||||
roundness = 0
|
||||
glowstyle = 0
|
||||
glow_shade = 1.4
|
||||
glazestyle = 2
|
||||
trough_border_shades = { 3.0, 2.5 } # improve visibility in panel-plugins using the progressbar (xfce4-timer-plugin)
|
||||
}
|
||||
}
|
||||
|
||||
style "theme-panel-text"
|
||||
{
|
||||
fg[NORMAL] = @selected_fg_color
|
||||
fg[PRELIGHT] = @selected_fg_color
|
||||
fg[ACTIVE] = @selected_fg_color
|
||||
|
||||
text[NORMAL] = @selected_fg_color
|
||||
text[PRELIGHT] = @selected_fg_color
|
||||
text[ACTIVE] = @selected_fg_color
|
||||
}
|
||||
|
||||
style "theme-main-menu-text" = "theme-panel-text"
|
||||
{
|
||||
fg[PRELIGHT] = @selected_fg_color
|
||||
text[PRELIGHT] = @selected_fg_color
|
||||
}
|
||||
|
||||
widget "*PanelWidget*" style "theme-panel"
|
||||
widget "*PanelApplet*" style "theme-panel"
|
||||
widget "*fast-user-switch*" style "theme-panel"
|
||||
widget "*CPUFreq*Applet*" style "theme-panel"
|
||||
widget "*indicator-applet*" style "theme-panel"
|
||||
class "PanelApp*" style "theme-panel"
|
||||
class "PanelToplevel*" style "theme-panel"
|
||||
widget_class "*PanelToplevel*" style "theme-panel"
|
||||
widget_class "*notif*" style "theme-panel"
|
||||
widget_class "*Notif*" style "theme-panel"
|
||||
widget_class "*Tray*" style "theme-panel"
|
||||
widget_class "*tray*" style "theme-panel"
|
||||
widget_class "*computertemp*" style "theme-panel"
|
||||
widget_class "*Applet*Tomboy*" style "theme-panel"
|
||||
widget_class "*Applet*Netstatus*" style "theme-panel"
|
||||
|
||||
# Fixes for tooltip text in some apps.
|
||||
widget_class "*Notif*Beagle*" style "theme-panel"
|
||||
widget_class "*Notif*Brasero*" style "theme-panel"
|
||||
|
||||
# XFCE panel theming.
|
||||
widget "*Xfce*Panel*" style "theme-panel"
|
||||
class "*Xfce*Panel*" style "theme-panel"
|
||||
|
||||
# Make sure panel text color doesn't change
|
||||
widget_class "*Panel*MenuBar*" style "theme-main-menu-text"
|
||||
widget_class "*Panel*<GtkMenuBar>*" style "theme-main-menu-text"
|
||||
widget "*.clock-applet-button.*" style "theme-panel-text"
|
||||
widget "*PanelApplet*" style "theme-panel-text"
|
@ -0,0 +1,4 @@
|
||||
#define bullet_width 7
|
||||
#define bullet_height 7
|
||||
static unsigned char bullet_bits[] = {
|
||||
0x00, 0x03, 0x0f, 0x3f, 0x0f, 0x03, 0x00 };
|
@ -1,4 +1,5 @@
|
||||
#define close_width 8
|
||||
#define close_height 8
|
||||
#define close_width 10
|
||||
#define close_height 10
|
||||
static unsigned char close_bits[] = {
|
||||
0xc3, 0xe7, 0x7e, 0x3c, 0x3c, 0x7e, 0xe7, 0xc3 };
|
||||
0x00, 0x00, 0x00, 0x00, 0x86, 0x01, 0xcc, 0x00, 0x78, 0x00, 0x30, 0x00,
|
||||
0x78, 0x00, 0xcc, 0x00, 0x86, 0x01, 0x00, 0x00 };
|
||||
|
@ -1,5 +0,0 @@
|
||||
#define close_pressed_width 10
|
||||
#define close_pressed_height 10
|
||||
static unsigned char close_pressed_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x0c, 0x03, 0x9c, 0x03, 0xf8, 0x01, 0xf0, 0x00,
|
||||
0xf0, 0x00, 0xf8, 0x01, 0x9c, 0x03, 0x0c, 0x03 };
|
@ -1,4 +0,0 @@
|
||||
#define desk_width 8
|
||||
#define desk_height 8
|
||||
static unsigned char desk_bits[] = {
|
||||
0x00, 0x00, 0x48, 0x78, 0x7f, 0x78, 0x48, 0x00 };
|
@ -1,4 +0,0 @@
|
||||
#define desk_toggled_width 8
|
||||
#define desk_toggled_height 8
|
||||
static unsigned char desk_toggled_bits[] = {
|
||||
0x00, 0x66, 0x66, 0x00, 0x00, 0x66, 0x66, 0x00 };
|
@ -1,4 +1,5 @@
|
||||
#define iconify_width 8
|
||||
#define iconify_height 8
|
||||
#define iconify_width 10
|
||||
#define iconify_height 10
|
||||
static unsigned char iconify_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff };
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x01, 0xcc, 0x00, 0x78, 0x00,
|
||||
0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
||||
|
@ -1,5 +0,0 @@
|
||||
#define iconify_disabled_width 10
|
||||
#define iconify_disabled_height 10
|
||||
static unsigned char iconify_disabled_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
@ -1,5 +0,0 @@
|
||||
#define iconify_pressed_width 10
|
||||
#define iconify_pressed_height 10
|
||||
static unsigned char iconify_pressed_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0xfc, 0x03, 0xfc, 0x03 };
|
@ -1,4 +1,5 @@
|
||||
#define max_width 8
|
||||
#define max_height 8
|
||||
#define max_width 10
|
||||
#define max_height 10
|
||||
static unsigned char max_bits[] = {
|
||||
0xff, 0xff, 0x81, 0x81, 0x81, 0x81, 0x81, 0xff };
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x78, 0x00, 0xcc, 0x00,
|
||||
0x86, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
||||
|
@ -1,5 +0,0 @@
|
||||
#define max_disabled_width 10
|
||||
#define max_disabled_height 10
|
||||
static unsigned char max_disabled_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
@ -1,5 +0,0 @@
|
||||
#define max_pressed_width 10
|
||||
#define max_pressed_height 10
|
||||
static unsigned char max_pressed_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0xfc, 0x03, 0xfc, 0x03, 0x04, 0x02, 0x04, 0x02,
|
||||
0x04, 0x02, 0x04, 0x02, 0x04, 0x02, 0xfc, 0x03 };
|
@ -1,4 +0,0 @@
|
||||
#define max_toggled_width 8
|
||||
#define max_toggled_height 8
|
||||
static unsigned char max_toggled_bits[] = {
|
||||
0xfc, 0xfc, 0x84, 0x9f, 0x91, 0xf1, 0x11, 0x1f };
|
@ -1,4 +1,5 @@
|
||||
#define shade_width 8
|
||||
#define shade_height 8
|
||||
#define shade_width 9
|
||||
#define shade_height 9
|
||||
static unsigned char shade_bits[] = {
|
||||
0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x38, 0x00, 0x7c, 0x00,
|
||||
0xfe, 0x00, 0xff, 0x01, 0x83, 0x01 };
|
||||
|
@ -1,5 +0,0 @@
|
||||
#define shade_pressed_width 10
|
||||
#define shade_pressed_height 10
|
||||
static unsigned char shade_pressed_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0xfc, 0x03, 0xfc, 0x03, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
@ -1,65 +1,88 @@
|
||||
#openbox themerc edited with obtheme
|
||||
# Ozone, by 神癒礁湖 (Rafael Laguna)
|
||||
# Based on Zuki Blues by lassekongo83
|
||||
# This theme is 100% free and open source
|
||||
|
||||
border.color: #4C6C8B
|
||||
border.width: 1
|
||||
menu.border.color: #9D9D9D
|
||||
menu.items.active.bg: Gradient SplitVertical Raised Bevel2
|
||||
menu.items.active.bg.color: #6196B3
|
||||
menu.items.active.bg.colorTo: #3F6A84
|
||||
menu.items.active.bg.border.color: #EFEBE7
|
||||
menu.items.active.text.color: #F8F8F8
|
||||
menu.items.bg: flat border solid
|
||||
menu.items.bg.color: #EEEEEC
|
||||
menu.items.bg.border.color: #EFEBE7
|
||||
menu.items.disabled.text.color: #BABDB6
|
||||
menu.items.text.color: #444444
|
||||
menu.overlap: 0
|
||||
menu.title.bg: Gradient SplitVertical Raised Bevel2
|
||||
menu.title.bg.color: #6196B3
|
||||
menu.title.bg.colorTo: #3F6A84
|
||||
menu.title.bg.border.color: #EFEBE7
|
||||
menu.title.text.color: #F8F8F8
|
||||
menu.items.active.bg: Gradient Vertical Flat
|
||||
menu.items.active.bg.color: #7E9EBD
|
||||
menu.items.active.bg.colorTo: #4C6C8B
|
||||
menu.items.active.disabled.text.color: #4C6C8B
|
||||
menu.items.active.text.color: #f5f5f5
|
||||
menu.items.bg: Solid Flat
|
||||
menu.items.bg.color: #DCDCDC
|
||||
menu.items.disabled.text.color: #555555
|
||||
menu.items.font: shadow=n
|
||||
menu.items.text.color: #3C3C3C
|
||||
menu.overlap.x: 1
|
||||
menu.separator.color: #aaaaaa
|
||||
menu.separator.padding.width: 10
|
||||
menu.title.bg: Gradient Vertical Flat
|
||||
menu.title.bg.color: #ADC7E1
|
||||
menu.title.bg.colorTo: #82A1BF
|
||||
menu.title.text.color: #f5f5f5
|
||||
menu.title.text.font: shadow=y:shadowtint=100:shadowoffset=1
|
||||
menu.title.text.justify: center
|
||||
padding.width: 2
|
||||
window.active.border.color: #404040
|
||||
osd.bg: flat solid
|
||||
osd.bg.color: #dcdcdc
|
||||
osd.border.color: #555555
|
||||
osd.border.width: 1
|
||||
osd.hilight.bg: flat gradient vertical
|
||||
osd.hilight.bg.color: #A7C4E0
|
||||
osd.hilight.bg.colorTo: #7E9EBD
|
||||
osd.label.text.color: #3c3c3c
|
||||
osd.unhilight.bg: flat gradient vertical
|
||||
osd.unhilight.bg.color: #7E9EBD
|
||||
osd.unhilight.bg.colorTo: #4C6C8B
|
||||
padding.height: 3
|
||||
padding.width: 5
|
||||
window.active.button.disabled.bg: parentrelative
|
||||
window.active.button.disabled.image.color: #707070
|
||||
window.active.button.hover.image.color: #FFFFFF
|
||||
window.active.button.disabled.image.color: #768FA7
|
||||
window.active.button.hover.image.color: #C7E4FF
|
||||
window.active.button.pressed.bg: parentrelative
|
||||
window.active.button.pressed.image.color: #FFFFFF
|
||||
window.active.button.toggled.image.color: #E0E0E0
|
||||
window.active.button.toggled.pressed.image.color: #E0E0E0
|
||||
window.active.button.pressed.image.color: #516980
|
||||
window.active.button.toggled.image.color: #f5f5f5
|
||||
window.active.button.unpressed.bg: parentrelative
|
||||
window.active.button.unpressed.image.color: #E0E0E0
|
||||
window.active.client.color: #DEE0D8
|
||||
window.active.grip.bg: parentrelative
|
||||
window.active.handle.bg: raised solid
|
||||
window.active.handle.bg.color: #E7E7E7
|
||||
window.active.button.unpressed.image.color: #f5f5f5
|
||||
window.active.grip.bg: Solid Flat
|
||||
window.active.grip.bg.color: #7E9EBD
|
||||
window.active.handle.bg: Gradient Vertical Flat
|
||||
window.active.handle.bg.color: #7E9EBD
|
||||
window.active.handle.bg.colorTo: #4C6C8B
|
||||
window.active.label.bg: parentrelative
|
||||
window.active.label.text.color: #F8F8F8
|
||||
window.active.title.bg: Gradient SplitVertical Raised Bevel2
|
||||
window.active.title.bg.color: #6196B3
|
||||
window.active.title.bg.colorTo: #3F6A84
|
||||
window.active.title.bg.border.color: #EFEBE7
|
||||
window.active.title.separator.color: #444444
|
||||
window.active.label.text.color: #f5f5f5
|
||||
window.active.label.text.font: shadow=y:shadowtint=50:shadowoffset=1
|
||||
window.active.title.bg: flat Gradient SplitVertical
|
||||
window.active.title.bg.color: #95ACC2
|
||||
window.active.title.bg.splitTo: #9EB9D5
|
||||
window.active.title.bg.colorTo: #90adca
|
||||
window.active.title.bg.colorTo.splitTo: #7E9EBC
|
||||
window.active.title.bg.shadow: 0
|
||||
window.active.title.separator.color: #81a0be
|
||||
window.client.padding.width: 0
|
||||
window.handle.width: 3
|
||||
window.handle.width: 2
|
||||
window.inactive.button.disabled.bg: parentrelative
|
||||
window.inactive.button.disabled.image.color: #707070
|
||||
window.inactive.button.hover.image.color: #FFFFFF
|
||||
window.inactive.button.disabled.image.color: #768FA7
|
||||
window.inactive.button.hover.image.color: #4C6C8B
|
||||
window.inactive.button.pressed.bg: parentrelative
|
||||
window.inactive.button.pressed.image.color: #FFFFFF
|
||||
window.inactive.button.toggled.image.color: #E0E0E0
|
||||
window.inactive.button.toggled.pressed.image.color: #E0E0E0
|
||||
window.inactive.button.pressed.image.color: #516980
|
||||
window.inactive.button.toggled.image.color: #e5e5e5
|
||||
window.inactive.button.unpressed.bg: parentrelative
|
||||
window.inactive.button.unpressed.image.color: #E0E0E0
|
||||
window.inactive.client.color: #DEE0D8
|
||||
window.inactive.grip.bg: parentrelative
|
||||
window.inactive.handle.bg: raised solid
|
||||
window.inactive.handle.bg.color: #E7E7E7
|
||||
window.inactive.button.unpressed.image.color: #e5e5e5
|
||||
window.inactive.grip.bg: Solid Flat
|
||||
window.inactive.grip.bg.color: #7E9EBD
|
||||
window.inactive.handle.bg: Gradient Vertical Flat Border
|
||||
window.inactive.handle.bg.color: #7E9EBD
|
||||
window.inactive.handle.bg.colorTo: #4C6C8B
|
||||
window.inactive.handle.bg.border.color: #4C6C8B
|
||||
window.inactive.label.bg: parentrelative
|
||||
window.inactive.label.text.color: #F8F8F8
|
||||
window.inactive.title.bg: Gradient SplitVertical Raised Bevel2
|
||||
window.inactive.title.bg.color: #98AAB3
|
||||
window.inactive.title.bg.colorTo: #707D84
|
||||
window.inactive.title.bg.border.color: #EFEBE7
|
||||
window.inactive.title.separator.color: #777777
|
||||
window.inactive.label.text.color: #D4D4D4
|
||||
window.inactive.label.text.font: shadow=y:shadowtint=50:shadowoffset=1
|
||||
window.inactive.title.bg: flat Gradient SplitVertical
|
||||
window.inactive.title.bg.color: #95ACC2
|
||||
window.inactive.title.bg.splitTo: #9EB9D5
|
||||
window.inactive.title.bg.colorTo: #90adca
|
||||
window.inactive.title.bg.colorTo.splitTo: #7E9EBC
|
||||
window.inactive.title.bg.shadow: 0
|
||||
window.inactive.title.separator.color: #81a0be
|
||||
window.label.text.justify: center
|
||||
|