diff --git a/src/build_theme.sh b/src/build_theme.sh index 9abaa97..eb9382d 100755 --- a/src/build_theme.sh +++ b/src/build_theme.sh @@ -1,53 +1,56 @@ #!/bin/bash create_folders () { FOLDERS=(gtk-2.0 gtk-3.0 gtk-3.18 gtk-3.20) for j in "${FOLDERS[@]}" do if ! [ -d "$1/$j" ] then mkdir -p "$1/$j"; fi done } build_sass() { if command -v sassc &>/dev/null then sassc "$1" "$2" else sass --cache-location /tmp/sass-cache "$1" "$2" fi } render_theme () { python3 render_assets.py "$1" create_folders "$2" build_sass gtk316/gtk.scss "$2/gtk-3.0/gtk.css" build_sass gtk318/gtk.scss "$2/gtk-3.18/gtk.css" build_sass gtk320/gtk.scss "$2/gtk-3.20/gtk.css" mv assets "$2/" cp -R gtk2/* "$2/gtk-2.0/" if [ -d "$HOME/.local/share/themes/$2" ] then rm -rf "$HOME/.local/share/themes/$2"; fi mv -f "$2" "$HOME/.local/share/themes/" } if [ -z "$1" ] then if [ -f "$HOME/.config/kdeglobals" ] then render_theme "$HOME/.config/kdeglobals" Breeze else echo "$HOME/.config/kdeglobals not found, using defaults" render_theme schemes/Breeze.colors Breeze fi else - if [ -f "schemes/$1.colors" ] - then - render_theme "schemes/$1.colors" "$1" + if [ -f "/usr/share/color-schemes/$1.colors" ] + then + render_theme "/usr/share/color-schemes/$1.colors" "$1" + elif [ -f "$HOME/.local/share/color-schemes/$1.colors" ] + then + render_theme "$HOME/.local/share/color-schemes/$1.colors" "$1" else echo "colorscheme $1 not found" fi fi diff --git a/src/render_assets.py b/src/render_assets.py index b1149d7..0e4641e 100644 --- a/src/render_assets.py +++ b/src/render_assets.py @@ -1,787 +1,787 @@ #!/usr/bin/env python3 import cairo import colorsys from math import pi import os import errno import sys import re def make_sure_path_exists(path): try: os.makedirs(path) except FileExistsError as exception: pass pass class ReadKdeGlobals(): def __init__(self): self._colors = {} - self._colors = self.read_globals('schemes/Breeze.colors') + self._colors = self.read_globals('/usr/share/color-schemes/Breeze.colors') def read_globals(self,filename): with open(filename, 'r') as _kde: for widget in ['Disabled', 'Inactive','Button', 'Selection', 'Tooltip', 'View', 'Window', 'WM']: for line in _kde: if line.strip().split(':')[-1].strip('[]') == widget: break for line in _kde: if line == '\n': break key = '{0}{1}'.format(widget,line.strip().split('=')[0]) value = line.strip().split('=')[1] if value == '': continue self._colors[key] = value return self._colors class Color(object): def __init__(self, colordict,name,name2=None,amount=0): color = colordict[name] self.colordict = colordict r = float(color.split(',')[0]) g = float(color.split(',')[1]) b = float(color.split(',')[2]) if not name2 is None: color2 = colordict[name2] r = r * amount + float(color2.split(',')[0]) * (1 - amount) g = g * amount + float(color2.split(',')[1]) * (1 - amount) b = b * amount + float(color2.split(',')[2]) * (1 - amount) self.rgb255 = (int(r),int(g),int(b)) self.rgb = (r/255,g/255,b/255) self.html = '#%02x%02x%02x' % self.rgb255 self.insensitive = self._color_effect(self._intensity_effect(self.rgb,'Disabled'),'Disabled') self.insensitive_alpha = self._contrast_effect(self.rgb,'Disabled') if self.colordict['InactiveEnable'] == 'false': self.inactive = self.rgb self.inactive_alpha = 1.0 else: self.inactive = self._color_effect(self._intensity_effect(self.rgb,'Inactive'),'Inactive') self.inactive_alpha = self._contrast_effect(self.rgb,'Inactive') self.inactive_insensitive = self._color_effect(self._intensity_effect(self.inactive,'Disabled'),'Disabled') self.inactive_insensitive_alpha = max(self.inactive_alpha - (1 - self.insensitive_alpha),0) def _mix(self,color, mix_color, amount): r = color[0] * amount + mix_color[0] * (1 - amount) g = color[1] * amount + mix_color[1] * (1 - amount) b = color[2] * amount + mix_color[2] * (1 - amount) return (r,g,b) def _lighter(self,color,amount): h,s,v = colorsys.rgb_to_hsv(color[0],color[1],color[2]) v = min((1+amount)*v,1) r,g,b = colorsys.hsv_to_rgb(h,s,v) return (r,g,b) def _darker(self,color,amount): h,s,v = colorsys.rgb_to_hsv(color[0],color[1],color[2]) if amount == -1: v = 1 else: v = min(v/(1+amount),1) r,g,b = colorsys.hsv_to_rgb(h,s,v) return (r,g,b) def _desaturate(self,color,amount): h,s,v = colorsys.rgb_to_hsv(color[0],color[1],color[2]) s = min(s * (1 - amount),1) r,g,b = colorsys.hsv_to_rgb(h,s,v) return (r,g,b) def _intensity_effect(self,color,state): effect = int(self.colordict[state + 'IntensityEffect']) amount = float(self.colordict[state + 'IntensityAmount']) if effect == 0: (r,g,b) = color elif effect == 1: if amount >= 0: (r,g,b) = self._mix((1.0,1.0,1.0),color,amount) else: (r,g,b) = self._mix((0.0,0.0,0.0),color,amount) elif effect == 2: (r,g,b) = self._darker(color,amount) elif effect == 3: (r,g,b) = self._lighter(color,amount) return (r,g,b) def _color_effect(self,color,state): effect = int(self.colordict[state + 'ColorEffect']) amount = float(self.colordict[state + 'ColorAmount']) effect_color = self.colordict[state + 'Color'] effect_color = (float(effect_color.split(',')[0])/255,float(effect_color.split(',')[1])/255,float(effect_color.split(',')[2])/255) if effect == 0: (r,g,b) = color elif effect == 1: (r,g,b) = self._desaturate(color,amount) else: (r,g,b) = self._mix(effect_color,color,amount) return (r,g,b) def _contrast_effect(self,color,state): effect = int(self.colordict[state + 'ContrastEffect']) amount = float(self.colordict[state + 'ContrastAmount']) if effect == 0: return 1.0 else: return 1.0 - amount def lighten_color(self,amount): h,s,v = colorsys.rgb_to_hsv(self.rgb[0], self.rgb[1], self.rgb[2]) v = (1+amount)*v r,g,b = colorsys.hsv_to_rgb(h,s,v) self.rgb = (r,g,b) self.rgb255 = (int(r*255),int(g*255),int(b*255)) def gradient(self,state='',alpha=1.0): if state == 'active': stop1 = self._lighter(self.rgb,0.03) stop2 = self._darker(self.rgb,0.10) linear = cairo.LinearGradient(1, 1, 1, 19) linear.add_color_stop_rgba(0.0,stop1[0],stop1[1],stop1[2],alpha) linear.add_color_stop_rgba(1.0,stop2[0],stop2[1],stop2[2],alpha) else: stop1 = self._lighter(self.rgb,0.01) stop2 = self._darker(self.rgb,0.03) linear = cairo.LinearGradient(1, 1, 1, 19) linear.add_color_stop_rgba(0.0,stop1[0],stop1[1],stop1[2],alpha) linear.add_color_stop_rgba(1.0,stop2[0],stop2[1],stop2[2],alpha) return linear class Assets(object): def __init__(self,width,height,scl=1, rotation=0, filename='png'): self.w = width; self.h = height if filename == 'png': self.surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, scl*width, scl*height) else: self.surface = cairo.SVGSurface('assets/' + filename, scl*width, scl*height) cr = self.cr = cairo.Context(self.surface) if rotation != 0: cr.translate(scl*width/2,scl*height/2) cr.rotate(rotation*pi/2) cr.translate(-scl*width/2,-scl*height/2) cr.scale(scl,scl) def background(self,color): self.cr.rectangle(0,0,self.w,self.h) self.cr.set_source_rgb(color[0],color[1],color[2]) self.cr.fill() def line(self,color,x,y,width,height): self.cr.rectangle(x,y,width,height) self.cr.set_source_rgb(color[0],color[1],color[2]) self.cr.fill() def rounded_rectancle(self, color, width, height, x, y, radius, alpha=1.0, gradient=False): self.cr.new_sub_path() self.cr.arc(x + width - radius, y + radius, radius, -pi/2, 0) self.cr.arc(x + width - radius, y + height - radius, radius, 0, pi/2) self.cr.arc(x + radius, y + height - radius, radius, pi/2, pi) self.cr.arc(x + radius, y + radius, radius, pi, 3*pi/2) self.cr.close_path() if gradient: self.cr.set_source(color) elif color == None: self.cr.set_operator(cairo.OPERATOR_CLEAR) elif color == 'shadow': self.cr.set_source_rgba(0.0,0.0,0.0, 0.15) else: self.cr.set_source_rgba(color[0],color[1],color[2], alpha) self.cr.fill() def rounded_triangle(self, color, width, height, x, y, radius, alpha=1.0): self.cr.new_sub_path() self.cr.move_to(x + width, y) self.cr.line_to(x + width, y + height - radius) self.cr.arc(x + width - radius, y + height - radius,radius, 0, pi/2) self.cr.line_to(x, y + height) self.cr.close_path() self.cr.set_source_rgba(color[0],color[1],color[2], alpha) self.cr.fill() def circle(self, color, x, y, radius, alpha=1.0, gradient=False): self.cr.new_sub_path() self.cr.arc(x, y, radius, 0, 2*pi) self.cr.close_path() if gradient: self.cr.set_source(color) elif color == None: self.cr.set_operator(cairo.OPERATOR_CLEAR) elif color == 'shadow': self.cr.set_source_rgba(0.0,0.0,0.0, 0.15) else: self.cr.set_source_rgba(color[0],color[1],color[2], alpha) self.cr.fill() def half_circle(self, color, x, y, radius, alpha=1.0): self.cr.new_sub_path() self.cr.arc(x, y, radius, -pi/4, 3*pi/4) self.cr.close_path() self.cr.set_source_rgba(color[0],color[1],color[2],alpha) self.cr.fill() def arrow(self, color, alpha=1.0, shiftx=0, shifty=0): self.cr.new_sub_path() self.cr.move_to(shiftx + 1,shifty + 8) self.cr.line_to(shiftx + 6,shifty + 3) self.cr.line_to(shiftx + 11,shifty + 8) self.cr.set_source_rgba(color[0],color[1],color[2],alpha) self.cr.set_line_width(1.0) self.cr.stroke() def arrow_small(self, color,alpha=1.0): self.cr.new_sub_path() self.cr.move_to(1,6) self.cr.line_to(4,3) self.cr.line_to(7,6) self.cr.set_source_rgba(color[0],color[1],color[2], alpha) self.cr.set_line_width(1.0) self.cr.stroke() def tab(self, color, width, height, x, y, radius, alpha=1.0): self.cr.move_to(width + x, y) self.cr.line_to(width + x, height - radius + y) self.cr.arc(width - radius + x, height - radius + y, radius, 0, pi/2) self.cr.line_to(radius + x, height + y) self.cr.arc(radius + x,height - radius + y,radius,pi/2,pi) self.cr.line_to(x,y) self.cr.close_path if color == None: self.cr.set_operator(cairo.OPERATOR_CLEAR) else: self.cr.set_source_rgba(color[0],color[1],color[2], alpha) self.cr.fill() def spinbutton(self, color, width, height, x, y, radius,alpha=1.0): self.cr.move_to(width + x, y) self.cr.line_to(width + x, height - radius + y) self.cr.arc(width - radius + x, height - radius + y, radius, 0, pi/2) self.cr.line_to(x, height + y) self.cr.line_to(x,y) self.cr.close_path() if color == None: self.cr.set_operator(cairo.OPERATOR_CLEAR) else: self.cr.set_source_rgba(color[0],color[1],color[2],alpha) self.cr.fill() def notebook(self, color, width, height, x, y, radius): self.cr.move_to(x, y) self.cr.line_to(x + width - radius, y) self.cr.arc(x + width - radius, y + radius, radius, -pi/2, 0) self.cr.line_to(x + width, y + height-radius) self.cr.arc(x + width - radius, y + height - radius, radius, 0, pi/2) self.cr.line_to(x + radius,y + height) self.cr.arc(x + radius, y + height -radius, radius, pi/2, pi) self.cr.close_path() self.cr.set_source_rgb(color[0],color[1],color[2]) self.cr.fill() def minimize(self,color=None): self.cr.move_to(4,7) self.cr.line_to(9,12) self.cr.line_to(14,7) if color == None: self.cr.set_operator(cairo.OPERATOR_CLEAR) else: self.cr.set_source_rgb(color[0],color[1],color[2]) self.cr.set_line_width(1.0) self.cr.stroke() def maximize(self,color=None): self.cr.move_to(4,11) self.cr.line_to(9,6) self.cr.line_to(14,11) if color == None: self.cr.set_operator(cairo.OPERATOR_CLEAR) else: self.cr.set_source_rgb(color[0],color[1],color[2]) self.cr.set_line_width(1.0) self.cr.stroke() def maximize_maximized(self,color=None): self.cr.move_to(4.5,9) self.cr.line_to(9,4.5) self.cr.line_to(13.5,9) self.cr.line_to(9,13.5) self.cr.close_path() if color == None: self.cr.set_operator(cairo.OPERATOR_CLEAR) else: self.cr.set_source_rgb(color[0],color[1],color[2]) self.cr.set_line_width(1.0) self.cr.stroke() def close(self,color=None): self.cr.move_to(5,5) self.cr.line_to(13,13) self.cr.move_to(13,5) self.cr.line_to(5,13) if color == None: self.cr.set_operator(cairo.OPERATOR_CLEAR) else: self.cr.set_source_rgb(color[0],color[1],color[2]) self.cr.set_line_width(1.0) self.cr.stroke() def save(self, filename): self.surface.write_to_png('assets/' + filename) def check_items(color1,color2,state,alpha=1.0): for scl in [1,2]: if scl == 2: ending = '@2.png' else: ending = '.png' # checkboxes box = Assets(20,20,scl) box.rounded_rectancle('shadow',18,18,2,2,3) box.rounded_rectancle(color2,18,18,1,1,3) box.rounded_rectancle(color1,18,18,1,1,3,alpha=alpha) box.rounded_rectancle(color2,16,16,2,2,2) box.save('check-unchecked' + state + ending) if state != '': box.rounded_rectancle(color1,12,12,4,4,1,alpha=alpha) box.save('check-checked' + state + ending) box.rounded_triangle(color2,8,8,6,6,1,alpha=alpha) box.save('check-mixed' + state + ending) # radio radio = Assets(20,20,scl) radio.circle('shadow',11,11,9) radio.circle(color2,10,10,9) radio.circle(color1,10,10,9,alpha=alpha) radio.circle(color2,10,10,8) radio.save('radio-unchecked' + state + ending) if state != '': radio.circle(color1,10,10,6,alpha=alpha) radio.save('radio-checked' + state + ending) radio.half_circle(color2,10,10,4,alpha=alpha) radio.save('radio-mixed' + state + ending) # selectionmode selectionmode = Assets(40,40,scl) selectionmode.rounded_rectancle('shadow',18,18,12,12,3) selectionmode.rounded_rectancle(color2,18,18,11,11,3) selectionmode.rounded_rectancle(color1,18,18,11,11,3,alpha=alpha) selectionmode.rounded_rectancle(color2,16,16,12,12,2) selectionmode.save('check-selectionmode-unchecked' + state + ending) if state != '': selectionmode.rounded_rectancle(color1,12,12,14,14,1,alpha=alpha) selectionmode.save('check-selectionmode-checked' + state + ending) def buttons(color1,color2,color3,state,alpha=1.0): button = Assets(20,20) button.rounded_rectancle('shadow',18,18,2,2,3) button.rounded_rectancle(color1,18,18,1,1,3) button.rounded_rectancle(color2,18,18,1,1,3,alpha=alpha) if state == '-active': button.rounded_rectancle(color3,18,18,1,1,3, gradient=True) else: button.rounded_rectancle(color1,16,16,2,2,2) button.rounded_rectancle(color3,16,16,2,2,2, gradient=True) button.save('button' + state + '.png') def togglebuttons(color1,color2,color3,state,alpha=1.0): button = Assets(20,20) button.rounded_rectancle(color1,18,18,1,1,3) button.rounded_rectancle(color2,18,18,1,1,3,alpha=alpha) if state == '-active': button.rounded_rectancle(color3,18,18,1,1,3, gradient=True) else: button.rounded_rectancle(color1,16,16,2,2,2) button.rounded_rectancle(color3,16,16,2,2,2, gradient=True) button.save('togglebutton' + state + '.png') def scale_slider(color1,color2,color3,state,alpha=1.0): scale = Assets(20,20) scale.circle(color1,10,10,10) scale.circle(color2,10,10,10,alpha=alpha) scale.circle(color1,10,10,9) scale.circle(color3,10,10,9,gradient=True) scale.save('scale-slider' + state + '.png') def scale_trough(color): trough_h = Assets(20,20) trough_h.rounded_rectancle(color,20,6,0,7,3) trough_h.save('scale-trough-horizontal.png') trough_h = Assets(20,20) trough_h.rounded_rectancle(color,6,20,7,0,3) trough_h.save('scale-trough-vertical.png') def tabs(color1,color2,state): if state == '-inactive': alpha = 0.2 else: alpha = 1.0 direction = ['-bottom','-left','-top','-right'] for i in range(0,4): tab = Assets(20,20,rotation=i) tab.tab(color1,20,20,0,0,3,alpha) if state == '-active': tab.tab(color2,18,19,1,0,2) tab.save('tab' + direction[i] + state + '.png') def arrows(color,state,alpha=1.0): direction = ['-up','-right','-down','-left'] for i in range(0,4): arw = Assets(12,12,rotation=i) arw.arrow(color,alpha) arw.save('arrow' + direction[i] + state + '.png') arw = Assets(8,8,rotation=i) arw.arrow_small(color,alpha) arw.save('arrow-small' + direction[i] + state + '.png') def menu_arrow(color,state,alpha=1.0): arrow = Assets(12,12,rotation=1) arrow.arrow(color,alpha) arrow.save('menu-arrow' + state + '.png') def scrollbar_slider(color1,color2,color3): for scl in [1,2]: if scl == 2: ending = '@2.png' else: ending = '.png' slider = Assets(30,20,scl) slider.rounded_rectancle(color1,30,10,0,5,5,1) slider.save('scrollbar-slider-horizontal-active' + ending) slider = Assets(30,20,scl) slider.rounded_rectancle(color2,30,6,0,7,3,1) slider.save('scrollbar-slider-horizontal-hover' + ending) slider = Assets(30,20,scl) slider.rounded_rectancle(color3,30,6,0,7,3,1) slider.save('scrollbar-slider-horizontal' + ending) slider = Assets(20,30,scl) slider.rounded_rectancle(color1,10,30,5,0,5,1) slider.save('scrollbar-slider-vertical-active' + ending) slider = Assets(20,30,scl) slider.rounded_rectancle(color2,6,30,7,0,3,1) slider.save('scrollbar-slider-vertical-hover' + ending) slider = Assets(20,30,scl) slider.rounded_rectancle(color3,6,30,7,0,3,1) slider.save('scrollbar-slider-vertical' + ending) def scrollbar_trough(color): for scl in [1,2]: if scl == 2: ending = '@2.png' else: ending = '.png' trough = Assets(56,20,scl) trough.rounded_rectancle(color,49,6,3.5,7,3,0.3) trough.save('scrollbar-trough-horizontal' + ending) trough = Assets(20,56,scl) trough.rounded_rectancle(color,6,49,7,3.5,3,0.3) trough.save('scrollbar-trough-vertical' + ending) def titlebuttons(color1,color2,state): for scl in [1,2]: if scl == 2: ending = '@2.png' else: ending = '.png' title_minimize = Assets(18,18,scl) title_maximize = Assets(18,18,scl) title_maximized = Assets(18,18,scl) if state == '' or state == '-backdrop': title_minimize.minimize(color1) title_maximize.maximize(color1) title_maximized.maximize_maximized(color1) else: title_minimize.circle(color1,9,9,9) title_maximize.circle(color1,9,9,9) title_maximized.circle(color1,9,9,9) title_minimize.minimize() title_maximize.maximize() title_maximized.maximize_maximized() title_minimize.save('titlebutton-minimize' + state + ending) title_maximize.save('titlebutton-maximize' + state + ending) title_maximized.save('titlebutton-maximize-maximized' + state + ending) title_close = Assets(18,18,scl) title_close.circle(color2,9,9,9) title_close.close() title_close.save('titlebutton-close' + state + ending) def entry(color1,color2,color3,state,alpha=1.0): entry = Assets(20,20) entry.background(color1) entry.rounded_rectancle(color2,18,18,1,1,3,alpha=alpha) entry.rounded_rectancle(color3,16,16,2,2,2) entry.rounded_rectancle(color3,16,16,2,2,2) entry.save('entry' + state + '.png') entry = Assets(20,20,rotation=1) entry.background(color1) entry.tab(color2,18,19,1,0,3,alpha=alpha) entry.tab(color3,16,18,2,0,2) entry.save('combo-entry' + state + '.png') entry_button = Assets(20,20,rotation=3) entry_button.background(color1) entry_button.tab(color2,18,19,1,0,3,alpha=alpha) entry_button.tab(color3,16,18,2,0,2) entry_button.save('combo-entry-button' + state + '.png') if state != '-active': direction = ['-down','-down-rtl','-up-rtl','-up'] for i in range(0,4): spin = Assets(20,20,rotation=i) spin.background(color1) spin.spinbutton(color2,19,19,0,0,3,alpha=alpha) spin.spinbutton(color3,18,18,0,0,2) spin.save('spinbutton' + direction[i] + state + '.png') def mixed(color1, color2,color3): nll = Assets(20,20) nll.save('null.png') # Frame frame = Assets(20,20) frame.rounded_rectancle(color1,20,20,0,0,3) frame.rounded_rectancle(color2,18,18,1,1,2) frame.save('frame.png') # Tree header header = Assets(20,20) header.background(color2) header.line(color1,0,19,20,1) header.line(color1,19,0,1,20) header.save('tree-header.png') # Notebook gap notebook_gap = Assets(4,2) notebook_gap.line(color2,1,0,2,2) notebook_gap.save('notebook-gap-horizontal.png') notebook_gap = Assets(2,4) notebook_gap.line(color2,0,1,2,2) notebook_gap.save('notebook-gap-vertical.png') # Notebook frame direction = ['-top','-right','-bottom','-bottom'] for i in range(0,4): notebook_frame = Assets(20,20,rotation=i) notebook_frame.notebook(color1,20,20,0,0,3) notebook_frame.notebook(color2,18,18,1,1,2) notebook_frame.save('notebook-frame' + direction[i] + '.png') # Frame gap frame_gap = Assets(2,1) frame_gap.line(color1,1,0,1,1) frame_gap.save('frame-gap-start.png') frame_gap = Assets(2,1) frame_gap.line(color1,0,0,1,1) frame_gap.save('frame-gap-end.png') # Lines lines = Assets(20,1) lines.line(color1,0,0,20,1) lines.save('line-h.png') lines = Assets(1,20) lines.line(color1,0,0,1,20) lines.save('line-v.png') lines = Assets(20,1) lines.line(color2,0,0,20,1) lines.save('handle-h.png') lines = Assets(1,20) lines.line(color2,0,0,1,20) lines.save('handle-v.png') menubar = Assets(20,20) menubar.line(color3,1,1,18,18) menubar.save('menubar-button.png') def toolbar(color1, color2, color3): # Toolbar background bar = Assets(20,20) bar.background(color2) bar.save('toolbar-background.png') # Toolbutton toggled toolbutton = Assets(20,20) toolbutton.rounded_rectancle(color1,18,18,1,1,3) toolbutton.save('toolbutton-toggled.png') # Toolbutton hover toolbutton = Assets(20,20) toolbutton.rounded_rectancle(color3,18,18,1,1,3) toolbutton.rounded_rectancle(color2,16,16,2,2,2) toolbutton.save('toolbutton-hover.png') # Toolbutton active toolbutton = Assets(20,20) toolbutton.rounded_rectancle(color3,18,18,1,1,3) toolbutton.save('toolbutton-active.png') def progressbar(color1, color2, state=''): bar = Assets(10,10) bar.rounded_rectancle(color1,10,10,0,0,3) bar.save('progressbar-bar' + state + '.png') trough = Assets(10,10) trough.rounded_rectancle(color2,10,10,0,0,3) trough.save('progressbar-trough' + state + '.png') def html(color): return '#%02x%02x%02x' % (int(color[0]*255),int(color[1]*255),int(color[2]*255)) def mix(color, mix_color, amount): r = color[0] * amount + mix_color[0] * (1 - amount) g = color[1] * amount + mix_color[1] * (1 - amount) b = color[2] * amount + mix_color[2] * (1 - amount) return (r,g,b) #___________________________________________________________________________________ if len(sys.argv) == 2: filename = sys.argv[1] else: filename = 'schemes/Breeze.colors' make_sure_path_exists('assets') _colors = ReadKdeGlobals().read_globals(filename) border_color = Color(_colors,'WindowBackgroundNormal','WindowForegroundNormal', 0.75) window_bg = Color(_colors,'WindowBackgroundNormal') window_fg = Color(_colors,'WindowForegroundNormal') check_color = Color(_colors,'WindowBackgroundNormal','WindowForegroundNormal',0.5) button_bg = Color(_colors,'ButtonBackgroundNormal') button_fg = Color(_colors,'ButtonForegroundNormal') button_hover = Color(_colors,'ButtonDecorationHover') button_active = Color(_colors,'ButtonDecorationFocus') selection_bg = Color(_colors,'SelectionBackgroundNormal') selection_fg = Color(_colors,'SelectionForegroundNormal') view_bg = Color(_colors,'ViewBackgroundNormal') view_fg = Color(_colors,'ViewForegroundNormal') view_hover = Color(_colors,'ViewDecorationHover') view_active = Color(_colors,'ViewDecorationFocus') titlebutton = Color(_colors,'WindowForegroundNormal') titlebutton_active = Color(_colors,'WindowBackgroundNormal','WindowForegroundNormal',0.3) closebutton_hover = Color(_colors,'ViewForegroundNegative');closebutton_hover.lighten_color(0.5) closebutton_active = Color(_colors,'ViewForegroundNegative') titlebutton_inactive = Color(_colors,'WindowForegroundNormal') titlebutton_inactive_active = Color(_colors,'WindowBackgroundNormal','WindowForegroundNormal',0.3) tooltip_fg = Color(_colors,'TooltipForegroundNormal') tooltip_bg = Color(_colors,'TooltipBackgroundNormal') check_items(check_color.rgb,window_bg.rgb,'') check_items(button_hover.rgb,window_bg.rgb,'-hover') check_items(button_active.rgb,window_bg.rgb,'-active') check_items(check_color.insensitive,window_bg.rgb,'-insensitive',border_color.insensitive_alpha) check_items(check_color.inactive,window_bg.rgb,'-backdrop',border_color.inactive_alpha) check_items(check_color.inactive_insensitive,window_bg.rgb,'-backdrop-insensitive',border_color.inactive_insensitive_alpha) buttons(window_bg.rgb,border_color.rgb,button_bg.gradient(),'') buttons(window_bg.rgb,button_hover.rgb,button_bg.gradient(),'-hover') buttons(window_bg.rgb,button_hover.rgb,button_hover.gradient('active'),'-active') buttons(window_bg.rgb,border_color.rgb,button_bg.gradient(alpha=button_bg.insensitive_alpha),'-insensitive',border_color.insensitive_alpha) togglebuttons(window_bg.rgb,border_color.rgb,button_bg.gradient(),'') togglebuttons(window_bg.rgb,button_hover.rgb,button_bg.gradient(),'-hover') togglebuttons(window_bg.rgb,button_hover.rgb,button_hover.gradient('active'),'-active') togglebuttons(window_bg.rgb,border_color.rgb,button_bg.gradient(alpha=button_bg.insensitive_alpha),'-insensitive',border_color.insensitive_alpha) scale_slider(window_bg.rgb,border_color.rgb,button_bg.gradient(),'') scale_slider(window_bg.rgb,button_hover.rgb,button_bg.gradient(),'-hover') scale_slider(window_bg.rgb,button_active.rgb,button_bg.gradient(),'-active') scale_slider(window_bg.rgb,border_color.rgb,button_bg.gradient(alpha=button_bg.insensitive_alpha),'-insensitive',border_color.insensitive_alpha) scale_trough(border_color.rgb) tabs(border_color.rgb,window_bg.rgb,'-active') tabs(window_fg.rgb,window_bg.rgb,'-inactive') arrows(button_fg.rgb,'') arrows(button_hover.rgb,'-hover') arrows(button_active.rgb,'-active') arrows(button_fg.insensitive,'-insensitive',button_fg.insensitive_alpha) menu_arrow(window_fg.rgb,'') menu_arrow(selection_fg.rgb,'-selected') menu_arrow(window_fg.insensitive,'-insensitive',window_fg.insensitive_alpha) scrollbar_slider(button_active.rgb,button_hover.rgb,button_active.rgb) scrollbar_trough(window_fg.rgb) titlebuttons(titlebutton.rgb,titlebutton.rgb,'') titlebuttons(titlebutton.rgb,closebutton_hover.rgb,'-hover') titlebuttons(titlebutton_active.rgb,closebutton_active.rgb,'-active') titlebuttons(titlebutton_inactive.rgb,titlebutton_inactive.rgb,'-backdrop') titlebuttons(titlebutton_inactive.rgb,closebutton_hover.rgb,'-hover-backdrop') titlebuttons(titlebutton_inactive_active.rgb,closebutton_active.rgb,'-active-backdrop') entry(window_bg.rgb,border_color.rgb,view_bg.rgb,'') entry(window_bg.rgb,view_active.rgb,view_bg.rgb,'-active') entry(window_bg.rgb,border_color.insensitive,None,'-insensitive',border_color.insensitive_alpha) progressbar(selection_bg.rgb,mix(window_fg.rgb,window_bg.rgb,0.3)) mixed(border_color.rgb,window_bg.rgb,button_active.rgb) toolbar(border_color.rgb,window_bg.rgb,button_hover.rgb) gtk2 = open('gtk2/gtkrc', 'w') gtk2.write( '# Theme: Breeze-gtk\n' '# Description: Breeze theme for GTK+2.0\n' '\n' 'gtk-color-scheme = "text_color:' + html(window_fg.rgb) + '"\n' 'gtk-color-scheme = "base_color:'+ html(view_bg.rgb) + '"\n' 'gtk-color-scheme = "insensitive_base_color:'+ html(view_bg.insensitive) + '"\n' 'gtk-color-scheme = "fg_color:'+ html(window_fg.rgb) + '"\n' 'gtk-color-scheme = "bg_color:' + html(window_bg.rgb) + '"\n' 'gtk-color-scheme = "selected_fg_color:' + html(selection_fg.rgb) + '"\n' 'gtk-color-scheme = "selected_bg_color:' + html(selection_bg.rgb) + '"\n' 'gtk-color-scheme = "button_fg_color:' + html(button_fg.rgb) + '"\n' 'gtk-color-scheme = "tooltip_fg_color:' + html(tooltip_fg.rgb) + '"\n' 'gtk-color-scheme = "tooltip_bg_color:' + html(tooltip_bg.rgb) + '"\n' 'gtk-color-scheme = "insensitive_fg_color:' + html(mix(window_fg.insensitive,window_bg.rgb,window_fg.insensitive_alpha)) + '"\n' 'gtk-color-scheme = "insensitive_text_color:' + html(mix(view_fg.insensitive,view_bg.rgb,view_fg.insensitive_alpha)) + '"\n' 'gtk-color-scheme = "button_insensitive_fg_color:' + html(mix(button_fg.insensitive,button_bg.rgb,button_fg.insensitive_alpha)) + '"\n' 'gtk-color-scheme = "button_active:' + html(button_active.rgb) + '"\n' 'gtk-color-scheme = "border_color:' + html(border_color.rgb) + '"\n' '\n' 'include "widgets/default"\n' 'include "widgets/buttons"\n' 'include "widgets/menu"\n' 'include "widgets/entry"\n' 'include "widgets/notebook"\n' 'include "widgets/range"\n' 'include "widgets/scrollbar"\n' 'include "widgets/toolbar"\n' 'include "widgets/progressbar"\n' 'include "widgets/misc"\n' 'include "widgets/styles"\n' ) gtk2.close() gtk3 = open('_global.scss', 'w') for key in sorted(_colors): if key == 'DisabledColor' or key == 'InactiveColor': gtk3.write('${0}:rgb({1});\n'.format(key,_colors[key])) elif 'Disabled' in key or 'Inactive' in key: gtk3.write('${0}:{1};\n'.format(key,_colors[key])) elif re.match('[0-9]+,[0-9]+,[0-9]+', _colors[key]): gtk3.write('${0}:rgb({1});\n'.format(key,_colors[key])) gtk3.close() diff --git a/src/schemes/Breeze.colors b/src/schemes/Breeze.colors deleted file mode 100644 index 732d007..0000000 --- a/src/schemes/Breeze.colors +++ /dev/null @@ -1,119 +0,0 @@ -[ColorEffects:Disabled] -Color=56,56,56 -ColorAmount=0 -ColorEffect=0 -ContrastAmount=0.65 -ContrastEffect=1 -IntensityAmount=0.1 -IntensityEffect=2 - -[ColorEffects:Inactive] -ChangeSelectionColor=true -Color=112,111,110 -ColorAmount=0.025 -ColorEffect=2 -ContrastAmount=0.1 -ContrastEffect=2 -Enable=false -IntensityAmount=0 -IntensityEffect=0 - -[Colors:Button] -BackgroundAlternate=189,195,199 -BackgroundNormal=239,240,241 -DecorationFocus=61,174,233 -DecorationHover=147,206,233 -ForegroundActive=61,174,233 -ForegroundInactive=127,140,141 -ForegroundLink=41,128,185 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=35,38,39 -ForegroundPositive=39,174,96 -ForegroundVisited=127,140,141 - -[Colors:Selection] -BackgroundAlternate=29,153,243 -BackgroundNormal=61,174,233 -DecorationFocus=61,174,233 -DecorationHover=147,206,233 -ForegroundActive=252,252,252 -ForegroundInactive=239,240,241 -ForegroundLink=253,188,75 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=252,252,252 -ForegroundPositive=39,174,96 -ForegroundVisited=189,195,199 - -[Colors:Tooltip] -BackgroundAlternate=77,77,77 -BackgroundNormal=35,38,39 -DecorationFocus=61,174,233 -DecorationHover=147,206,233 -ForegroundActive=61,174,233 -ForegroundInactive=189,195,199 -ForegroundLink=41,128,185 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=252,252,252 -ForegroundPositive=39,174,96 -ForegroundVisited=127,140,141 - -[Colors:View] -BackgroundAlternate=239,240,241 -BackgroundNormal=252,252,252 -DecorationFocus=61,174,233 -DecorationHover=147,206,233 -ForegroundActive=61,174,233 -ForegroundInactive=127,140,141 -ForegroundLink=41,128,185 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=35,38,39 -ForegroundPositive=39,174,96 -ForegroundVisited=127,140,141 - -[Colors:Window] -BackgroundAlternate=189,195,199 -BackgroundNormal=239,240,241 -DecorationFocus=61,174,233 -DecorationHover=147,206,233 -ForegroundActive=61,174,233 -ForegroundInactive=127,140,141 -ForegroundLink=41,128,185 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=35,38,39 -ForegroundPositive=39,174,96 -ForegroundVisited=127,140,141 - -[Colors:Complementary] -BackgroundAlternate=59,64,69 -BackgroundNormal=49,54,59 -DecorationFocus=30,146,255 -DecorationHover=61,174,230 -ForegroundActive=147,206,233 -ForegroundInactive=175,176,179 -ForegroundLink=61,174,230 -ForegroundNegative=231,76,60 -ForegroundNeutral=253,188,75 -ForegroundNormal=239,240,241 -ForegroundPositive=46,204,113 -ForegroundVisited=61,174,230 - -[General] -ColorScheme=Breeze -Name=Breeze -shadeSortColumn=true - -[KDE] -contrast=4 - -[WM] -activeBackground=71,80,87 -activeBlend=252,252,252 -activeForeground=252,252,252 -inactiveBackground=239,240,241 -inactiveBlend=75,71,67 -inactiveForeground=189,195,199 diff --git a/src/schemes/BreezeDark.colors b/src/schemes/BreezeDark.colors deleted file mode 100644 index e3e3a40..0000000 --- a/src/schemes/BreezeDark.colors +++ /dev/null @@ -1,119 +0,0 @@ -[ColorEffects:Disabled] -Color=56,56,56 -ColorAmount=0 -ColorEffect=0 -ContrastAmount=0.65 -ContrastEffect=1 -IntensityAmount=0.1 -IntensityEffect=2 - -[ColorEffects:Inactive] -ChangeSelectionColor=true -Color=112,111,110 -ColorAmount=0.025 -ColorEffect=2 -ContrastAmount=0.1 -ContrastEffect=2 -Enable=false -IntensityAmount=0 -IntensityEffect=0 - -[Colors:Button] -BackgroundAlternate=77,77,77 -BackgroundNormal=49,54,59 -DecorationFocus=61,174,233 -DecorationHover=61,174,233 -ForegroundActive=61,174,233 -ForegroundInactive=189,195,199 -ForegroundLink=41,128,185 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=239,240,241 -ForegroundPositive=39,174,96 -ForegroundVisited=127,140,141 - -[Colors:Selection] -BackgroundAlternate=29,153,243 -BackgroundNormal=61,174,233 -DecorationFocus=61,174,233 -DecorationHover=61,174,233 -ForegroundActive=252,252,252 -ForegroundInactive=239,240,241 -ForegroundLink=253,188,75 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=239,240,241 -ForegroundPositive=39,174,96 -ForegroundVisited=189,195,199 - -[Colors:Tooltip] -BackgroundAlternate=77,77,77 -BackgroundNormal=49,54,59 -DecorationFocus=61,174,233 -DecorationHover=61,174,233 -ForegroundActive=61,174,233 -ForegroundInactive=189,195,199 -ForegroundLink=41,128,185 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=239,240,241 -ForegroundPositive=39,174,96 -ForegroundVisited=127,140,141 - -[Colors:View] -BackgroundAlternate=49,54,59 -BackgroundNormal=35,38,41 -DecorationFocus=61,174,233 -DecorationHover=61,174,233 -ForegroundActive=61,174,233 -ForegroundInactive=189,195,199 -ForegroundLink=41,128,185 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=239,240,241 -ForegroundPositive=39,174,96 -ForegroundVisited=127,140,141 - -[Colors:Window] -BackgroundAlternate=77,77,77 -BackgroundNormal=49,54,59 -DecorationFocus=61,174,233 -DecorationHover=61,174,233 -ForegroundActive=61,174,233 -ForegroundInactive=189,195,199 -ForegroundLink=41,128,185 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=239,240,241 -ForegroundPositive=39,174,96 -ForegroundVisited=127,140,141 - -[Colors:Complementary] -BackgroundAlternate=59,64,69 -BackgroundNormal=49,54,59 -DecorationFocus=30,146,255 -DecorationHover=61,174,230 -ForegroundActive=246,116,0 -ForegroundInactive=175,176,179 -ForegroundLink=61,174,230 -ForegroundNegative=237,21,21 -ForegroundNeutral=201,206,59 -ForegroundNormal=239,240,241 -ForegroundPositive=17,209,22 -ForegroundVisited=61,174,230 - -[General] -ColorScheme=Breeze Dark -Name=Breeze Dark -shadeSortColumn=true - -[KDE] -contrast=4 - -[WM] -activeBackground=49,54,59 -activeBlend=255,255,255 -activeForeground=239,240,241 -inactiveBackground=49,54,59 -inactiveBlend=75,71,67 -inactiveForeground=127,140,141 diff --git a/src/schemes/BreezeHighContrast.colors b/src/schemes/BreezeHighContrast.colors deleted file mode 100644 index 758f1e9..0000000 --- a/src/schemes/BreezeHighContrast.colors +++ /dev/null @@ -1,119 +0,0 @@ -[ColorEffects:Disabled] -Color=56,56,56 -ColorAmount=0 -ColorEffect=0 -ContrastAmount=0.65 -ContrastEffect=1 -IntensityAmount=0.1 -IntensityEffect=2 - -[ColorEffects:Inactive] -ChangeSelectionColor=true -Color=112,111,110 -ColorAmount=0.025 -ColorEffect=2 -ContrastAmount=0.1 -ContrastEffect=2 -Enable=false -IntensityAmount=0 -IntensityEffect=0 - -[Colors:Button] -BackgroundAlternate=189,195,199 -BackgroundNormal=77,77,77 -DecorationFocus=29,153,243 -DecorationHover=77,77,77 -ForegroundActive=61,174,233 -ForegroundInactive=127,140,141 -ForegroundLink=41,128,185 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=252,252,252 -ForegroundPositive=39,174,96 -ForegroundVisited=127,140,141 - -[Colors:Selection] -BackgroundAlternate=29,153,243 -BackgroundNormal=52,73,94 -DecorationFocus=29,153,243 -DecorationHover=77,77,77 -ForegroundActive=252,252,252 -ForegroundInactive=252,252,252 -ForegroundLink=253,188,75 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=239,240,241 -ForegroundPositive=39,174,96 -ForegroundVisited=189,195,199 - -[Colors:Tooltip] -BackgroundAlternate=77,77,77 -BackgroundNormal=29,153,243 -DecorationFocus=29,153,243 -DecorationHover=77,77,77 -ForegroundActive=61,174,233 -ForegroundInactive=127,140,141 -ForegroundLink=41,128,185 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=252,252,252 -ForegroundPositive=39,174,96 -ForegroundVisited=127,140,141 - -[Colors:View] -BackgroundAlternate=41,44,48 -BackgroundNormal=35,38,41 -DecorationFocus=29,153,243 -DecorationHover=77,77,77 -ForegroundActive=61,174,233 -ForegroundInactive=127,140,141 -ForegroundLink=41,128,185 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=252,252,252 -ForegroundPositive=39,174,96 -ForegroundVisited=127,140,141 - -[Colors:Window] -BackgroundAlternate=189,195,199 -BackgroundNormal=49,54,59 -DecorationFocus=29,153,243 -DecorationHover=77,77,77 -ForegroundActive=61,174,233 -ForegroundInactive=127,140,141 -ForegroundLink=41,128,185 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=252,252,252 -ForegroundPositive=39,174,96 -ForegroundVisited=127,140,141 - -[Colors:Complementary] -BackgroundAlternate=41,44,48 -BackgroundNormal=35,38,41 -DecorationFocus=29,153,243 -DecorationHover=77,77,77 -ForegroundActive=61,174,233 -ForegroundInactive=127,140,141 -ForegroundLink=41,128,185 -ForegroundNegative=218,68,83 -ForegroundNeutral=246,116,0 -ForegroundNormal=252,252,252 -ForegroundPositive=39,174,96 -ForegroundVisited=127,140,141 - -[General] -ColorScheme=Breeze High Conttrast -Name=Breeze High Contrast -shadeSortColumn=true - -[KDE] -contrast=9 - -[WM] -activeBackground=29,153,243 -activeBlend=29,153,243 -activeForeground=252,252,252 -inactiveBackground=49,54,59 -inactiveBlend=26,188,156 -inactiveForeground=252,252,252 diff --git a/src/schemes/BreezeLight.colors b/src/schemes/BreezeLight.colors deleted file mode 100644 index aada764..0000000 --- a/src/schemes/BreezeLight.colors +++ /dev/null @@ -1,119 +0,0 @@ -[ColorEffects:Disabled] -Color=56,56,56 -ColorAmount=0 -ColorEffect=0 -ContrastAmount=0.65 -ContrastEffect=1 -IntensityAmount=0.1 -IntensityEffect=2 - -[ColorEffects:Inactive] -ChangeSelectionColor=true -Color=112,111,110 -ColorAmount=0.025 -ColorEffect=2 -ContrastAmount=0.1 -ContrastEffect=2 -Enable=false -IntensityAmount=0 -IntensityEffect=0 - -[Colors:Button] -BackgroundAlternate=224,223,222 -BackgroundNormal=239,240,241 -DecorationFocus=61,174,233 -DecorationHover=142,203,233 -ForegroundActive=255,128,224 -ForegroundInactive=136,135,134 -ForegroundLink=0,87,174 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=49,54,59 -ForegroundPositive=0,110,40 -ForegroundVisited=69,40,134 - -[Colors:Selection] -BackgroundAlternate=62,138,204 -BackgroundNormal=61,174,233 -DecorationFocus=61,174,233 -DecorationHover=142,203,233 -ForegroundActive=255,128,224 -ForegroundInactive=142,203,233 -ForegroundLink=0,49,110 -ForegroundNegative=156,14,14 -ForegroundNeutral=255,221,0 -ForegroundNormal=252,252,252 -ForegroundPositive=128,255,128 -ForegroundVisited=69,40,134 - -[Colors:Tooltip] -BackgroundAlternate=196,224,255 -BackgroundNormal=252,252,252 -DecorationFocus=61,174,233 -DecorationHover=142,203,233 -ForegroundActive=255,128,224 -ForegroundInactive=96,112,128 -ForegroundLink=0,87,174 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=49,54,59 -ForegroundPositive=0,110,40 -ForegroundVisited=69,40,134 - -[Colors:View] -BackgroundAlternate=248,247,246 -BackgroundNormal=252,252,252 -DecorationFocus=61,174,233 -DecorationHover=142,203,233 -ForegroundActive=255,128,224 -ForegroundInactive=136,135,134 -ForegroundLink=0,87,174 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=49,54,59 -ForegroundPositive=0,110,40 -ForegroundVisited=69,40,134 - -[Colors:Window] -BackgroundAlternate=218,217,216 -BackgroundNormal=239,240,241 -DecorationFocus=61,174,233 -DecorationHover=142,203,233 -ForegroundActive=255,128,224 -ForegroundInactive=136,135,134 -ForegroundLink=0,87,174 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=49,54,59 -ForegroundPositive=0,110,40 -ForegroundVisited=69,40,134 - -[Colors:Complementary] -BackgroundAlternate=59,64,69 -BackgroundNormal=49,54,59 -DecorationFocus=30,146,255 -DecorationHover=61,174,230 -ForegroundActive=246,116,0 -ForegroundInactive=175,176,179 -ForegroundLink=61,174,230 -ForegroundNegative=237,21,21 -ForegroundNeutral=201,206,59 -ForegroundNormal=239,240,241 -ForegroundPositive=17,209,22 -ForegroundVisited=61,174,230 - -[General] -ColorScheme=Breeze Light -Name=Breeze Light -shadeSortColumn=true - -[KDE] -contrast=4 - -[WM] -activeBackground=239,240,241 -activeBlend=255,255,255 -activeForeground=49,54,59 -inactiveBackground=239,240,241 -inactiveBlend=75,71,67 -inactiveForeground=137,142,146 diff --git a/src/schemes/Honeycomb.colors b/src/schemes/Honeycomb.colors deleted file mode 100644 index 2db8c57..0000000 --- a/src/schemes/Honeycomb.colors +++ /dev/null @@ -1,96 +0,0 @@ -[ColorEffects:Disabled] -Color=48,43,30 -ColorAmount=0.125 -ColorEffect=2 -ContrastAmount=0.5 -ContrastEffect=1 -IntensityAmount=0.05 -IntensityEffect=0 - -[ColorEffects:Inactive] -Color=227,170,0 -ColorAmount=0.025 -ColorEffect=2 -ContrastAmount=0.25 -ContrastEffect=1 -IntensityAmount=0.05 -IntensityEffect=0 - -[Colors:Button] -BackgroundAlternate=136,138,133 -BackgroundNormal=186,189,183 -DecorationFocus=85,85,85 -DecorationHover=243,195,0 -ForegroundActive=191,92,0 -ForegroundInactive=117,80,25 -ForegroundLink=232,82,144 -ForegroundNegative=191,3,3 -ForegroundNeutral=43,116,199 -ForegroundNormal=0,0,0 -ForegroundPositive=0,137,43 -ForegroundVisited=100,74,155 - -[Colors:Selection] -BackgroundAlternate=243,195,0 -BackgroundNormal=227,170,0 -DecorationFocus=85,85,85 -DecorationHover=243,195,0 -ForegroundActive=191,92,0 -ForegroundInactive=255,235,85 -ForegroundLink=232,82,144 -ForegroundNegative=191,3,3 -ForegroundNeutral=43,116,199 -ForegroundNormal=255,255,255 -ForegroundPositive=0,137,43 -ForegroundVisited=100,74,155 - -[Colors:Tooltip] -BackgroundAlternate=255,235,85 -BackgroundNormal=255,242,153 -DecorationFocus=85,85,85 -DecorationHover=243,195,0 -ForegroundActive=191,92,0 -ForegroundInactive=117,80,25 -ForegroundLink=232,82,144 -ForegroundNegative=191,3,3 -ForegroundNeutral=43,116,199 -ForegroundNormal=64,48,0 -ForegroundPositive=0,137,43 -ForegroundVisited=100,74,155 - -[Colors:View] -BackgroundAlternate=255,251,231 -BackgroundNormal=255,255,255 -DecorationFocus=85,85,85 -DecorationHover=243,195,0 -ForegroundActive=191,92,0 -ForegroundInactive=117,80,25 -ForegroundLink=232,82,144 -ForegroundNegative=191,3,3 -ForegroundNeutral=43,116,199 -ForegroundNormal=0,0,0 -ForegroundPositive=0,137,43 -ForegroundVisited=100,74,155 - -[Colors:Window] -BackgroundAlternate=186,189,183 -BackgroundNormal=212,215,208 -DecorationFocus=85,85,85 -DecorationHover=243,195,0 -ForegroundActive=191,92,0 -ForegroundInactive=117,80,25 -ForegroundLink=232,82,144 -ForegroundNegative=191,3,3 -ForegroundNeutral=43,116,199 -ForegroundNormal=0,0,0 -ForegroundPositive=0,137,43 -ForegroundVisited=100,74,155 - -[General] -Name=Honeycomb - -[WM] -activeBackground=227,170,0 -activeForeground=255,255,255 -inactiveBackground=136,138,133 -inactiveForeground=46,52,54 diff --git a/src/schemes/Norway.colors b/src/schemes/Norway.colors deleted file mode 100644 index abf78bc..0000000 --- a/src/schemes/Norway.colors +++ /dev/null @@ -1,96 +0,0 @@ -[ColorEffects:Disabled] -Color=197,179,153 -ColorAmount=0.5 -ColorEffect=2 -ContrastAmount=0.25 -ContrastEffect=1 -IntensityAmount=0.25 -IntensityEffect=0 - -[ColorEffects:Inactive] -Color=213,198,176 -ColorAmount=0.1 -ColorEffect=2 -ContrastAmount=0.25 -ContrastEffect=1 -IntensityAmount=-0.05 -IntensityEffect=0 - -[Colors:Button] -BackgroundAlternate=246,240,227 -BackgroundNormal=247,242,232 -DecorationFocus=128,112,96 -DecorationHover=29,135,205 -ForegroundActive=0,197,204 -ForegroundInactive=197,179,153 -ForegroundLink=0,87,174 -ForegroundNegative=232,87,82 -ForegroundNeutral=227,170,0 -ForegroundNormal=0,0,0 -ForegroundPositive=120,183,83 -ForegroundVisited=100,74,155 - -[Colors:Selection] -BackgroundAlternate=27,131,196 -BackgroundNormal=29,132,205 -DecorationFocus=128,112,96 -DecorationHover=29,135,205 -ForegroundActive=0,197,204 -ForegroundInactive=144,192,232 -ForegroundLink=0,87,174 -ForegroundNegative=232,87,82 -ForegroundNeutral=227,170,0 -ForegroundNormal=255,255,255 -ForegroundPositive=120,183,83 -ForegroundVisited=100,74,155 - -[Colors:Tooltip] -BackgroundAlternate=250,248,241 -BackgroundNormal=253,252,251 -DecorationFocus=128,112,96 -DecorationHover=29,135,205 -ForegroundActive=0,197,204 -ForegroundInactive=197,179,153 -ForegroundLink=0,87,174 -ForegroundNegative=232,87,82 -ForegroundNeutral=227,170,0 -ForegroundNormal=0,0,0 -ForegroundPositive=120,183,83 -ForegroundVisited=100,74,155 - -[Colors:View] -BackgroundAlternate=250,246,239 -BackgroundNormal=253,252,250 -DecorationFocus=128,112,96 -DecorationHover=29,135,205 -ForegroundActive=0,197,204 -ForegroundInactive=197,179,153 -ForegroundLink=0,87,174 -ForegroundNegative=232,87,82 -ForegroundNeutral=227,170,0 -ForegroundNormal=0,0,0 -ForegroundPositive=120,183,83 -ForegroundVisited=100,74,155 - -[Colors:Window] -BackgroundAlternate=233,223,206 -BackgroundNormal=235,226,210 -DecorationFocus=128,112,96 -DecorationHover=29,135,205 -ForegroundActive=0,197,204 -ForegroundInactive=197,179,153 -ForegroundLink=0,87,174 -ForegroundNegative=232,87,82 -ForegroundNeutral=227,170,0 -ForegroundNormal=0,0,0 -ForegroundPositive=120,183,83 -ForegroundVisited=100,74,155 - -[General] -Name=Norway - -[WM] -activeBackground=29,135,205 -activeForeground=255,255,255 -inactiveBackground=128,112,96 -inactiveForeground=253,252,251 diff --git a/src/schemes/ObsidianCoast.colors b/src/schemes/ObsidianCoast.colors deleted file mode 100644 index 0245ee1..0000000 --- a/src/schemes/ObsidianCoast.colors +++ /dev/null @@ -1,95 +0,0 @@ -[ColorEffects:Disabled] -ColorAmount=-0.8 -ColorEffect=0 -ContrastAmount=0.65 -ContrastEffect=1 -IntensityAmount=0.25 -IntensityEffect=2 - -[ColorEffects:Inactive] -Color=0,0,0 -ColorAmount=0.025 -ColorEffect=2 -ContrastAmount=0.4 -ContrastEffect=2 -IntensityAmount=0 -IntensityEffect=0 - -[Colors:Button] -BackgroundAlternate=66,65,64 -BackgroundNormal=64,63,62 -DecorationFocus=39,94,160 -DecorationHover=87,129,176 -ForegroundActive=150,191,240 -ForegroundInactive=120,119,117 -ForegroundLink=80,142,216 -ForegroundNegative=232,88,72 -ForegroundNeutral=192,162,95 -ForegroundNormal=232,230,227 -ForegroundPositive=120,183,83 -ForegroundVisited=142,121,165 - -[Colors:Selection] -BackgroundAlternate=22,68,120 -BackgroundNormal=24,72,128 -DecorationFocus=39,94,160 -DecorationHover=87,129,176 -ForegroundActive=150,191,240 -ForegroundInactive=81,119,166 -ForegroundLink=80,142,216 -ForegroundNegative=232,88,72 -ForegroundNeutral=192,162,95 -ForegroundNormal=255,255,255 -ForegroundPositive=120,183,83 -ForegroundVisited=142,121,165 - -[Colors:Tooltip] -BackgroundAlternate=17,51,86 -BackgroundNormal=16,48,80 -DecorationFocus=39,94,160 -DecorationHover=87,129,176 -ForegroundActive=150,191,240 -ForegroundInactive=120,119,117 -ForegroundLink=80,142,216 -ForegroundNegative=232,88,72 -ForegroundNeutral=192,162,95 -ForegroundNormal=196,209,224 -ForegroundPositive=120,183,83 -ForegroundVisited=142,121,165 - -[Colors:View] -BackgroundAlternate=36,35,35 -BackgroundNormal=32,31,31 -DecorationFocus=39,94,160 -DecorationHover=87,129,176 -ForegroundActive=150,191,240 -ForegroundInactive=120,119,117 -ForegroundLink=80,142,216 -ForegroundNegative=232,88,72 -ForegroundNeutral=192,162,95 -ForegroundNormal=212,210,207 -ForegroundPositive=120,183,83 -ForegroundVisited=142,121,165 - -[Colors:Window] -BackgroundAlternate=52,51,50 -BackgroundNormal=48,47,47 -DecorationFocus=39,94,160 -DecorationHover=87,129,176 -ForegroundActive=150,191,240 -ForegroundInactive=120,119,117 -ForegroundLink=80,142,216 -ForegroundNegative=232,88,72 -ForegroundNeutral=192,162,95 -ForegroundNormal=224,222,219 -ForegroundPositive=120,183,83 -ForegroundVisited=142,121,165 - -[General] -Name=Obsidian Coast - -[WM] -activeBackground=19,47,80 -activeForeground=255,255,255 -inactiveBackground=64,63,62 -inactiveForeground=128,127,125 diff --git a/src/schemes/Oxygen.colors b/src/schemes/Oxygen.colors deleted file mode 100644 index 6004370..0000000 --- a/src/schemes/Oxygen.colors +++ /dev/null @@ -1,117 +0,0 @@ -[ColorEffects:Disabled] -Color=56,56,56 -ColorAmount=0 -ColorEffect=0 -ContrastAmount=0.65 -ContrastEffect=1 -IntensityAmount=0.1 -IntensityEffect=2 - -[ColorEffects:Inactive] -ChangeSelectionColor=true -Color=112,111,110 -ColorAmount=-0.9 -ColorEffect=1 -ContrastAmount=0.25 -ContrastEffect=2 -Enable=true -IntensityAmount=0 -IntensityEffect=0 - -[Colors:Button] -BackgroundAlternate=224,223,222 -BackgroundNormal=223,220,217 -DecorationFocus=58,167,221 -DecorationHover=110,214,255 -ForegroundActive=146,76,157 -ForegroundInactive=137,136,135 -ForegroundLink=0,87,174 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=34,31,30 -ForegroundPositive=0,110,40 -ForegroundVisited=100,74,155 - -[Colors:Selection] -BackgroundAlternate=62,138,204 -BackgroundNormal=67,172,232 -DecorationFocus=58,167,221 -DecorationHover=110,214,255 -ForegroundActive=108,36,119 -ForegroundInactive=199,226,248 -ForegroundLink=0,49,110 -ForegroundNegative=156,14,14 -ForegroundNeutral=255,221,0 -ForegroundNormal=255,255,255 -ForegroundPositive=128,255,128 -ForegroundVisited=69,40,134 - -[Colors:Tooltip] -BackgroundAlternate=196,224,255 -BackgroundNormal=24,21,19 -DecorationFocus=58,167,221 -DecorationHover=110,214,255 -ForegroundActive=255,128,224 -ForegroundInactive=137,136,135 -ForegroundLink=88,172,255 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=231,253,255 -ForegroundPositive=0,110,40 -ForegroundVisited=150,111,232 - -[Colors:View] -BackgroundAlternate=248,247,246 -BackgroundNormal=255,255,255 -DecorationFocus=58,167,221 -DecorationHover=110,214,255 -ForegroundActive=146,76,157 -ForegroundInactive=137,136,135 -ForegroundLink=0,87,174 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=31,28,27 -ForegroundPositive=0,110,40 -ForegroundVisited=100,74,155 - -[Colors:Window] -BackgroundAlternate=218,217,216 -BackgroundNormal=214,210,208 -DecorationFocus=58,167,221 -DecorationHover=110,214,255 -ForegroundActive=146,76,157 -ForegroundInactive=137,136,135 -ForegroundLink=0,87,174 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=34,31,30 -ForegroundPositive=0,110,40 -ForegroundVisited=100,74,155 - -[Colors:Complementary] -BackgroundAlternate=196,224,255 -BackgroundNormal=24,21,19 -DecorationFocus=58,167,221 -DecorationHover=110,214,255 -ForegroundActive=255,128,224 -ForegroundInactive=137,136,135 -ForegroundLink=88,172,255 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=231,253,255 -ForegroundPositive=0,110,40 -ForegroundVisited=150,111,232 - -[General] -ColorScheme=Oxygen -Name=Oxygen -shadeSortColumn=true - -[KDE] -contrast=7 - -[WM] -activeBackground=48,174,232 -activeForeground=255,255,255 -inactiveBackground=224,223,222 -inactiveForeground=75,71,67 diff --git a/src/schemes/OxygenCold.colors b/src/schemes/OxygenCold.colors deleted file mode 100644 index 8f531db..0000000 --- a/src/schemes/OxygenCold.colors +++ /dev/null @@ -1,109 +0,0 @@ -[ColorEffects:Disabled] -ColorAmount=0 -ColorEffect=0 -ContrastAmount=0.65 -ContrastEffect=1 -IntensityAmount=0.1 -IntensityEffect=2 - -[ColorEffects:Inactive] -Color=112,111,110 -ColorAmount=0.025 -ColorEffect=2 -ContrastAmount=0.1 -ContrastEffect=2 -IntensityAmount=0 -IntensityEffect=0 - -[Colors:Button] -BackgroundAlternate=224,223,222 -BackgroundNormal=232,231,230 -DecorationFocus=43,116,199 -DecorationHover=119,183,255 -ForegroundActive=255,128,224 -ForegroundInactive=136,135,134 -ForegroundLink=0,87,174 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=20,19,18 -ForegroundPositive=0,110,40 -ForegroundVisited=69,40,134 - -[Colors:Selection] -BackgroundAlternate=62,138,204 -BackgroundNormal=65,139,212 -DecorationFocus=43,116,199 -DecorationHover=119,183,255 -ForegroundActive=255,128,224 -ForegroundInactive=165,193,228 -ForegroundLink=0,49,110 -ForegroundNegative=156,14,14 -ForegroundNeutral=255,221,0 -ForegroundNormal=255,255,255 -ForegroundPositive=128,255,128 -ForegroundVisited=69,40,134 - -[Colors:Tooltip] -BackgroundAlternate=196,224,255 -BackgroundNormal=192,218,255 -DecorationFocus=43,116,199 -DecorationHover=119,183,255 -ForegroundActive=255,128,224 -ForegroundInactive=96,112,128 -ForegroundLink=0,87,174 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=20,19,18 -ForegroundPositive=0,110,40 -ForegroundVisited=69,40,134 - -[Colors:View] -BackgroundAlternate=248,247,246 -BackgroundNormal=255,255,255 -DecorationFocus=43,116,199 -DecorationHover=119,183,255 -ForegroundActive=255,128,224 -ForegroundInactive=136,135,134 -ForegroundLink=0,87,174 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=20,19,18 -ForegroundPositive=0,110,40 -ForegroundVisited=69,40,134 - -[Colors:Window] -BackgroundAlternate=218,217,216 -BackgroundNormal=224,223,222 -DecorationFocus=43,116,199 -DecorationHover=119,183,255 -ForegroundActive=255,128,224 -ForegroundInactive=136,135,134 -ForegroundLink=0,87,174 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=20,19,18 -ForegroundPositive=0,110,40 -ForegroundVisited=69,40,134 - -[Colors:Complementary] -BackgroundAlternate=196,224,255 -BackgroundNormal=24,21,19 -DecorationFocus=58,167,221 -DecorationHover=110,214,255 -ForegroundActive=255,128,224 -ForegroundInactive=137,136,135 -ForegroundLink=88,172,255 -ForegroundNegative=191,3,3 -ForegroundNeutral=176,128,0 -ForegroundNormal=231,253,255 -ForegroundPositive=0,110,40 -ForegroundVisited=150,111,232 - -[General] -Name=Oxygen Cold - -[WM] -activeBackground=96,148,207 -activeForeground=255,255,255 -inactiveBackground=224,223,222 -inactiveForeground=20,19,18 diff --git a/src/schemes/Steel.colors b/src/schemes/Steel.colors deleted file mode 100644 index 3ebd8b4..0000000 --- a/src/schemes/Steel.colors +++ /dev/null @@ -1,95 +0,0 @@ -[ColorEffects:Disabled] -ColorAmount=-0.9 -ColorEffect=0 -ContrastAmount=0.65 -ContrastEffect=1 -IntensityAmount=0.25 -IntensityEffect=2 - -[ColorEffects:Inactive] -Color=135,133,129 -ColorAmount=0.05 -ColorEffect=2 -ContrastAmount=0.25 -ContrastEffect=2 -IntensityAmount=0 -IntensityEffect=0 - -[Colors:Button] -BackgroundAlternate=224,223,216 -BackgroundNormal=232,231,223 -DecorationFocus=69,98,112 -DecorationHover=74,139,163 -ForegroundActive=232,87,82 -ForegroundInactive=148,133,111 -ForegroundLink=41,111,190 -ForegroundNegative=139,83,127 -ForegroundNeutral=191,165,103 -ForegroundNormal=0,0,0 -ForegroundPositive=67,102,46 -ForegroundVisited=100,74,155 - -[Colors:Selection] -BackgroundAlternate=118,154,165 -BackgroundNormal=123,160,173 -DecorationFocus=69,98,112 -DecorationHover=74,139,163 -ForegroundActive=232,87,82 -ForegroundInactive=178,197,204 -ForegroundLink=41,111,190 -ForegroundNegative=139,83,127 -ForegroundNeutral=191,165,103 -ForegroundNormal=255,255,255 -ForegroundPositive=67,102,46 -ForegroundVisited=100,74,155 - -[Colors:Tooltip] -BackgroundAlternate=216,228,231 -BackgroundNormal=219,231,235 -DecorationFocus=69,98,112 -DecorationHover=74,139,163 -ForegroundActive=232,87,82 -ForegroundInactive=148,133,111 -ForegroundLink=41,111,190 -ForegroundNegative=139,83,127 -ForegroundNeutral=191,165,103 -ForegroundNormal=37,34,28 -ForegroundPositive=67,102,46 -ForegroundVisited=100,74,155 - -[Colors:View] -BackgroundAlternate=250,250,248 -BackgroundNormal=255,255,255 -DecorationFocus=69,98,112 -DecorationHover=74,139,163 -ForegroundActive=232,87,82 -ForegroundInactive=148,133,111 -ForegroundLink=41,111,190 -ForegroundNegative=139,83,127 -ForegroundNeutral=191,165,103 -ForegroundNormal=0,0,0 -ForegroundPositive=67,102,46 -ForegroundVisited=100,74,155 - -[Colors:Window] -BackgroundAlternate=212,211,204 -BackgroundNormal=224,223,216 -DecorationFocus=69,98,112 -DecorationHover=74,139,163 -ForegroundActive=232,87,82 -ForegroundInactive=148,133,111 -ForegroundLink=41,111,190 -ForegroundNegative=139,83,127 -ForegroundNeutral=191,165,103 -ForegroundNormal=0,0,0 -ForegroundPositive=67,102,46 -ForegroundVisited=100,74,155 - -[General] -Name=Steel - -[WM] -activeBackground=74,139,163 -activeForeground=255,255,255 -inactiveBackground=208,206,192 -inactiveForeground=100,92,72 diff --git a/src/schemes/WontonSoup.colors b/src/schemes/WontonSoup.colors deleted file mode 100644 index 34ebaa9..0000000 --- a/src/schemes/WontonSoup.colors +++ /dev/null @@ -1,94 +0,0 @@ -[ColorEffects:Disabled] -ColorAmount=0 -ColorEffect=0 -ContrastAmount=0.65 -ContrastEffect=1 -IntensityAmount=0.25 -IntensityEffect=2 - -[ColorEffects:Inactive] -ColorAmount=0 -ColorEffect=0 -ContrastAmount=0.25 -ContrastEffect=2 -IntensityAmount=0.05 -IntensityEffect=2 - -[Colors:Button] -BackgroundAlternate=90,98,109 -BackgroundNormal=82,88,99 -DecorationFocus=125,141,153 -DecorationHover=119,149,179 -ForegroundActive=255,255,255 -ForegroundInactive=135,143,154 -ForegroundLink=156,212,255 -ForegroundNegative=225,150,209 -ForegroundNeutral=218,198,115 -ForegroundNormal=210,222,240 -ForegroundPositive=145,221,100 -ForegroundVisited=64,128,255 - -[Colors:Selection] -BackgroundAlternate=111,126,144 -BackgroundNormal=120,136,156 -DecorationFocus=125,141,153 -DecorationHover=119,149,179 -ForegroundActive=255,255,255 -ForegroundInactive=174,192,218 -ForegroundLink=156,212,255 -ForegroundNegative=225,150,209 -ForegroundNeutral=218,198,115 -ForegroundNormal=209,225,244 -ForegroundPositive=145,221,100 -ForegroundVisited=64,128,255 - -[Colors:Tooltip] -BackgroundAlternate=171,181,195 -BackgroundNormal=182,193,208 -DecorationFocus=125,141,153 -DecorationHover=119,149,179 -ForegroundActive=255,255,255 -ForegroundInactive=112,118,128 -ForegroundLink=87,161,218 -ForegroundNegative=99,66,92 -ForegroundNeutral=86,78,45 -ForegroundNormal=42,44,48 -ForegroundPositive=57,86,38 -ForegroundVisited=46,95,185 - -[Colors:View] -BackgroundAlternate=67,71,80 -BackgroundNormal=60,64,72 -DecorationFocus=125,141,153 -DecorationHover=119,149,179 -ForegroundActive=255,255,255 -ForegroundInactive=135,143,154 -ForegroundLink=156,212,255 -ForegroundNegative=225,150,209 -ForegroundNeutral=218,198,115 -ForegroundNormal=210,222,240 -ForegroundPositive=145,221,100 -ForegroundVisited=64,128,255 - -[Colors:Window] -BackgroundAlternate=78,83,94 -BackgroundNormal=73,78,88 -DecorationFocus=125,141,153 -DecorationHover=119,149,179 -ForegroundActive=255,255,255 -ForegroundInactive=135,143,154 -ForegroundLink=156,212,255 -ForegroundNegative=225,150,209 -ForegroundNeutral=218,198,115 -ForegroundNormal=182,193,208 -ForegroundPositive=145,221,100 -ForegroundVisited=64,128,255 - -[General] -Name=Wonton Soup - -[WM] -activeBackground=138,151,166 -activeForeground=224,237,255 -inactiveBackground=82,89,99 -inactiveForeground=140,152,168 diff --git a/src/schemes/Zion.colors b/src/schemes/Zion.colors deleted file mode 100644 index 4427567..0000000 --- a/src/schemes/Zion.colors +++ /dev/null @@ -1,96 +0,0 @@ -[ColorEffects:Disabled] -Color=210,205,218 -ColorAmount=-0.9 -ColorEffect=0 -ContrastAmount=0.65 -ContrastEffect=1 -IntensityAmount=0 -IntensityEffect=0 - -[ColorEffects:Inactive] -Color=0,0,0 -ColorAmount=0.5 -ColorEffect=1 -ContrastAmount=0.25 -ContrastEffect=1 -IntensityAmount=0 -IntensityEffect=0 - -[Colors:Button] -BackgroundAlternate=252,252,252 -BackgroundNormal=255,255,255 -DecorationFocus=128,128,128 -DecorationHover=0,0,0 -ForegroundActive=0,102,255 -ForegroundInactive=112,112,112 -ForegroundLink=0,0,192 -ForegroundNegative=128,0,0 -ForegroundNeutral=112,96,0 -ForegroundNormal=0,0,0 -ForegroundPositive=0,96,0 -ForegroundVisited=88,0,176 - -[Colors:Selection] -BackgroundAlternate=171,188,248 -BackgroundNormal=176,192,255 -DecorationFocus=128,128,128 -DecorationHover=0,0,0 -ForegroundActive=0,102,255 -ForegroundInactive=64,64,192 -ForegroundLink=0,0,192 -ForegroundNegative=128,0,0 -ForegroundNeutral=112,96,0 -ForegroundNormal=0,0,0 -ForegroundPositive=0,96,0 -ForegroundVisited=88,0,176 - -[Colors:Tooltip] -BackgroundAlternate=250,250,250 -BackgroundNormal=255,255,255 -DecorationFocus=128,128,128 -DecorationHover=0,0,0 -ForegroundActive=0,102,255 -ForegroundInactive=112,112,112 -ForegroundLink=0,0,192 -ForegroundNegative=128,0,0 -ForegroundNeutral=112,96,0 -ForegroundNormal=0,0,0 -ForegroundPositive=0,96,0 -ForegroundVisited=88,0,176 - -[Colors:View] -BackgroundAlternate=252,252,252 -BackgroundNormal=255,255,255 -DecorationFocus=128,128,128 -DecorationHover=0,0,0 -ForegroundActive=0,102,255 -ForegroundInactive=112,112,112 -ForegroundLink=0,0,192 -ForegroundNegative=128,0,0 -ForegroundNeutral=112,96,0 -ForegroundNormal=0,0,0 -ForegroundPositive=0,96,0 -ForegroundVisited=88,0,176 - -[Colors:Window] -BackgroundAlternate=248,248,248 -BackgroundNormal=252,252,252 -DecorationFocus=128,128,128 -DecorationHover=0,0,0 -ForegroundActive=0,102,255 -ForegroundInactive=112,112,112 -ForegroundLink=0,0,192 -ForegroundNegative=128,0,0 -ForegroundNeutral=112,96,0 -ForegroundNormal=0,0,0 -ForegroundPositive=0,96,0 -ForegroundVisited=88,0,176 - -[General] -Name=Zion - -[WM] -activeBackground=176,193,255 -activeForeground=0,0,0 -inactiveBackground=255,255,255 -inactiveForeground=0,0,0 diff --git a/src/schemes/ZionReversed.colors b/src/schemes/ZionReversed.colors deleted file mode 100644 index 36131d4..0000000 --- a/src/schemes/ZionReversed.colors +++ /dev/null @@ -1,96 +0,0 @@ -[ColorEffects:Disabled] -Color=56,56,56 -ColorAmount=0.5 -ColorEffect=2 -ContrastAmount=0.5 -ContrastEffect=1 -IntensityAmount=0.05 -IntensityEffect=0 - -[ColorEffects:Inactive] -Color=0,0,0 -ColorAmount=0.5 -ColorEffect=1 -ContrastAmount=0.25 -ContrastEffect=2 -IntensityAmount=0 -IntensityEffect=0 - -[Colors:Button] -BackgroundAlternate=12,12,12 -BackgroundNormal=0,0,0 -DecorationFocus=192,192,192 -DecorationHover=255,255,255 -ForegroundActive=192,255,255 -ForegroundInactive=160,160,160 -ForegroundLink=128,181,255 -ForegroundNegative=255,128,172 -ForegroundNeutral=255,212,128 -ForegroundNormal=255,255,255 -ForegroundPositive=128,255,128 -ForegroundVisited=192,128,255 - -[Colors:Selection] -BackgroundAlternate=0,52,116 -BackgroundNormal=0,49,110 -DecorationFocus=192,192,192 -DecorationHover=255,255,255 -ForegroundActive=192,255,255 -ForegroundInactive=96,148,207 -ForegroundLink=128,181,255 -ForegroundNegative=255,128,172 -ForegroundNeutral=255,212,128 -ForegroundNormal=255,255,255 -ForegroundPositive=128,255,128 -ForegroundVisited=192,128,255 - -[Colors:Tooltip] -BackgroundAlternate=12,12,12 -BackgroundNormal=0,0,0 -DecorationFocus=192,192,192 -DecorationHover=255,255,255 -ForegroundActive=192,255,255 -ForegroundInactive=160,160,160 -ForegroundLink=128,181,255 -ForegroundNegative=255,128,172 -ForegroundNeutral=255,212,128 -ForegroundNormal=255,255,255 -ForegroundPositive=128,255,128 -ForegroundVisited=192,128,255 - -[Colors:View] -BackgroundAlternate=12,12,12 -BackgroundNormal=0,0,0 -DecorationFocus=192,192,192 -DecorationHover=255,255,255 -ForegroundActive=192,255,255 -ForegroundInactive=160,160,160 -ForegroundLink=128,181,255 -ForegroundNegative=255,128,172 -ForegroundNeutral=255,212,128 -ForegroundNormal=255,255,255 -ForegroundPositive=128,255,128 -ForegroundVisited=192,128,255 - -[Colors:Window] -BackgroundAlternate=20,20,20 -BackgroundNormal=16,16,16 -DecorationFocus=192,192,192 -DecorationHover=255,255,255 -ForegroundActive=192,255,255 -ForegroundInactive=160,160,160 -ForegroundLink=128,181,255 -ForegroundNegative=255,128,172 -ForegroundNeutral=255,212,128 -ForegroundNormal=255,255,255 -ForegroundPositive=128,255,128 -ForegroundVisited=192,128,255 - -[General] -Name=Zion (Reversed) - -[WM] -activeBackground=0,49,110 -activeForeground=255,255,255 -inactiveBackground=64,64,64 -inactiveForeground=128,128,128