ubuntu/cosmic
ubuntu/1.2
parent
d281ee15ef
commit
fe78515c16
@ -0,0 +1,4 @@
|
|||||||
|
#define close_width 8
|
||||||
|
#define close_height 8
|
||||||
|
static unsigned char close_bits[] = {
|
||||||
|
0xc3, 0xe7, 0x7e, 0x3c, 0x3c, 0x7e, 0xe7, 0xc3 };
|
@ -0,0 +1,4 @@
|
|||||||
|
#define desk_toggled_width 8
|
||||||
|
#define desk_toggled_height 8
|
||||||
|
static unsigned char desk_toggled_bits[] = {
|
||||||
|
0xe7, 0xe7, 0xe7, 0x00, 0x00, 0xe7, 0xe7, 0xe7 };
|
@ -0,0 +1,4 @@
|
|||||||
|
#define desk_width 8
|
||||||
|
#define desk_height 8
|
||||||
|
static unsigned char desk_bits[] = {
|
||||||
|
0x04, 0x0e, 0x3f, 0x1e, 0x1c, 0x24, 0x40, 0x80 };
|
@ -0,0 +1,4 @@
|
|||||||
|
#define iconify_width 8
|
||||||
|
#define iconify_height 8
|
||||||
|
static unsigned char iconify_bits[] = {
|
||||||
|
0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00 };
|
@ -0,0 +1,4 @@
|
|||||||
|
#define titlebutton_max_2_width 8
|
||||||
|
#define titlebutton_max_2_height 8
|
||||||
|
static unsigned char titlebutton_max_2_bits[] = {
|
||||||
|
0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f };
|
@ -0,0 +1,4 @@
|
|||||||
|
#define titlebutton_max_2_width 8
|
||||||
|
#define titlebutton_max_2_height 8
|
||||||
|
static unsigned char titlebutton_max_2_bits[] = {
|
||||||
|
0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f };
|
@ -0,0 +1,4 @@
|
|||||||
|
#define shade_width 8
|
||||||
|
#define shade_height 8
|
||||||
|
static unsigned char shade_bits[] = {
|
||||||
|
0x18, 0x3c, 0x7e, 0xff, 0xdb, 0x18, 0x18, 0x18 };
|
@ -0,0 +1,4 @@
|
|||||||
|
#define shade_toggled_width 8
|
||||||
|
#define shade_toggled_height 8
|
||||||
|
static unsigned char shade_toggled_bits[] = {
|
||||||
|
0x18, 0x18, 0x18, 0xdb, 0xff, 0x7e, 0x3c, 0x18 };
|
@ -0,0 +1,134 @@
|
|||||||
|
# LubuntuArc Openbox theme
|
||||||
|
# Copyright (C) 2015 Dino Duratović <dinomol at mail dot com>
|
||||||
|
#
|
||||||
|
# Inspired by and made for horst3180's Arc GTK theme
|
||||||
|
# https://github.com/horst3180/Arc-theme
|
||||||
|
#
|
||||||
|
# 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 3 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
### WINDOW
|
||||||
|
border.width: 1
|
||||||
|
|
||||||
|
window.client.padding.width: 0
|
||||||
|
window.client.padding.height: 0
|
||||||
|
window.handle.width: 0
|
||||||
|
|
||||||
|
padding.width: 4
|
||||||
|
padding.height: 4
|
||||||
|
|
||||||
|
window.active.border.color: #2d3036
|
||||||
|
window.inactive.border.color: #2d3036
|
||||||
|
window.active.title.separator.color: #2f343f
|
||||||
|
window.inactive.title.separator.color: #2f343f
|
||||||
|
window.active.client.color: #2d3036
|
||||||
|
window.inactive.client.color: #2d3036
|
||||||
|
|
||||||
|
window.active.label.text.color: #D3DAE3
|
||||||
|
window.inactive.label.text.color: #7F8388
|
||||||
|
|
||||||
|
window.active.button.unpressed.image.color: #D3DAE3
|
||||||
|
window.active.button.pressed.image.color: #5294E2
|
||||||
|
window.active.button.disabled.image.color: #2d3036
|
||||||
|
window.active.button.hover.image.color: #afb8c5
|
||||||
|
window.active.button.toggled.unpressed.image.color: #D3DAE3
|
||||||
|
window.active.button.toggled.pressed.image.color: #5294E2
|
||||||
|
window.active.button.toggled.hover.image.color: #afb8c5
|
||||||
|
window.inactive.button.unpressed.image.color: #1F2328
|
||||||
|
window.inactive.button.pressed.image.color: #5294E2
|
||||||
|
window.inactive.button.disabled.image.color: #2d3036
|
||||||
|
window.inactive.button.hover.image.color: #afb8c5
|
||||||
|
window.inactive.button.toggled.unpressed.image.color: #1F2328
|
||||||
|
window.inactive.button.toggled.pressed.image.color: #5294E2
|
||||||
|
window.inactive.button.toggled.hover.image.color: #afb8c5
|
||||||
|
|
||||||
|
window.active.title.bg: flat solid
|
||||||
|
window.active.title.bg.color: #2f343f
|
||||||
|
window.active.label.bg: flat solid
|
||||||
|
window.active.label.bg.color: #2f343f
|
||||||
|
#window.active.handle.bg: texture
|
||||||
|
#window.active.grip.bg: texture
|
||||||
|
window.inactive.title.bg: flat solid
|
||||||
|
window.inactive.title.bg.color: #2f343f
|
||||||
|
window.inactive.label.bg: flat solid
|
||||||
|
window.inactive.label.bg.color: #2f343f
|
||||||
|
#window.inactive.handle.bg: texture
|
||||||
|
#window.inactive.grip.bg: texture
|
||||||
|
|
||||||
|
window.active.button.unpressed.bg: parentrelative
|
||||||
|
window.active.button.pressed.bg: parentrelative
|
||||||
|
window.active.button.hover.bg: parentrelative
|
||||||
|
window.active.button.disabled.bg: parentrelative
|
||||||
|
window.active.button.toggled.unpressed.bg: parentrelative
|
||||||
|
window.active.button.toggled.pressed.bg: parentrelative
|
||||||
|
window.active.button.toggled.hover.bg: parentrelative
|
||||||
|
window.inactive.button.unpressed.bg: parentrelative
|
||||||
|
window.inactive.button.pressed.bg: parentrelative
|
||||||
|
window.inactive.button.hover.bg: parentrelative
|
||||||
|
window.inactive.button.disabled.bg: parentrelative
|
||||||
|
window.inactive.button.toggled.unpressed.bg: parentrelative
|
||||||
|
window.inactive.button.toggled.pressed.bg: parentrelative
|
||||||
|
window.inactive.button.toggled.hover.bg: parentrelative
|
||||||
|
|
||||||
|
window.label.text.justify: center
|
||||||
|
|
||||||
|
#window.active.label.text.font: text shadow
|
||||||
|
#window.inactive.label.text.font: text shadow
|
||||||
|
|
||||||
|
### MENU
|
||||||
|
menu.border.width: 0
|
||||||
|
menu.separator.width: 1
|
||||||
|
menu.separator.padding.width: 10
|
||||||
|
menu.separator.padding.height: 2
|
||||||
|
|
||||||
|
menu.overlap.x: 0
|
||||||
|
menu.overlap.y: 0
|
||||||
|
|
||||||
|
menu.border.color: #aeb0b6
|
||||||
|
menu.separator.color: #a8adb5
|
||||||
|
|
||||||
|
menu.title.text.color: #D3DAE3
|
||||||
|
menu.items.text.color: #a8adb5
|
||||||
|
menu.items.disabled.text.color: #76797F
|
||||||
|
menu.items.active.text.color: #ffffff
|
||||||
|
menu.items.active.disabled.text.color: #aeb0b6
|
||||||
|
|
||||||
|
menu.items.bg: flat solid
|
||||||
|
menu.items.bg.color: #454a54
|
||||||
|
menu.items.active.bg: flat solid
|
||||||
|
menu.items.active.bg.color: #5294E2
|
||||||
|
menu.title.bg: flat solid
|
||||||
|
menu.title.bg.color: #2d3036
|
||||||
|
|
||||||
|
menu.title.text.justify: center
|
||||||
|
|
||||||
|
#menu.items.font: text shadow
|
||||||
|
#menu.title.text.font: text shadow
|
||||||
|
|
||||||
|
### OSD
|
||||||
|
osd.border.width: 1
|
||||||
|
|
||||||
|
osd.border.color: #2d3036
|
||||||
|
|
||||||
|
osd.label.text.color: #D3DAE3
|
||||||
|
|
||||||
|
osd.bg: flat solid
|
||||||
|
osd.bg.color: #2f343f
|
||||||
|
osd.label.bg: flat solid
|
||||||
|
osd.label.bg.color: #2f343f
|
||||||
|
osd.hilight.bg: flat solid
|
||||||
|
osd.hilight.bg.color: #5294E2
|
||||||
|
osd.unhilight.bg: flat solid
|
||||||
|
osd.unhilight.bg.color: #000000
|
||||||
|
|
||||||
|
#osd.label.text.font: text shadow
|
Loading…
Reference in new issue