Improve Ubuntu config

This commit is contained in:
Paul-Henri Froidmont 2020-10-11 20:33:37 +02:00
parent 8b87b06972
commit b43c58c514
284 changed files with 388 additions and 220 deletions

108
configs/home/cli.nix Normal file
View file

@ -0,0 +1,108 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
zsh-syntax-highlighting
ranger
R
tldr
thefuck
atool
linuxPackages.perf
meslo-lg
nerdfonts
];
programs.neovim = {
enable = true;
vimAlias = true;
plugins = with pkgs; [
vimPlugins.gruvbox-community
vimPlugins.vim-airline
vimPlugins.vim-airline-themes
vimPlugins.vim-gitgutter
vimPlugins.nerdtree
vimPlugins.nerdtree-git-plugin
vimPlugins.ctrlp-vim
vimPlugins.tabular
];
extraConfig = ''
let g:gruvbox_italic=1
colorscheme gruvbox
set background=dark
let g:airline_powerline_fonts = 1
autocmd VimEnter * hi Normal ctermbg=NONE guibg=NONE
"Toggle NERDTree with Ctrl-N
map <C-n> :NERDTreeToggle<CR>
"Show hidden files in NERDTree
let NERDTreeShowHidden=1
set number relativenumber
" Run xrdb whenever Xdefaults or Xresources are updated.
autocmd BufWritePost ~/.Xresources,~/.Xdefaults !xrdb %
'';
};
programs.bat.enable = true;
programs.jq.enable = true;
programs.fzf.enable = true;
programs.lesspipe.enable = true;
programs.zathura.enable = true;
programs.pazi.enable = true;
programs.htop = {
enable = true;
hideUserlandThreads = true;
highlightBaseName = true;
fields = [ "PID" "USER" "M_RESIDENT" "M_SHARE" "STATE" "PERCENT_CPU" "PERCENT_MEM" "IO_RATE" "TIME" "COMM" ];
meters.left = [ "LeftCPUs" "Memory" "Swap" ] ;
meters.right = [ "RightCPUs" "Tasks" "LoadAverage" "Uptime" ];
};
programs.broot = {
enable = true;
enableZshIntegration = true;
};
programs.command-not-found.enable = true;
programs.zsh = {
enable = true;
history = {
save = 50000;
size = 50000;
};
enableAutosuggestions = true;
initExtra = ''
autoload -Uz up-line-or-beginning-search down-line-or-beginning-search
zle -N up-line-or-beginning-search
zle -N down-line-or-beginning-search
[[ -n "$key[Up]" ]] && bindkey -- "$key[Up]" up-line-or-beginning-search
[[ -n "$key[Down]" ]] && bindkey -- "$key[Down]" down-line-or-beginning-search
eval $(thefuck --alias)
'';
oh-my-zsh = {
enable = true;
plugins = [
"git"
];
theme = "robbyrussell";
};
plugins = [
{
name = "zsh-syntax-highlighting";
file = "share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh";
src = "${pkgs.zsh-syntax-highlighting}";
}
];
};
home.file.".config/ranger" = {
source = ./files/ranger;
recursive = true;
};
home.file.".config/ranger/plugins" = {
source = builtins.fetchGit {
url = "git://github.com/alexanderjeurissen/ranger_devicons.git";
rev = "68ffbffd086b0e9bb98c74705abe891b756b9e11";
};
recursive = true;
};
}

11
configs/home/dev.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
jdk11
jetbrains.idea-ultimate
maven
sbt
geckodriver
];
}

57
configs/home/email.nix Normal file
View file

@ -0,0 +1,57 @@
{ config, lib, pkgs, ... }:
let
davMailArhsConf = pkgs.writeText "davmail-arhs.propertries" ''
davmail.server=true
davmail.url=https\://webmail.arhs-developments.com/owa/
davmail.caldavPort=1080
davmail.imapPort=1143
davmail.ldapPort=1389
davmail.popPort=1110
davmail.smtpPort=1025
davmail.disableUpdateCheck=true
'';
davMailIngenicoConf = pkgs.writeText "davmail-ingenico.propertries" ''
davmail.server=true
davmail.mode=O365Modern
davmail.oauth.clientId=8ed87c30-ae92-4443-8528-f6a52ac95362
davmail.oauth.redirectUri=https://login.microsoftonline.com/common/oauth2/nativeclient
davmail.oauth.tenantId=143a5e19-140b-4632-b3ea-e71a15cddb8c
davmail.url=https://outlook.office365.com/EWS/Exchange.asmx
davmail.caldavPort=2080
davmail.imapPort=2143
davmail.ldapPort=2389
davmail.popPort=2110
davmail.smtpPort=2025
davmail.disableUpdateCheck=true
'';
in {
home.packages = with pkgs; [
davmail
];
systemd.user.services = {
davmail-arhs = {
Unit = {
Description = "DavMail ARhS Exchange";
};
Service = {
Type = "simple";
RemainAfterExit = "no";
ExecStart = "${pkgs.davmail}/bin/davmail ${davMailArhsConf}";
};
};
};
systemd.user.services = {
davmail-ingenico = {
Unit = {
Description = "DavMail Ingenico Exchange";
};
Service = {
Type = "simple";
RemainAfterExit = "no";
ExecStart = "${pkgs.davmail}/bin/davmail ${davMailIngenicoConf}";
};
};
};
}

View file

@ -0,0 +1,611 @@
##############################################################
## This is the example bindings file. Copy it to ##
## ~/.ncmpcpp/bindings or $XDG_CONFIG_HOME/ncmpcpp/bindings ##
## and set up your preferences ##
##############################################################
##
##### General rules #####
##
## 1) Because each action has runtime checks whether it's
## ok to run it, a few actions can be bound to one key.
## Actions will be bound in order given in configuration
## file. When a key is pressed, first action in order
## will test itself whether it's possible to run it. If
## test succeeds, action is executed and other actions
## bound to this key are ignored. If it doesn't, next
## action in order tests itself etc.
##
## 2) It's possible to bind more that one action at once
## to a key. It can be done using the following syntax:
##
## def_key "key"
## action1
## action2
## ...
##
## This creates a chain of actions. When such chain is
## executed, each action in chain is run until the end of
## chain is reached or one of its actions fails to execute
## due to its requirements not being met. If multiple actions
## and/or chains are bound to the same key, they will be
## consecutively run until one of them gets fully executed.
##
## 3) When ncmpcpp starts, bindings configuration file is
## parsed and then ncmpcpp provides "missing pieces"
## of default keybindings. If you want to disable some
## bindings, there is a special action called 'dummy'
## for that purpose. Eg. if you want to disable ability
## to crop playlists, you need to put the following
## into configuration file:
##
## def_key "C"
## dummy
##
## After that ncmpcpp will not bind any default action
## to this key.
##
## 4) To let you write simple macros, the following special
## actions are provided:
##
## - push_character "character" - pushes given special
## character into input queue, so it will be immediately
## picked by ncmpcpp upon next call to readKey function.
## Accepted values: mouse, up, down, page_up, page_down,
## home, end, space, enter, insert, delete, left, right,
## tab, ctrl-a, ctrl-b, ..., ctrl-z, ctrl-[, ctrl-\\,
## ctrl-], ctrl-^, ctrl-_, f1, f2, ..., f12, backspace.
## In addition, most of these names can be prefixed with
## alt-/ctrl-/shift- to be recognized with the appropriate
## modifier key(s).
##
## - push_characters "string" - pushes given string into
## input queue.
##
## - require_runnable "action" - checks whether given action
## is runnable and fails if it isn't. This is especially
## useful when mixed with previous two functions. Consider
## the following macro definition:
##
## def_key "key"
## push_characters "custom_filter"
## apply_filter
##
## If apply_filter can't be currently run, we end up with
## sequence of characters in input queue which will be
## treated just as we typed them. This may lead to unexpected
## results (in this case 'c' will most likely clear current
## playlist, 'u' will trigger database update, 's' will stop
## playback etc.). To prevent such thing from happening, we
## need to change above definition to this one:
##
## def_key "key"
## require_runnable "apply_filter"
## push_characters "custom_filter"
## apply_filter
##
## Here, first we test whether apply_filter can be actually run
## before we stuff characters into input queue, so if condition
## is not met, whole chain is aborted and we're fine.
##
## - require_screen "screen" - checks whether given screen is
## currently active. accepted values: browser, clock, help,
## media_library, outputs, playlist, playlist_editor,
## search_engine, tag_editor, visualizer, last_fm, lyrics,
## selected_items_adder, server_info, song_info,
## sort_playlist_dialog, tiny_tag_editor.
##
## - run_external_command "command" - runs given command using
## system() function.
##
## 5) In addition to binding to a key, you can also bind actions
## or chains of actions to a command. If it comes to commands,
## syntax is very similar to defining keys. Here goes example
## definition of a command:
##
## def_command "quit" [deferred]
## stop
## quit
##
## If you execute the above command (which can be done by
## invoking action execute_command, typing 'quit' and pressing
## enter), ncmpcpp will stop the player and then quit. Note the
## presence of word 'deferred' enclosed in square brackets. It
## tells ncmpcpp to wait for confirmation (ie. pressing enter)
## after you typed quit. Instead of 'deferred', 'immediate'
## could be used. Then ncmpcpp will not wait for confirmation
## (enter) and will execute the command the moment it sees it.
##
## Note: while command chains are executed, internal environment
## update (which includes current window refresh and mpd status
## update) is not performed for performance reasons. However, it
## may be desirable to do so in some situration. Therefore it's
## possible to invoke by hand by performing 'update enviroment'
## action.
##
## Note: There is a difference between:
##
## def_key "key"
## action1
##
## def_key "key"
## action2
##
## and
##
## def_key "key"
## action1
## action2
##
## First one binds two single actions to the same key whilst
## second one defines a chain of actions. The behavior of
## these two is different and is described in (1) and (2).
##
## Note: Function def_key accepts non-ascii characters.
##
##### List of unbound actions #####
##
## The following actions are not bound to any key/command:
##
## - set_volume
##
#
#def_key "mouse"
# mouse_event
#
#def_key "up"
# scroll_up
#
#def_key "shift-up"
# select_item
# scroll_up
#
#def_key "down"
# scroll_down
#
#def_key "shift-down"
# select_item
# scroll_down
#
#def_key "["
# scroll_up_album
#
#def_key "]"
# scroll_down_album
#
#def_key "{"
# scroll_up_artist
#
#def_key "}"
# scroll_down_artist
#
#def_key "page_up"
# page_up
#
#def_key "page_down"
# page_down
#
#def_key "home"
# move_home
#
#def_key "end"
# move_end
#
#def_key "insert"
# select_item
#
#def_key "enter"
# enter_directory
#
#def_key "enter"
# toggle_output
#
#def_key "enter"
# run_action
#
#def_key "enter"
# play_item
#
#def_key "space"
# add_item_to_playlist
#
#def_key "space"
# toggle_lyrics_update_on_song_change
#
#def_key "space"
# toggle_visualization_type
#
#def_key "delete"
# delete_playlist_items
#
#def_key "delete"
# delete_browser_items
#
#def_key "delete"
# delete_stored_playlist
#
#def_key "right"
# next_column
#
#def_key "right"
# slave_screen
#
#def_key "right"
# volume_up
#
#def_key "+"
# volume_up
#
#def_key "left"
# previous_column
#
#def_key "left"
# master_screen
#
#def_key "left"
# volume_down
#
#def_key "-"
# volume_down
#
#def_key ":"
# execute_command
#
#def_key "tab"
# next_screen
#
#def_key "shift-tab"
# previous_screen
#
#def_key "f1"
# show_help
#
#def_key "1"
# show_playlist
#
#def_key "2"
# show_browser
#
#def_key "2"
# change_browse_mode
#
#def_key "3"
# show_search_engine
#
#def_key "3"
# reset_search_engine
#
#def_key "4"
# show_media_library
#
#def_key "4"
# toggle_media_library_columns_mode
#
#def_key "5"
# show_playlist_editor
#
#def_key "6"
# show_tag_editor
#
#def_key "7"
# show_outputs
#
#def_key "8"
# show_visualizer
#
#def_key "="
# show_clock
#
#def_key "@"
# show_server_info
#
#def_key "s"
# stop
#
#def_key "p"
# pause
#
#def_key ">"
# next
#
#def_key "<"
# previous
#
#def_key "ctrl-h"
# jump_to_parent_directory
#
#def_key "ctrl-h"
# replay_song
#
#def_key "backspace"
# jump_to_parent_directory
#
#def_key "backspace"
# replay_song
#
#def_key "f"
# seek_forward
#
#def_key "b"
# seek_backward
#
#def_key "r"
# toggle_repeat
#
#def_key "z"
# toggle_random
#
#def_key "y"
# save_tag_changes
#
#def_key "y"
# start_searching
#
#def_key "y"
# toggle_single
#
#def_key "R"
# toggle_consume
#
#def_key "Y"
# toggle_replay_gain_mode
#
#def_key "T"
# toggle_add_mode
#
#def_key "|"
# toggle_mouse
#
#def_key "#"
# toggle_bitrate_visibility
#
#def_key "Z"
# shuffle
#
#def_key "x"
# toggle_crossfade
#
#def_key "X"
# set_crossfade
#
#def_key "u"
# update_database
#
#def_key "ctrl-s"
# sort_playlist
#
#def_key "ctrl-s"
# toggle_browser_sort_mode
#
#def_key "ctrl-s"
# toggle_media_library_sort_mode
#
#def_key "ctrl-r"
# reverse_playlist
#
#def_key "ctrl-f"
# apply_filter
#
#def_key "ctrl-_"
# select_found_items
#
#def_key "/"
# find
#
#def_key "/"
# find_item_forward
#
#def_key "?"
# find
#
#def_key "?"
# find_item_backward
#
#def_key "."
# next_found_item
#
#def_key ","
# previous_found_item
#
#def_key "w"
# toggle_find_mode
#
#def_key "e"
# edit_song
#
#def_key "e"
# edit_library_tag
#
#def_key "e"
# edit_library_album
#
#def_key "e"
# edit_directory_name
#
#def_key "e"
# edit_playlist_name
#
#def_key "e"
# edit_lyrics
#
#def_key "i"
# show_song_info
#
#def_key "I"
# show_artist_info
#
#def_key "g"
# jump_to_position_in_song
#
#def_key "l"
# show_lyrics
#
#def_key "ctrl-v"
# select_range
#
#def_key "v"
# reverse_selection
#
#def_key "V"
# remove_selection
#
#def_key "B"
# select_album
#
#def_key "a"
# add_selected_items
#
#def_key "c"
# clear_playlist
#
#def_key "c"
# clear_main_playlist
#
#def_key "C"
# crop_playlist
#
#def_key "C"
# crop_main_playlist
#
#def_key "m"
# move_sort_order_up
#
#def_key "m"
# move_selected_items_up
#
#def_key "n"
# move_sort_order_down
#
#def_key "n"
# move_selected_items_down
#
#def_key "M"
# move_selected_items_to
#
#def_key "A"
# add
#
#def_key "S"
# save_playlist
#
#def_key "o"
# jump_to_playing_song
#
#def_key "G"
# jump_to_browser
#
#def_key "G"
# jump_to_playlist_editor
#
#def_key "~"
# jump_to_media_library
#
#def_key "E"
# jump_to_tag_editor
#
#def_key "U"
# toggle_playing_song_centering
#
#def_key "P"
# toggle_display_mode
#
#def_key "\\"
# toggle_interface
#
#def_key "!"
# toggle_separators_between_albums
#
#def_key "L"
# toggle_lyrics_fetcher
#
#def_key "F"
# fetch_lyrics_in_background
#
#def_key "alt-l"
# toggle_fetching_lyrics_in_background
#
#def_key "ctrl-l"
# toggle_screen_lock
#
#def_key "`"
# toggle_library_tag_type
#
#def_key "`"
# refetch_lyrics
#
#def_key "`"
# add_random_items
#
#def_key "ctrl-p"
# set_selected_items_priority
#
#def_key "q"
# quit
#
#
def_key "f"
find
def_key "f"
find_item_forward
def_key "+"
show_clock
def_key "="
volume_up
def_key "j"
scroll_down
def_key "k"
scroll_up
def_key "ctrl-u"
page_up
#push_characters "kkkkkkkkkkkkkkk"
def_key "ctrl-d"
page_down
#push_characters "jjjjjjjjjjjjjjj"
def_key "u"
page_up
#push_characters "kkkkkkkkkkkkkkk"
def_key "d"
page_down
#push_characters "jjjjjjjjjjjjjjj"
def_key "h"
previous_column
def_key "l"
next_column
def_key "."
show_lyrics
def_key "n"
next_found_item
def_key "N"
previous_found_item
# not used but bound
def_key "J"
move_sort_order_down
def_key "K"
move_sort_order_up
def_key "h"
jump_to_parent_directory
def_key "l"
enter_directory
def_key "l"
run_action
def_key "l"
play_item
def_key "m"
show_media_library
def_key "m"
toggle_media_library_columns_mode
def_key "t"
show_tag_editor
def_key "v"
show_visualizer
def_key "G"
move_end
def_key "g"
move_home
def_key "U"
update_database

View file

@ -0,0 +1,546 @@
##############################################################################
## This is the example configuration file. Copy it to $HOME/.ncmpcpp/config ##
## or $XDG_CONFIG_HOME/ncmpcpp/config and set up your preferences. ##
##############################################################################
#
##### directories ######
##
## Directory for storing ncmpcpp related files. Changing it is useful if you
## want to store everything somewhere else and provide command line setting for
## alternative location to config file which defines that while launching
## ncmpcpp.
##
#
#ncmpcpp_directory = ~/.ncmpcpp
#
##
## Directory for storing downloaded lyrics. It defaults to ~/.lyrics since other
## MPD clients (eg. ncmpc) also use that location.
##
#
#lyrics_directory = ~/.lyrics
#
##### connection settings #####
#
#mpd_host = localhost
#
#mpd_port = 6600
#
#mpd_connection_timeout = 5
#
## Needed for tag editor and file operations to work.
##
mpd_music_dir = "~/Nextcloud/Media/Music"
#
#mpd_crossfade_time = 5
#
##### music visualizer #####
##
## Note: In order to make music visualizer work you'll need to use mpd fifo
## output, whose format parameter has to be set to 44100:16:1 for mono
## visualization or 44100:16:2 for stereo visualization. Example configuration
## (it has to be put into mpd.conf):
##
## audio_output {
## type "fifo"
## name "Visualizer feed"
## path "/tmp/mpd.fifo"
## format "44100:16:2"
## }
##
#
#visualizer_fifo_path = /tmp/mpd.fifo
#
##
## Note: Below parameter is needed for ncmpcpp to determine which output
## provides data for visualizer and thus allow syncing between visualization and
## sound as currently there are some problems with it.
##
#
#visualizer_output_name = Visualizer feed
#
##
## If you set format to 44100:16:2, make it 'yes'.
##
#visualizer_in_stereo = yes
#
##
## Note: Below parameter defines how often ncmpcpp has to "synchronize"
## visualizer and audio outputs. 30 seconds is optimal value, but if you
## experience synchronization problems, set it to lower value. Keep in mind
## that sane values start with >=10.
##
#
#visualizer_sync_interval = 30
#
##
## Note: To enable spectrum frequency visualization you need to compile ncmpcpp
## with fftw3 support.
##
#
## Available values: spectrum, wave, wave_filled, ellipse.
##
visualizer_type = spectrum
#
#visualizer_look = ●卐
#visualizer_look = 卐
#
#visualizer_color = blue, cyan, green, yellow, magenta, red
#
## Alternative subset of 256 colors for terminals that support it.
##
#visualizer_color = 41, 83, 119, 155, 185, 215, 209, 203, 197, 161
#
##### system encoding #####
##
## ncmpcpp should detect your charset encoding but if it failed to do so, you
## can specify charset encoding you are using here.
##
## Note: You can see whether your ncmpcpp build supports charset detection by
## checking output of `ncmpcpp --version`.
##
## Note: Since MPD uses UTF-8 by default, setting this option makes sense only
## if your encoding is different.
##
#
#system_encoding = ""
#
##### delays #####
#
## Time of inactivity (in seconds) after playlist highlighting will be disabled
## (0 = always on).
##
#playlist_disable_highlight_delay = 5
#
## Defines how long messages are supposed to be visible.
##
message_delay_time = 1
#
##### song format #####
##
## For a song format you can use:
##
## %l - length
## %f - filename
## %D - directory
## %a - artist
## %A - album artist
## %t - title
## %b - album
## %y - date
## %n - track number (01/12 -> 01)
## %N - full track info (01/12 -> 01/12)
## %g - genre
## %c - composer
## %p - performer
## %d - disc
## %C - comment
## %P - priority
## $R - begin right alignment
##
## If you want to make sure that a part of the format is displayed only when
## certain tags are present, you can archieve it by grouping them with brackets,
## e.g. '{%a - %t}' will be evaluated to 'ARTIST - TITLE' if both tags are
## present or '' otherwise. It is also possible to define a list of
## alternatives by providing several groups and separating them with '|',
## e.g. '{%t}|{%f}' will be evaluated to 'TITLE' or 'FILENAME' if the former is
## not present.
##
## Note: If you want to set limit on maximal length of a tag, just put the
## appropriate number between % and character that defines tag type, e.g. to
## make album take max. 20 terminal cells, use '%20b'.
##
## In addition, formats support markers used for text attributes. They are
## followed by character '$'. After that you can put:
##
## - 0 - default window color (discards all other colors)
## - 1 - black
## - 2 - red
## - 3 - green
## - 4 - yellow
## - 5 - blue
## - 6 - magenta
## - 7 - cyan
## - 8 - white
## - 9 - end of current color
## - b - bold text
## - u - underline text
## - r - reverse colors
## - a - use alternative character set
##
## If you don't want to use a non-color attribute anymore, just put it again,
## but this time insert character '/' between '$' and attribute character,
## e.g. {$b%t$/b}|{$r%f$/r} will display bolded title tag or filename with
## reversed colors.
##
## If you want to use 256 colors and/or background colors in formats (the naming
## scheme is described below in section about color definitions), it can be done
## with the syntax $(COLOR), e.g. to set the artist tag to one of the
## non-standard colors and make it have yellow background, you need to write
## $(197_yellow)%a$(end). Note that for standard colors this is interchangable
## with attributes listed above.
##
## Note: colors can be nested.
##
#
song_list_format = {$4%a - }{%t}|{$8%f$9}$R{$3(%l)$9}
#
song_status_format = $b{{$8"%t"}} $3by {$4%a{ $3in $7%b{ (%y)}} $3}|{$8%f}
#
song_library_format = {%n - }{%t}|{%f}
#
alternative_header_first_line_format = $b$1$aqqu$/a$9 {%t}|{%f} $1$atqq$/a$9$/b
#
alternative_header_second_line_format = {{$4$b%a$/b$9}{ - $7%b$9}{ ($4%y$9)}}|{%D}
#
current_item_prefix = $(cyan)$r$b
#
current_item_suffix = $/r$(end)$/b
#
current_item_inactive_column_prefix = $(magenta)$r
#
current_item_inactive_column_suffix = $/r$(end)
#
#now_playing_prefix = $b
#
#now_playing_suffix = $/b
#
#browser_playlist_prefix = "$2playlist$9 "
#
#selected_item_prefix = $6
#
#selected_item_suffix = $9
#
#modified_item_prefix = $3> $9
#
##
## Note: attributes are not supported for the following variables.
##
#song_window_title_format = {%a - }{%t}|{%f}
##
## Note: Below variables are used for sorting songs in browser. The sort mode
## determines how songs are sorted, and can be used in combination with a sort
## format to specify a custom sorting format. Available values for
## browser_sort_mode are "name", "mtime", "format" and "noop".
##
#
#browser_sort_mode = name
#
#browser_sort_format = {%a - }{%t}|{%f} {(%l)}
#
##### columns settings #####
##
## syntax of song columns list format is "column column etc."
##
## - syntax for each column is:
##
## (width of the column)[color of the column]{displayed tag}
##
## Note: Width is by default in %, if you want a column to have fixed size, add
## 'f' after the value, e.g. (10)[white]{a} will be the column that take 10% of
## screen (so the real width will depend on actual screen size), whereas
## (10f)[white]{a} will take 10 terminal cells, no matter how wide the screen
## is.
##
## - color is optional (if you want the default one, leave the field empty).
##
## Note: You can give a column additional attributes by putting appropriate
## character after displayed tag character. Available attributes are:
##
## - r - column will be right aligned
## - E - if tag is empty, empty tag marker won't be displayed
##
## You can also:
##
## - give a column custom name by putting it after attributes, separated with
## character ':', e.g. {lr:Length} gives you right aligned column of lengths
## named "Length".
##
## - define sequence of tags, that have to be displayed in case predecessor is
## empty in a way similar to the one in classic song format, i.e. using '|'
## character, e.g. {a|c|p:Owner} creates column named "Owner" that tries to
## display artist tag and then composer and performer if previous ones are not
## available.
##
#
#song_columns_list_format = (20)[]{a} (6f)[green]{NE} (50)[white]{t|f:Title} (20)[cyan]{b} (7f)[magenta]{l}
#
##### various settings #####
#
##
## Note: Custom command that will be executed each time song changes. Useful for
## notifications etc.
##
#execute_on_song_change = ""
#
##
## Note: Custom command that will be executed each time player state
## changes. The environment variable MPD_PLAYER_STATE is set to the current
## state (either unknown, play, pause, or stop) for its duration.
##
#
#execute_on_player_state_change = ""
#
#playlist_show_mpd_host = no
#
#playlist_show_remaining_time = no
#
#playlist_shorten_total_times = no
#
#playlist_separate_albums = no
#
##
## Note: Possible display modes: classic, columns.
##
#playlist_display_mode = columns
#
browser_display_mode = columns
#
#search_engine_display_mode = classic
#
#playlist_editor_display_mode = classic
#
#discard_colors_if_item_is_selected = yes
#
#show_duplicate_tags = true
#
#incremental_seeking = yes
#
#seek_time = 1
#
#volume_change_step = 2
#
#autocenter_mode = no
#
#centered_cursor = no
#
##
## Note: You can specify third character which will be used to build 'empty'
## part of progressbar.
##
progressbar_look = ->
#
## Available values: database, playlist.
##
#default_place_to_search_in = database
#
## Available values: classic, alternative.
##
#user_interface = classic
#
#data_fetching_delay = yes
#
## Available values: artist, album_artist, date, genre, composer, performer.
##
media_library_primary_tag = album_artist
#
media_library_albums_split_by_date = no
#
## Available values: wrapped, normal.
##
#default_find_mode = wrapped
#
#default_tag_editor_pattern = %n - %t
#
#header_visibility = yes
#
#statusbar_visibility = yes
#
#titles_visibility = yes
#
#header_text_scrolling = yes
#
#cyclic_scrolling = no
#
#lines_scrolled = 2
#
#lyrics_fetchers = lyricwiki, azlyrics, genius, sing365, lyricsmania, metrolyrics, justsomelyrics, jahlyrics, plyrics, tekstowo, internet
#
#follow_now_playing_lyrics = no
#
#fetch_lyrics_for_current_song_in_background = no
#
#store_lyrics_in_song_dir = no
#
#generate_win32_compatible_filenames = yes
#
#allow_for_physical_item_deletion = no
#
##
## Note: If you set this variable, ncmpcpp will try to get info from last.fm in
## language you set and if it fails, it will fall back to english. Otherwise it
## will use english the first time.
##
## Note: Language has to be expressed as an ISO 639 alpha-2 code.
##
#lastfm_preferred_language = en
#
#space_add_mode = add_remove
#
#show_hidden_files_in_local_browser = no
#
##
## How shall screen switcher work?
##
## - "previous" - switch between the current and previous screen.
## - "screen1,...,screenN" - switch between given sequence of screens.
##
## Screens available for use: help, playlist, browser, search_engine,
## media_library, playlist_editor, tag_editor, outputs, visualizer, clock,
## lyrics, last_fm.
##
#screen_switcher_mode = playlist, browser
#
##
## Note: You can define startup screen by choosing screen from the list above.
##
startup_screen = media_library
#
##
## Note: You can define startup slave screen by choosing screen from the list
## above or an empty value for no slave screen.
##
#startup_slave_screen = ""
#
#startup_slave_screen_focus = no
#
##
## Default width of locked screen (in %). Acceptable values are from 20 to 80.
##
#
#locked_screen_width_part = 50
#
#ask_for_locked_screen_width_part = yes
#
#jump_to_now_playing_song_at_start = yes
#
#ask_before_clearing_playlists = yes
#
#clock_display_seconds = no
#
display_volume_level = no
#
#display_bitrate = no
#
#display_remaining_time = no
#
## Available values: none, basic, extended, perl.
##
#regular_expressions = perl
#
##
## Note: if below is enabled, ncmpcpp will ignore leading "The" word while
## sorting items in browser, tags in media library, etc.
##
ignore_leading_the = yes
#
##
## Note: if below is enabled, ncmpcpp will ignore diacritics while searching and
## filtering lists. This takes an effect only if boost was compiled with ICU
## support.
##
#ignore_diacritics = no
#
#block_search_constraints_change_if_items_found = yes
#
#mouse_support = yes
#
#mouse_list_scroll_whole_page = yes
#
#empty_tag_marker = <empty>
#
#tags_separator = " | "
#
#tag_editor_extended_numeration = no
#
#media_library_sort_by_mtime = no
#
#enable_window_title = yes
#
##
## Note: You can choose default search mode for search engine. Available modes
## are:
##
## - 1 - use mpd built-in searching (no regexes, pattern matching)
##
## - 2 - use ncmpcpp searching (pattern matching with support for regexes, but
## if your mpd is on a remote machine, downloading big database to process
## it can take a while
##
## - 3 - match only exact values (this mode uses mpd function for searching in
## database and local one for searching in current playlist)
##
#
#search_engine_default_search_mode = 1
#
external_editor = nvim
#
## Note: set to yes if external editor is a console application.
##
use_console_editor = yes
#
##### colors definitions #####
##
## It is possible to set a background color by setting a color value
## "<foreground>_<background>", e.g. red_black will set foregound color to red
## and background color to black.
##
## In addition, for terminals that support 256 colors it is possible to set one
## of them by using a number in range [1, 256] instead of color name,
## e.g. numerical value corresponding to red_black is 2_1. To find out if the
## terminal supports 256 colors, run ncmpcpp and check out the bottom of the
## help screen for list of available colors and their numerical values.
##
## What is more, there are two special values for the background color:
## "transparent" and "current". The first one explicitly sets the background to
## be transparent, while the second one allows you to preserve current
## background color and change only the foreground one. It's used implicitly
## when background color is not specified.
##
## Moreover, it is possible to attach format information to selected color
## variables by appending to their end a colon followed by one or more format
## flags, e.g. black:b or red:ur. The following variables support this syntax:
## visualizer_color, color1, color2, empty_tag_color, volume_color,
## state_line_color, state_flags_color, progressbar_color,
## progressbar_elapsed_color, player_state_color, statusbar_time_color,
## alternative_ui_separator_color.
##
## Note: due to technical limitations of older ncurses version, if 256 colors
## are used there is a possibility that you'll be able to use only colors with
## transparent background.
#
#colors_enabled = yes
#
empty_tag_color = magenta
#
#header_window_color = magenta
#
#volume_color = default
#
#state_line_color = default
#
#state_flags_color = default:b
#
#main_window_color = white
#
#color1 = white
#
#color2 = green
#
progressbar_color = black:b
#
progressbar_elapsed_color = blue:b
#
statusbar_color = red
#
statusbar_time_color = cyan:b
#
#player_state_color = default:b
#
#alternative_ui_separator_color = black:b
#
#window_border_color = green
#
#active_window_border = red
#

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 154 KiB

View file

@ -0,0 +1,38 @@
checkbox-checked-dark
checkbox-checked-insensitive-dark
checkbox-checked-insensitive
checkbox-checked
checkbox-mixed-dark
checkbox-mixed-insensitive-dark
checkbox-mixed-insensitive
checkbox-mixed
checkbox-unchecked-dark
checkbox-unchecked-insensitive-dark
checkbox-unchecked-insensitive
checkbox-unchecked
grid-selection-checked-dark
grid-selection-checked
grid-selection-unchecked-dark
grid-selection-unchecked
menuitem-checkbox-checked-hover
menuitem-checkbox-checked-insensitive
menuitem-checkbox-checked
menuitem-checkbox-mixed-hover
menuitem-checkbox-mixed-insensitive
menuitem-checkbox-mixed
menuitem-radio-checked-hover
menuitem-radio-checked-insensitive
menuitem-radio-checked
pane-handle
radio-checked-dark
radio-checked-insensitive-dark
radio-checked-insensitive
radio-checked
radio-mixed-dark
radio-mixed-insensitive-dark
radio-mixed-insensitive
radio-mixed
radio-unchecked-dark
radio-unchecked-insensitive-dark
radio-unchecked-insensitive
radio-unchecked

View file

@ -0,0 +1,4 @@
#!/usr/bin/env bash
for f in $@; do
rsvg-convert -d 300 -p 300 -f svg $f -o $f.bak ; mv $f.bak $f
done

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 8.332031 L 116.667969 8.332031 C 121.257812 8.332031 125 12.078125 125 16.667969 L 125 116.667969 C 125 121.257812 121.257812 125 116.667969 125 L 16.667969 125 C 12.078125 125 8.332031 121.257812 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.078125 12.078125 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 14.550781 5.695312 L 118.78125 5.695312 C 123.371094 5.695312 127.117188 9.441406 127.117188 14.03125 L 127.117188 118.75 C 127.117188 123.371094 123.371094 127.082031 118.78125 127.082031 L 14.550781 127.082031 C 9.960938 127.082031 6.21875 123.371094 6.21875 118.75 L 6.21875 14.03125 C 6.21875 9.441406 9.960938 5.695312 14.550781 5.695312 Z M 14.550781 5.695312 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.3;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 14.550781 5.695312 L 118.78125 5.695312 C 123.371094 5.695312 127.117188 9.441406 127.117188 14.03125 L 127.117188 118.75 C 127.117188 123.371094 123.371094 127.082031 118.78125 127.082031 L 14.550781 127.082031 C 9.960938 127.082031 6.21875 123.371094 6.21875 118.75 L 6.21875 14.03125 C 6.21875 9.441406 9.960938 5.695312 14.550781 5.695312 Z M 14.550781 5.695312 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.3;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 8.332031 L 116.667969 8.332031 C 121.257812 8.332031 125 12.078125 125 16.667969 L 125 116.667969 C 125 121.257812 121.257812 125 116.667969 125 L 16.667969 125 C 12.078125 125 8.332031 121.257812 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.078125 12.078125 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 8.332031 L 116.667969 8.332031 C 121.257812 8.332031 125 12.078125 125 16.667969 L 125 116.667969 C 125 121.257812 121.257812 125 116.667969 125 L 16.667969 125 C 12.078125 125 8.332031 121.257812 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.078125 12.078125 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 14.453125 7.292969 L 119.402344 7.292969 C 124.25 7.292969 128.15625 11.101562 128.15625 15.851562 L 128.15625 118.554688 C 128.15625 123.273438 124.25 127.117188 119.402344 127.117188 L 14.453125 127.117188 C 9.601562 127.117188 5.695312 123.273438 5.695312 118.554688 L 5.695312 15.851562 C 5.695312 11.101562 9.601562 7.292969 14.453125 7.292969 Z M 14.453125 7.292969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.3;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 14.453125 7.292969 L 119.402344 7.292969 C 124.25 7.292969 128.15625 11.101562 128.15625 15.851562 L 128.15625 118.554688 C 128.15625 123.273438 124.25 127.117188 119.402344 127.117188 L 14.453125 127.117188 C 9.601562 127.117188 5.695312 123.273438 5.695312 118.554688 L 5.695312 15.851562 C 5.695312 11.101562 9.601562 7.292969 14.453125 7.292969 Z M 14.453125 7.292969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.3;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 8.332031 L 116.667969 8.332031 C 121.257812 8.332031 125 12.078125 125 16.667969 L 125 116.667969 C 125 121.257812 121.257812 125 116.667969 125 L 16.667969 125 C 12.078125 125 8.332031 121.257812 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.078125 12.078125 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 8.332031 L 116.667969 8.332031 C 121.257812 8.332031 125 12.078125 125 16.667969 L 125 116.667969 C 125 121.257812 121.257812 125 116.667969 125 L 16.667969 125 C 12.078125 125 8.332031 121.257812 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.078125 12.078125 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 13.933594 5.175781 L 118.878906 5.175781 C 123.730469 5.175781 127.636719 9.015625 127.636719 13.800781 L 127.636719 117.414062 C 127.636719 122.199219 123.730469 126.042969 118.878906 126.042969 L 13.933594 126.042969 C 9.082031 126.042969 5.175781 122.199219 5.175781 117.414062 L 5.175781 13.800781 C 5.175781 9.015625 9.082031 5.175781 13.933594 5.175781 Z M 13.933594 5.175781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 13.933594 5.175781 L 118.878906 5.175781 C 123.730469 5.175781 127.636719 9.015625 127.636719 13.800781 L 127.636719 117.414062 C 127.636719 122.199219 123.730469 126.042969 118.878906 126.042969 L 13.933594 126.042969 C 9.082031 126.042969 5.175781 122.199219 5.175781 117.414062 L 5.175781 13.800781 C 5.175781 9.015625 9.082031 5.175781 13.933594 5.175781 Z M 13.933594 5.175781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 8.332031 L 116.667969 8.332031 C 121.257812 8.332031 125 12.078125 125 16.667969 L 125 116.667969 C 125 121.257812 121.257812 125 116.667969 125 L 16.667969 125 C 12.078125 125 8.332031 121.257812 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.078125 12.078125 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="333pt" height="333pt" viewBox="0 0 333 333" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 20.246094 11.914062 L 316.082031 11.914062 C 320.671875 11.914062 324.414062 15.625 324.414062 20.246094 L 324.414062 316.082031 C 324.414062 320.671875 320.671875 324.414062 316.082031 324.414062 L 20.246094 324.414062 C 15.625 324.414062 11.914062 320.671875 11.914062 316.082031 L 11.914062 20.246094 C 11.914062 15.625 15.625 11.914062 20.246094 11.914062 Z M 20.246094 11.914062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 41.667969 0 C 18.585938 0 0 18.585938 0 41.667969 L 0 291.667969 C 0 314.746094 18.585938 333.332031 41.667969 333.332031 L 291.667969 333.332031 C 314.746094 333.332031 333.332031 314.746094 333.332031 291.667969 L 333.332031 41.667969 C 333.332031 18.585938 314.746094 0 291.667969 0 Z M 41.667969 17.121094 L 291.667969 17.121094 C 303.222656 17.121094 316.960938 30.109375 316.960938 41.667969 L 316.960938 291.667969 C 316.960938 303.222656 303.222656 316.960938 291.667969 316.960938 L 41.667969 316.960938 C 30.109375 316.960938 17.121094 303.222656 17.121094 291.667969 L 17.121094 41.667969 C 17.121094 30.109375 30.109375 17.121094 41.667969 17.121094 Z M 41.667969 17.121094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 41.667969 0 C 18.585938 0 0 18.585938 0 41.667969 L 0 291.667969 C 0 314.746094 18.585938 333.332031 41.667969 333.332031 L 291.667969 333.332031 C 314.746094 333.332031 333.332031 314.746094 333.332031 291.667969 L 333.332031 41.667969 C 333.332031 18.585938 314.746094 0 291.667969 0 Z M 41.667969 17.121094 L 291.667969 17.121094 C 303.222656 17.121094 316.960938 30.109375 316.960938 41.667969 L 316.960938 291.667969 C 316.960938 303.222656 303.222656 316.960938 291.667969 316.960938 L 41.667969 316.960938 C 30.109375 316.960938 17.121094 303.222656 17.121094 291.667969 L 17.121094 41.667969 C 17.121094 30.109375 30.109375 17.121094 41.667969 17.121094 Z M 41.667969 17.121094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 242.773438 81.640625 C 235.15625 81.835938 227.636719 85.027344 222.234375 90.527344 L 138.3125 170.441406 L 109.503906 138.183594 C 99.25 124.511719 76.789062 123.046875 64.910156 135.253906 C 53.027344 147.492188 54.6875 170.378906 68.164062 180.695312 L 117.839844 234.015625 C 137.335938 253.546875 146.160156 250.945312 165.851562 231.21875 C 165.851562 231.21875 233.5625 149.773438 273.273438 122.234375 C 282.03125 113.898438 285.710938 111.589844 281.121094 100.324219 C 276.5625 89.03125 254.753906 81.21875 242.773438 81.640625 Z M 242.773438 81.640625 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="333pt" height="333pt" viewBox="0 0 333 333" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 20.246094 11.914062 L 316.082031 11.914062 C 320.671875 11.914062 324.414062 15.625 324.414062 20.246094 L 324.414062 316.082031 C 324.414062 320.671875 320.671875 324.414062 316.082031 324.414062 L 20.246094 324.414062 C 15.625 324.414062 11.914062 320.671875 11.914062 316.082031 L 11.914062 20.246094 C 11.914062 15.625 15.625 11.914062 20.246094 11.914062 Z M 20.246094 11.914062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 41.667969 0 C 18.585938 0 0 18.585938 0 41.667969 L 0 291.667969 C 0 314.746094 18.585938 333.332031 41.667969 333.332031 L 291.667969 333.332031 C 314.746094 333.332031 333.332031 314.746094 333.332031 291.667969 L 333.332031 41.667969 C 333.332031 18.585938 314.746094 0 291.667969 0 Z M 41.667969 17.121094 L 291.667969 17.121094 C 303.222656 17.121094 316.960938 30.109375 316.960938 41.667969 L 316.960938 291.667969 C 316.960938 303.222656 303.222656 316.960938 291.667969 316.960938 L 41.667969 316.960938 C 30.109375 316.960938 17.121094 303.222656 17.121094 291.667969 L 17.121094 41.667969 C 17.121094 30.109375 30.109375 17.121094 41.667969 17.121094 Z M 41.667969 17.121094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 41.667969 0 C 18.585938 0 0 18.585938 0 41.667969 L 0 291.667969 C 0 314.746094 18.585938 333.332031 41.667969 333.332031 L 291.667969 333.332031 C 314.746094 333.332031 333.332031 314.746094 333.332031 291.667969 L 333.332031 41.667969 C 333.332031 18.585938 314.746094 0 291.667969 0 Z M 41.667969 17.121094 L 291.667969 17.121094 C 303.222656 17.121094 316.960938 30.109375 316.960938 41.667969 L 316.960938 291.667969 C 316.960938 303.222656 303.222656 316.960938 291.667969 316.960938 L 41.667969 316.960938 C 30.109375 316.960938 17.121094 303.222656 17.121094 291.667969 L 17.121094 41.667969 C 17.121094 30.109375 30.109375 17.121094 41.667969 17.121094 Z M 41.667969 17.121094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 242.773438 81.640625 C 235.15625 81.835938 227.636719 85.027344 222.234375 90.527344 L 138.3125 170.441406 L 109.503906 138.183594 C 99.25 124.511719 76.789062 123.046875 64.910156 135.253906 C 53.027344 147.492188 54.6875 170.378906 68.164062 180.695312 L 117.839844 234.015625 C 137.335938 253.546875 146.160156 250.945312 165.851562 231.21875 C 165.851562 231.21875 233.5625 149.773438 273.273438 122.234375 C 282.03125 113.898438 285.710938 111.589844 281.121094 100.324219 C 276.5625 89.03125 254.753906 81.21875 242.773438 81.640625 Z M 242.773438 81.640625 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="333pt" height="333pt" viewBox="0 0 333 333" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 20.246094 11.914062 L 316.082031 11.914062 C 320.671875 11.914062 324.414062 15.625 324.414062 20.246094 L 324.414062 316.082031 C 324.414062 320.671875 320.671875 324.414062 316.082031 324.414062 L 20.246094 324.414062 C 15.625 324.414062 11.914062 320.671875 11.914062 316.082031 L 11.914062 20.246094 C 11.914062 15.625 15.625 11.914062 20.246094 11.914062 Z M 20.246094 11.914062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 41.667969 0 C 18.585938 0 0 18.585938 0 41.667969 L 0 291.667969 C 0 314.746094 18.585938 333.332031 41.667969 333.332031 L 291.667969 333.332031 C 314.746094 333.332031 333.332031 314.746094 333.332031 291.667969 L 333.332031 41.667969 C 333.332031 18.585938 314.746094 0 291.667969 0 Z M 41.667969 17.121094 L 291.667969 17.121094 C 303.222656 17.121094 316.960938 30.109375 316.960938 41.667969 L 316.960938 291.667969 C 316.960938 303.222656 303.222656 316.960938 291.667969 316.960938 L 41.667969 316.960938 C 30.109375 316.960938 17.121094 303.222656 17.121094 291.667969 L 17.121094 41.667969 C 17.121094 30.109375 30.109375 17.121094 41.667969 17.121094 Z M 41.667969 17.121094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 41.667969 0 C 18.585938 0 0 18.585938 0 41.667969 L 0 291.667969 C 0 314.746094 18.585938 333.332031 41.667969 333.332031 L 291.667969 333.332031 C 314.746094 333.332031 333.332031 314.746094 333.332031 291.667969 L 333.332031 41.667969 C 333.332031 18.585938 314.746094 0 291.667969 0 Z M 41.667969 17.121094 L 291.667969 17.121094 C 303.222656 17.121094 316.960938 30.109375 316.960938 41.667969 L 316.960938 291.667969 C 316.960938 303.222656 303.222656 316.960938 291.667969 316.960938 L 41.667969 316.960938 C 30.109375 316.960938 17.121094 303.222656 17.121094 291.667969 L 17.121094 41.667969 C 17.121094 30.109375 30.109375 17.121094 41.667969 17.121094 Z M 41.667969 17.121094 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="333pt" height="333pt" viewBox="0 0 333 333" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 20.246094 11.914062 L 316.082031 11.914062 C 320.671875 11.914062 324.414062 15.625 324.414062 20.246094 L 324.414062 316.082031 C 324.414062 320.671875 320.671875 324.414062 316.082031 324.414062 L 20.246094 324.414062 C 15.625 324.414062 11.914062 320.671875 11.914062 316.082031 L 11.914062 20.246094 C 11.914062 15.625 15.625 11.914062 20.246094 11.914062 Z M 20.246094 11.914062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 41.667969 0 C 18.585938 0 0 18.585938 0 41.667969 L 0 291.667969 C 0 314.746094 18.585938 333.332031 41.667969 333.332031 L 291.667969 333.332031 C 314.746094 333.332031 333.332031 314.746094 333.332031 291.667969 L 333.332031 41.667969 C 333.332031 18.585938 314.746094 0 291.667969 0 Z M 41.667969 17.121094 L 291.667969 17.121094 C 303.222656 17.121094 316.960938 30.109375 316.960938 41.667969 L 316.960938 291.667969 C 316.960938 303.222656 303.222656 316.960938 291.667969 316.960938 L 41.667969 316.960938 C 30.109375 316.960938 17.121094 303.222656 17.121094 291.667969 L 17.121094 41.667969 C 17.121094 30.109375 30.109375 17.121094 41.667969 17.121094 Z M 41.667969 17.121094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 41.667969 0 C 18.585938 0 0 18.585938 0 41.667969 L 0 291.667969 C 0 314.746094 18.585938 333.332031 41.667969 333.332031 L 291.667969 333.332031 C 314.746094 333.332031 333.332031 314.746094 333.332031 291.667969 L 333.332031 41.667969 C 333.332031 18.585938 314.746094 0 291.667969 0 Z M 41.667969 17.121094 L 291.667969 17.121094 C 303.222656 17.121094 316.960938 30.109375 316.960938 41.667969 L 316.960938 291.667969 C 316.960938 303.222656 303.222656 316.960938 291.667969 316.960938 L 41.667969 316.960938 C 30.109375 316.960938 17.121094 303.222656 17.121094 291.667969 L 17.121094 41.667969 C 17.121094 30.109375 30.109375 17.121094 41.667969 17.121094 Z M 41.667969 17.121094 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.6;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 97.101562 32.648438 C 94.074219 32.746094 91.046875 34.015625 88.898438 36.199219 L 55.304688 68.164062 L 43.816406 55.273438 C 39.714844 49.804688 30.730469 49.21875 25.976562 54.101562 C 21.222656 58.984375 21.875 68.164062 27.277344 72.265625 L 47.136719 93.621094 C 54.949219 101.433594 58.464844 100.390625 66.339844 92.480469 C 66.339844 92.480469 93.425781 59.894531 109.308594 48.894531 C 112.824219 45.574219 114.289062 44.628906 112.433594 40.136719 C 110.613281 35.613281 101.886719 32.488281 97.101562 32.648438 Z M 97.101562 32.648438 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.6;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 16.667969 0 C 7.421875 0 0 7.421875 0 16.667969 L 0 116.667969 C 0 125.910156 7.421875 133.332031 16.667969 133.332031 L 116.667969 133.332031 C 125.910156 133.332031 133.332031 125.910156 133.332031 116.667969 L 133.332031 16.667969 C 133.332031 7.421875 125.910156 0 116.667969 0 Z M 16.667969 8.332031 L 116.667969 8.332031 C 121.289062 8.332031 125 12.042969 125 16.667969 L 125 116.667969 C 125 121.289062 121.289062 125 116.667969 125 L 16.667969 125 C 12.042969 125 8.332031 121.289062 8.332031 116.667969 L 8.332031 16.667969 C 8.332031 12.042969 12.042969 8.332031 16.667969 8.332031 Z M 16.667969 8.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 919 B

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 91.667969 66.667969 C 91.667969 80.46875 80.46875 91.667969 66.667969 91.667969 C 52.863281 91.667969 41.667969 80.46875 41.667969 66.667969 C 41.667969 52.863281 52.863281 41.667969 66.667969 41.667969 C 80.46875 41.667969 91.667969 52.863281 91.667969 66.667969 Z M 91.667969 66.667969 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.6;" d="M 91.667969 66.667969 C 91.667969 80.46875 80.46875 91.667969 66.667969 91.667969 C 52.863281 91.667969 41.667969 80.46875 41.667969 66.667969 C 41.667969 52.863281 52.863281 41.667969 66.667969 41.667969 C 80.46875 41.667969 91.667969 52.863281 91.667969 66.667969 Z M 91.667969 66.667969 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 91.667969 66.667969 C 91.667969 80.46875 80.46875 91.667969 66.667969 91.667969 C 52.863281 91.667969 41.667969 80.46875 41.667969 66.667969 C 41.667969 52.863281 52.863281 41.667969 66.667969 41.667969 C 80.46875 41.667969 91.667969 52.863281 91.667969 66.667969 Z M 91.667969 66.667969 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.6;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#fbf1c7;fill-opacity:0.5;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 777 B

View file

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="75pt" height="33pt" viewBox="0 0 75 33" version="1.1">
<defs>
<filter id="alpha" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
<feColorMatrix type="matrix" in="SourceGraphic" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
</filter>
<image id="image9" width="75" height="33" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEsAAAAhCAYAAACRIVbWAAAABmJLR0QA/wD/AP+gvaeTAAAAZElEQVRoge3QsQmEABREwe81oDVYzrVtTeZ2ILxEUGbiDZa3DDMzc6zr9j/P/W7ze+rMF4gViBWIFYgViBWIFYgViBWIFYgViBWIFYgViBWIFYgViBWIFYgViBWIFYgFAABvcgF9SgN3pbm/PgAAAABJRU5ErkJggg=="/>
<mask id="mask0">
<g filter="url(#alpha)">
<use xlink:href="#image9"/>
</g>
</mask>
<clipPath id="clip1">
<rect width="75" height="33"/>
</clipPath>
<g id="surface11" clip-path="url(#clip1)">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 75 33.332031 L 66.667969 33.332031 L 66.667969 0 L 75 0 Z M 75 33.332031 "/>
</g>
<image id="image17" width="75" height="33" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEsAAAAhCAYAAACRIVbWAAAABmJLR0QA/wD/AP+gvaeTAAAAdUlEQVRoge3QsQ2CAABEUZGC2hFciwWcyQVcyxGsKUhYAIvfiCTvtddc/nD5A69puj/W9fZtf47jZ16W9y8/7bkefeBMxArECsQKxArECsQKxArECsQKxArECsQKxArECsQKxArECsQKxArECsQKxAIAgDPZAFX+CDDsK9FnAAAAAElFTkSuQmCC"/>
<mask id="mask1">
<g filter="url(#alpha)">
<use xlink:href="#image17"/>
</g>
</mask>
<clipPath id="clip2">
<rect width="75" height="33"/>
</clipPath>
<g id="surface19" clip-path="url(#clip2)">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 41.667969 33.332031 L 33.332031 33.332031 L 33.332031 0 L 41.667969 0 Z M 41.667969 33.332031 "/>
</g>
<image id="image25" width="75" height="33" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEsAAAAhCAYAAACRIVbWAAAABmJLR0QA/wD/AP+gvaeTAAAAaklEQVRoge3QsQ3CQAAEQUDOXm7GOW1TDjX4O6ADSxtZL2biC0773LfteFz4jPF9z3lebf7F6+4DKxErECsQKxArECsQKxArECsQKxArECsQKxArECsQKxArECsQKxArECsQKxALAABW8gMYpgUwh9byuwAAAABJRU5ErkJggg=="/>
<mask id="mask2">
<g filter="url(#alpha)">
<use xlink:href="#image25"/>
</g>
</mask>
<clipPath id="clip3">
<rect width="75" height="33"/>
</clipPath>
<g id="surface27" clip-path="url(#clip3)">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 8.332031 33.332031 L 0 33.332031 L 0 0 L 8.332031 0 Z M 8.332031 33.332031 "/>
</g>
</defs>
<g id="surface1">
<use xlink:href="#surface11" mask="url(#mask0)"/>
<use xlink:href="#surface19" mask="url(#mask1)"/>
<use xlink:href="#surface27" mask="url(#mask2)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 B

View file

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="33pt" height="75pt" viewBox="0 0 33 75" version="1.1">
<defs>
<filter id="alpha" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
<feColorMatrix type="matrix" in="SourceGraphic" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
</filter>
<image id="image9" width="33" height="75" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAABLCAYAAAD+i+5TAAAABmJLR0QA/wD/AP+gvaeTAAAATklEQVRoge3OIQ6AMBBE0YXUknIWPKfHcxYabAVqdTF17+lJ5kcAAAAAAAAAAEBExHLVus88OFt7hhFbKcfMiLf3e7RZZwb8JSKJSCLSBwPTCBHQfxYWAAAAAElFTkSuQmCC"/>
<mask id="mask0">
<g filter="url(#alpha)">
<use xlink:href="#image9"/>
</g>
</mask>
<clipPath id="clip1">
<rect width="33" height="75"/>
</clipPath>
<g id="surface11" clip-path="url(#clip1)">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 33.332031 66.667969 L 33.332031 75 L 0 75 L 0 66.667969 Z M 33.332031 66.667969 "/>
</g>
<image id="image17" width="33" height="75" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAABLCAYAAAD+i+5TAAAABmJLR0QA/wD/AP+gvaeTAAAAYUlEQVRoge3OsQmAQBBFwVMPjCzCFizHzmzAcmzBEgyMDi4wMtZkQWQmXva/lAAAAABIzdr3Y+TAXMr+GDHkPEVGnLVuTzdtZMBbIm4ibp+IyEvXHZEDc62R7wEAAAD+4wLtUAvzrnEaRAAAAABJRU5ErkJggg=="/>
<mask id="mask1">
<g filter="url(#alpha)">
<use xlink:href="#image17"/>
</g>
</mask>
<clipPath id="clip2">
<rect width="33" height="75"/>
</clipPath>
<g id="surface19" clip-path="url(#clip2)">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 33.332031 33.332031 L 33.332031 41.667969 L 0 41.667969 L 0 33.332031 Z M 33.332031 33.332031 "/>
</g>
<image id="image25" width="33" height="75" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAABLCAYAAAD+i+5TAAAABmJLR0QA/wD/AP+gvaeTAAAATUlEQVRoge3OIQ6AMBBFQUpqSTkLntPjOQsNtgK1GswaMqM3+19Zat2mRPcY59vNnBnwlYggIogI5WhtzRzYe78y/wMAAAAAAAAA8CcP/2EIET6xKgwAAAAASUVORK5CYII="/>
<mask id="mask2">
<g filter="url(#alpha)">
<use xlink:href="#image25"/>
</g>
</mask>
<clipPath id="clip3">
<rect width="33" height="75"/>
</clipPath>
<g id="surface27" clip-path="url(#clip3)">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 33.332031 0 L 33.332031 8.332031 L 0 8.332031 L 0 0 Z M 33.332031 0 "/>
</g>
</defs>
<g id="surface1">
<use xlink:href="#surface11" mask="url(#mask0)"/>
<use xlink:href="#surface19" mask="url(#mask1)"/>
<use xlink:href="#surface27" mask="url(#mask2)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 B

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 Z M 125 66.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 91.667969 66.667969 C 91.667969 80.46875 80.46875 91.667969 66.667969 91.667969 C 52.863281 91.667969 41.667969 80.46875 41.667969 66.667969 C 41.667969 52.863281 52.863281 41.667969 66.667969 41.667969 C 80.46875 41.667969 91.667969 52.863281 91.667969 66.667969 Z M 91.667969 66.667969 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.925781 4.132812 C 101.335938 4.132812 129.199219 32.128906 129.199219 66.667969 C 129.199219 101.203125 101.335938 129.199219 66.925781 129.199219 C 32.519531 129.199219 4.65625 101.203125 4.65625 66.667969 C 4.65625 32.128906 32.519531 4.132812 66.925781 4.132812 Z M 66.925781 4.132812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.3;" d="M 91.667969 66.667969 C 91.667969 80.46875 80.46875 91.667969 66.667969 91.667969 C 52.863281 91.667969 41.667969 80.46875 41.667969 66.667969 C 41.667969 52.863281 52.863281 41.667969 66.667969 41.667969 C 80.46875 41.667969 91.667969 52.863281 91.667969 66.667969 Z M 91.667969 66.667969 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.925781 4.132812 C 101.335938 4.132812 129.199219 32.128906 129.199219 66.667969 C 129.199219 101.203125 101.335938 129.199219 66.925781 129.199219 C 32.519531 129.199219 4.65625 101.203125 4.65625 66.667969 C 4.65625 32.128906 32.519531 4.132812 66.925781 4.132812 Z M 66.925781 4.132812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.3;" d="M 91.667969 66.667969 C 91.667969 80.46875 80.46875 91.667969 66.667969 91.667969 C 52.863281 91.667969 41.667969 80.46875 41.667969 66.667969 C 41.667969 52.863281 52.863281 41.667969 66.667969 41.667969 C 80.46875 41.667969 91.667969 52.863281 91.667969 66.667969 Z M 91.667969 66.667969 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 Z M 125 66.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 91.667969 66.667969 C 91.667969 80.46875 80.46875 91.667969 66.667969 91.667969 C 52.863281 91.667969 41.667969 80.46875 41.667969 66.667969 C 41.667969 52.863281 52.863281 41.667969 66.667969 41.667969 C 80.46875 41.667969 91.667969 52.863281 91.667969 66.667969 Z M 91.667969 66.667969 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 Z M 125 66.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 67.21875 6.835938 C 101.171875 6.835938 128.710938 33.722656 128.710938 66.863281 C 128.710938 100 101.171875 126.855469 67.21875 126.855469 C 33.269531 126.855469 5.730469 100 5.730469 66.863281 C 5.730469 33.722656 33.269531 6.835938 67.21875 6.835938 Z M 67.21875 6.835938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.3;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 67.21875 6.835938 C 101.171875 6.835938 128.710938 33.722656 128.710938 66.863281 C 128.710938 100 101.171875 126.855469 67.21875 126.855469 C 33.269531 126.855469 5.730469 100 5.730469 66.863281 C 5.730469 33.722656 33.269531 6.835938 67.21875 6.835938 Z M 67.21875 6.835938 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.3;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 Z M 125 66.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 33.332031 58.332031 L 100 58.332031 L 100 75 L 33.332031 75 Z M 33.332031 58.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.925781 4.132812 C 101.335938 4.132812 129.199219 32.128906 129.199219 66.667969 C 129.199219 101.203125 101.335938 129.199219 66.925781 129.199219 C 32.519531 129.199219 4.65625 101.203125 4.65625 66.667969 C 4.65625 32.128906 32.519531 4.132812 66.925781 4.132812 Z M 66.925781 4.132812 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.3;" d="M 91.667969 66.667969 C 91.667969 80.46875 80.46875 91.667969 66.667969 91.667969 C 52.863281 91.667969 41.667969 80.46875 41.667969 66.667969 C 41.667969 52.863281 52.863281 41.667969 66.667969 41.667969 C 80.46875 41.667969 91.667969 52.863281 91.667969 66.667969 Z M 91.667969 66.667969 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 Z M 125 66.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#928374;fill-opacity:1;" d="M 91.667969 66.667969 C 91.667969 80.46875 80.46875 91.667969 66.667969 91.667969 C 52.863281 91.667969 41.667969 80.46875 41.667969 66.667969 C 41.667969 52.863281 52.863281 41.667969 66.667969 41.667969 C 80.46875 41.667969 91.667969 52.863281 91.667969 66.667969 Z M 91.667969 66.667969 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 Z M 125 66.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.144531 5.175781 C 100.976562 5.175781 129.199219 32.714844 129.199219 66.667969 C 129.199219 100.617188 100.976562 128.15625 66.144531 128.15625 C 31.316406 128.15625 3.058594 100.617188 3.058594 66.667969 C 3.058594 32.714844 31.316406 5.175781 66.144531 5.175781 Z M 66.144531 5.175781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.144531 5.175781 C 100.976562 5.175781 129.199219 32.714844 129.199219 66.667969 C 129.199219 100.617188 100.976562 128.15625 66.144531 128.15625 C 31.316406 128.15625 3.058594 100.617188 3.058594 66.667969 C 3.058594 32.714844 31.316406 5.175781 66.144531 5.175781 Z M 66.144531 5.175781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 Z M 125 66.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
<g transform="translate(0 -1036.3622)">
<path style="fill:#393939" d="M 15,8 A 7,7 0 1 1 1,8 7,7 0 1 1 15,8 z" transform="matrix(1.04961 0 0 1.03157 -.42841 1036.2044)"/>
<path style="fill:#1f1f1f" d="M 8 0 C 3.581722 8.8817842e-16 -3.006854e-17 3.581722 0 8 C 0 12.418278 3.581722 16 8 16 C 12.418278 16 16 12.418278 16 8 C 16 3.581722 12.418278 -1.8064254e-15 8 0 z M 8 1 C 11.865993 1 15 4.1340068 15 8 C 15 11.865993 11.865993 15 8 15 C 4.1340068 15 1 11.865993 1 8 C 1 4.1340068 4.1340068 1 8 1 z " transform="translate(0 1036.3622)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 614 B

View file

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
<g transform="translate(0 -1036.3622)">
<path style="fill:#2a2a2a" d="m 7.9891678,1037.1027 c 4.0385812,0 7.3124992,3.254 7.3124992,7.2678 0,4.0139 -3.273918,7.2679 -7.3124992,7.2679 -4.0385821,0 -7.31249997,-3.254 -7.31249997,-7.2679 0,-4.0138 3.27391787,-7.2678 7.31249997,-7.2678 z"/>
<path style="fill:#1f1f1f" d="M 8 0 C 3.581722 8.8817842e-16 -3.006854e-17 3.581722 0 8 C 0 12.418278 3.581722 16 8 16 C 12.418278 16 16 12.418278 16 8 C 16 3.581722 12.418278 -1.8064254e-15 8 0 z M 8 1 C 11.865993 1 15 4.1340068 15 8 C 15 11.865993 11.865993 15 8 15 C 4.1340068 15 1 11.865993 1 8 C 1 4.1340068 4.1340068 1 8 1 z " transform="translate(0 1036.3622)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 731 B

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.144531 5.175781 C 100.976562 5.175781 129.199219 32.714844 129.199219 66.667969 C 129.199219 100.617188 100.976562 128.15625 66.144531 128.15625 C 31.316406 128.15625 3.058594 100.617188 3.058594 66.667969 C 3.058594 32.714844 31.316406 5.175781 66.144531 5.175781 Z M 66.144531 5.175781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.15;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="133pt" height="133pt" viewBox="0 0 133 133" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 Z M 125 66.667969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#282828;fill-opacity:1;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:#ebdbb2;fill-opacity:0.30;" d="M 66.667969 0 C 29.851562 0 0 29.851562 0 66.667969 C 0 103.484375 29.851562 133.332031 66.667969 133.332031 C 103.484375 133.332031 133.332031 103.484375 133.332031 66.667969 C 133.332031 29.851562 103.484375 0 66.667969 0 Z M 66.667969 8.332031 C 98.894531 8.332031 125 34.441406 125 66.667969 C 125 98.894531 98.894531 125 66.667969 125 C 34.441406 125 8.332031 98.894531 8.332031 66.667969 C 8.332031 34.441406 34.441406 8.332031 66.667969 8.332031 Z M 66.667969 8.332031 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,9 @@
#!/bin/sh
sed -i \
-e 's/#282828/rgb(0%,0%,0%)/g' \
-e 's/#ebdbb2/rgb(100%,100%,100%)/g' \
-e 's/#1d2021/rgb(50%,0%,0%)/g' \
-e 's/#928374/rgb(0%,50%,0%)/g' \
-e 's/#282828/rgb(50%,0%,50%)/g' \
-e 's/#ebdbb2/rgb(0%,0%,50%)/g' \
$@

View file

@ -0,0 +1,11 @@
#!/bin/sh
sed -i \
-e 's/rgb(0%,0%,0%)/#282828/g' \
-e 's/rgb(100%,100%,100%)/#ebdbb2/g' \
-e 's/rgb(50%,0%,0%)/#1d2021/g' \
-e 's/rgb(0%,50%,0%)/#928374/g' \
-e 's/rgb(0%,50.196078%,0%)/#928374/g' \
-e 's/rgb(50%,0%,50%)/#282828/g' \
-e 's/rgb(50.196078%,0%,50.196078%)/#282828/g' \
-e 's/rgb(0%,0%,50%)/#ebdbb2/g' \
$@

Binary file not shown.

After

Width:  |  Height:  |  Size: 806 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 713 B

View file

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
id="svg2"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="calendar-arrow-left.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="30"
inkscape:cx="1.6333333"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-width="930"
inkscape:window-height="681"
inkscape:window-x="225"
inkscape:window-y="204"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid17403"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1036.3622)">
<path
sodipodi:type="star"
style="fill:#fbf1c7;fill-opacity:1;stroke:#fbf1c7;stroke-width:0.43015847000000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path18028"
sodipodi:sides="3"
sodipodi:cx="84.5"
sodipodi:cy="337.5"
sodipodi:r1="5"
sodipodi:r2="2.5"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 88.830127,340 80.169873,340 84.5,332.5 z"
transform="matrix(0,1.3621708,0.99186247,0,-325.48222,929.32667)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
id="svg2"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="calendar-arrow-right.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="30"
inkscape:cx="1.6333333"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-width="930"
inkscape:window-height="681"
inkscape:window-x="987"
inkscape:window-y="243"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid17403"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1036.3622)">
<path
sodipodi:type="star"
style="fill:#fbf1c7;fill-opacity:1;stroke:#fbf1c7;stroke-width:0.43015847000000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="path18028"
sodipodi:sides="3"
sodipodi:cx="84.5"
sodipodi:cy="337.5"
sodipodi:r1="5"
sodipodi:r2="2.5"
sodipodi:arg1="0.52359878"
sodipodi:arg2="1.5707963"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 88.830127,340 80.169873,340 84.5,332.5 z"
transform="matrix(0,1.3621708,-0.99186247,0,342.48324,929.32667)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="checkbox-off.svg">
<defs
id="defs4">
<linearGradient
inkscape:collect="always"
id="linearGradient4140">
<stop
style="stop-color:#1d2021;stop-opacity:1"
offset="0"
id="stop4142" />
<stop
style="stop-color:#282828;stop-opacity:1"
offset="1"
id="stop4144" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4140"
id="linearGradient4146"
x1="8"
y1="1037.3622"
x2="8"
y2="1045.3622"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="31.678384"
inkscape:cx="5.443714"
inkscape:cy="8.4765013"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="px"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-global="false"
inkscape:window-width="1275"
inkscape:window-height="843"
inkscape:window-x="528"
inkscape:window-y="25"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid3336" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1036.3622)">
<rect
style="fill:url(#linearGradient4146);fill-rule:evenodd;stroke:#fbf1c7;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
id="rect3338"
width="15"
height="15"
x="0.5"
y="1036.8622"
rx="2.823529"
ry="2.823544" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="checkbox.svg">
<defs
id="defs4">
<linearGradient
inkscape:collect="always"
id="linearGradient4140">
<stop
style="stop-color:#1d2021;stop-opacity:1"
offset="0"
id="stop4142" />
<stop
style="stop-color:#282828;stop-opacity:1"
offset="1"
id="stop4144" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4140"
id="linearGradient4146"
x1="8"
y1="1037.3622"
x2="8"
y2="1045.3622"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="31.678384"
inkscape:cx="5.443714"
inkscape:cy="8.4765013"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="px"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-global="false"
inkscape:window-width="1275"
inkscape:window-height="843"
inkscape:window-x="528"
inkscape:window-y="26"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid3336" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1036.3622)">
<rect
style="fill:url(#linearGradient4146);fill-rule:evenodd;stroke:#fbf1c7;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
id="rect3338"
width="15"
height="15"
x="0.5"
y="1036.8622"
rx="2.823529"
ry="2.823544" />
<path
style="fill:none;fill-rule:evenodd;stroke:#928374;stroke-width:2.0999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.1680701,1045.2435 3.394596,2.7033 6.3652989,-7.1528"
id="path4148"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,152 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
id="Foreground"
x="0px"
y="0px"
width="32"
height="32"
viewBox="0 0 23.272727 23.272727"
enable-background="new 0 0 16 16"
xml:space="preserve"
sodipodi:version="0.32"
inkscape:version="0.48+devel r10081 custom"
sodipodi:docname="close-window.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
id="metadata2399"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs2397"><linearGradient
id="linearGradient3173"><stop
style="stop-color:#fbf1c7;stop-opacity:1;"
offset="0"
id="stop3175" /><stop
style="stop-color:#fbf1c7;stop-opacity:1;"
offset="1"
id="stop3177" /></linearGradient><inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 8 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="16 : 8 : 1"
inkscape:persp3d-origin="8 : 5.3333333 : 1"
id="perspective2401" /><filter
color-interpolation-filters="sRGB"
inkscape:collect="always"
id="filter16494-4"
x="-0.20989846"
width="1.4197969"
y="-0.20903821"
height="1.4180764"><feGaussianBlur
inkscape:collect="always"
stdDeviation="1.3282637"
id="feGaussianBlur16496-8" /></filter><radialGradient
inkscape:collect="always"
xlink:href="#linearGradient16498-6"
id="radialGradient16504-1"
cx="7.6582627"
cy="5.8191104"
fx="7.6582627"
fy="5.8191104"
r="8.6928644"
gradientTransform="matrix(1.0474339,0,0,1.0517402,-0.3632615,-0.42032492)"
gradientUnits="userSpaceOnUse" /><linearGradient
inkscape:collect="always"
id="linearGradient16498-6"><stop
style="stop-color:#282828;stop-opacity:1"
offset="0"
id="stop16500-8" /><stop
style="stop-color:#1d2021;stop-opacity:1"
offset="1"
id="stop16502-0" /></linearGradient><filter
color-interpolation-filters="sRGB"
inkscape:collect="always"
id="filter16524-9"
x="-0.212979"
width="1.425958"
y="-0.21305652"
height="1.426113"><feGaussianBlur
inkscape:collect="always"
stdDeviation="0.71020915"
id="feGaussianBlur16526-0" /></filter></defs><sodipodi:namedview
inkscape:window-height="1114"
inkscape:window-width="1463"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#000000"
id="base"
showgrid="false"
inkscape:zoom="1"
inkscape:cx="10.720189"
inkscape:cy="13.739577"
inkscape:window-x="0"
inkscape:window-y="26"
inkscape:current-layer="Foreground"
showguides="true"
inkscape:guide-bbox="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-maximized="0"><inkscape:grid
type="xygrid"
id="grid11246"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" /></sodipodi:namedview>
<g
style="display:inline"
id="g16402-8"
transform="translate(4.7533483,2.8238929)"><g
id="g3175-4"><path
sodipodi:type="inkscape:offset"
inkscape:radius="0"
inkscape:original="M 7.65625 0.125 C 3.2589349 0.125 -0.3125 3.7070002 -0.3125 8.125 C -0.3125 12.543001 3.2589349 16.125 7.65625 16.125 C 12.053566 16.125 15.625 12.543001 15.625 8.125 C 15.625 3.7070002 12.053566 0.125 7.65625 0.125 z "
xlink:href="#path2394-32"
style="opacity:0.52994014;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.18181825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter16494-4);enable-background:accumulate"
id="path16480-5"
inkscape:href="#path2394-32"
d="m 7.65625,0.125 c -4.3973151,0 -7.96875,3.5820002 -7.96875,8 0,4.418001 3.5714349,8 7.96875,8 4.397316,0 7.96875,-3.581999 7.96875,-8 0,-4.4179998 -3.571434,-8 -7.96875,-8 z"
transform="translate(0,1.028519)" /><path
clip-rule="evenodd"
d="m -0.30428257,8.1237596 c 0,-4.4179998 3.56522987,-7.9999996 7.96254497,-7.9999996 4.3973156,0 7.9625456,3.5819998 7.9625456,7.9999996 0,4.4180014 -3.56523,8.0000004 -7.9625456,8.0000004 -4.3973151,0 -7.96254497,-3.581999 -7.96254497,-8.0000004 z"
id="path2394-32"
style="color:#000000;fill:url(#radialGradient16504-1);fill-opacity:1;fill-rule:nonzero;stroke:#fbf1c7;stroke-width:1.4545455;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
sodipodi:nodetypes="csssc"
inkscape:connector-curvature="0" /><g
id="g3172-6" /></g><g
transform="matrix(0.72727273,0,0,0.72727273,2.368236,2.1803254)"
style="fill:#ffffff;fill-opacity:1;display:inline"
id="g27275-6-6"
inkscape:label="window-close"><g
style="fill:#ffffff;fill-opacity:1;display:inline"
id="g27277-1-1"
transform="translate(-41,-760)"><path
sodipodi:type="inkscape:offset"
inkscape:radius="0"
inkscape:original="M 44.21875 764.1875 L 44.21875 765.1875 C 44.19684 765.46825 44.289258 765.74287 44.5 765.9375 L 46.78125 768.21875 L 44.5 770.46875 C 44.31181 770.65692 44.218747 770.92221 44.21875 771.1875 L 44.21875 772.1875 L 45.21875 772.1875 C 45.48404 772.1875 45.749336 772.09444 45.9375 771.90625 L 48.21875 769.625 L 50.5 771.90625 C 50.688164 772.0944 50.953449 772.18749 51.21875 772.1875 L 52.21875 772.1875 L 52.21875 771.1875 C 52.218742 770.9222 52.125688 770.65692 51.9375 770.46875 L 49.6875 768.21875 L 51.96875 765.9375 C 52.18441 765.73815 52.21875 765.47397 52.21875 765.1875 L 52.21875 764.1875 L 51.21875 764.1875 C 50.977922 764.1945 50.796875 764.2695 50.53125 764.5 L 48.21875 766.78125 L 45.9375 764.5 C 45.75987 764.31608 45.504951 764.1987 45.25 764.1875 C 45.23954 764.18704 45.22912 764.18738 45.21875 764.1875 L 44.21875 764.1875 z "
xlink:href="#path27279-0-5"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#bebebe;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter16524-9);enable-background:new;font-family:Andale Mono;-inkscape-font-specification:Andale Mono"
id="path16506-5"
inkscape:href="#path27279-0-5"
d="m 44.21875,764.1875 0,1 c -0.02191,0.28075 0.07051,0.55537 0.28125,0.75 l 2.28125,2.28125 -2.28125,2.25 c -0.18819,0.18817 -0.281253,0.45346 -0.28125,0.71875 l 0,1 1,0 c 0.26529,0 0.530586,-0.0931 0.71875,-0.28125 L 48.21875,769.625 50.5,771.90625 c 0.188164,0.18815 0.453449,0.28124 0.71875,0.28125 l 1,0 0,-1 c -8e-6,-0.2653 -0.09306,-0.53058 -0.28125,-0.71875 l -2.25,-2.25 2.28125,-2.28125 c 0.21566,-0.19935 0.25,-0.46353 0.25,-0.75 l 0,-1 -1,0 c -0.240828,0.007 -0.421875,0.082 -0.6875,0.3125 l -2.3125,2.28125 L 45.9375,764.5 c -0.17763,-0.18392 -0.432549,-0.3013 -0.6875,-0.3125 -0.01046,-4.6e-4 -0.02088,-1.2e-4 -0.03125,0 l -1,0 z"
transform="translate(0,1.3535534)" /><path
sodipodi:nodetypes="ccsccccccccccccccccccccccc"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#bebebe;fill:#fbf1c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:Andale Mono;-inkscape-font-specification:Andale Mono"
id="path27279-0-5"
inkscape:connector-curvature="0"
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z" /></g></g></g></svg>

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

View file

@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg4140"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="radiobutton-off.svg">
<defs
id="defs4142">
<linearGradient
inkscape:collect="always"
id="linearGradient4692">
<stop
style="stop-color:#1d2021;stop-opacity:1"
offset="0"
id="stop4694" />
<stop
style="stop-color:#282828;stop-opacity:1"
offset="1"
id="stop4696" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4692"
id="linearGradient4698"
x1="8"
y1="1037.3622"
x2="8"
y2="1044.3622"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="22.4"
inkscape:cx="10.772517"
inkscape:cy="8.2994035"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="px"
inkscape:window-width="1274"
inkscape:window-height="725"
inkscape:window-x="302"
inkscape:window-y="129"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid4688" />
</sodipodi:namedview>
<metadata
id="metadata4145">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1036.3622)">
<circle
style="fill:url(#linearGradient4698);fill-opacity:1;stroke:#fbf1c7;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4690"
cx="8"
cy="1044.3622"
r="7.5" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg4140"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="radiobutton.svg">
<defs
id="defs4142">
<linearGradient
inkscape:collect="always"
id="linearGradient4692">
<stop
style="stop-color:#1d2021;stop-opacity:1"
offset="0"
id="stop4694" />
<stop
style="stop-color:#282828;stop-opacity:1"
offset="1"
id="stop4696" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4692"
id="linearGradient4698"
x1="8"
y1="1037.3622"
x2="8"
y2="1044.3622"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="22.4"
inkscape:cx="10.772517"
inkscape:cy="8.2994035"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="px"
inkscape:window-width="1274"
inkscape:window-height="725"
inkscape:window-x="302"
inkscape:window-y="129"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid4688" />
</sodipodi:namedview>
<metadata
id="metadata4145">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1036.3622)">
<circle
style="fill:url(#linearGradient4698);fill-opacity:1;stroke:#fbf1c7;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4690"
cx="8"
cy="1044.3622"
r="7.5" />
<circle
style="fill:#928374;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4741"
cx="8"
cy="1044.3622"
r="4" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,951 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="64"
height="22"
id="svg3273"
inkscape:version="0.48.2 r9819"
sodipodi:docname="toggle-off-intl.svg">
<sodipodi:namedview
pagecolor="#1e1e1e"
bordercolor="#bc1010"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="740"
id="namedview68"
showgrid="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:showpageshadow="false"
showborder="false"
inkscape:zoom="11.971257"
inkscape:cx="4.2457376"
inkscape:cy="10.414796"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="layer2">
<inkscape:grid
type="xygrid"
id="grid3045"
empspacing="8"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
orientation="1,0"
position="0,14"
id="guide4279" />
<sodipodi:guide
orientation="0,1"
position="38,22"
id="guide4281" />
<sodipodi:guide
orientation="0,1"
position="35,0"
id="guide4283" />
<sodipodi:guide
orientation="1,0"
position="64,7"
id="guide4285" />
</sodipodi:namedview>
<defs
id="defs3275">
<linearGradient
id="linearGradient3883">
<stop
id="stop3885"
style="stop-color:#1d2021;stop-opacity:1"
offset="0" />
<stop
id="stop3887"
style="stop-color:#1d2021;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient4649">
<stop
id="stop4651"
style="stop-color:#000000;stop-opacity:0;"
offset="0" />
<stop
id="stop4653"
style="stop-color:#000000;stop-opacity:0.27450982;"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient3921">
<stop
offset="0"
style="stop-color:#ffffff;stop-opacity:0;"
id="stop3923" />
<stop
offset="1"
style="stop-color:#ffffff;stop-opacity:0.15686275;"
id="stop3925" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3985">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3987" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop3989" />
</linearGradient>
<linearGradient
id="linearGradient3938">
<stop
style="stop-color:#a0a0a0;stop-opacity:1;"
offset="0"
id="stop3940" />
<stop
style="stop-color:#dcdcdc;stop-opacity:1;"
offset="1"
id="stop3942" />
</linearGradient>
<linearGradient
id="linearGradient4095">
<stop
id="stop4097"
style="stop-color:#131313;stop-opacity:1"
offset="0" />
<stop
id="stop4099"
style="stop-color:#131313;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3921"
id="linearGradient3152"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-64.499996,-20.499994)"
x1="40.8125"
y1="19.5"
x2="40.8125"
y2="-0.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient3128"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
id="linearGradient3990-9">
<stop
id="stop3992-5"
style="stop-color:#ffffff;stop-opacity:1"
offset="0" />
<stop
id="stop3994-0"
style="stop-color:#ffffff;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
y2="39"
x2="41"
y1="1"
x1="41"
gradientUnits="userSpaceOnUse"
id="linearGradient3077-4"
xlink:href="#linearGradient4095"
inkscape:collect="always"
gradientTransform="matrix(1,0,0,-1,-32,22)" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988"
id="radialGradient4013"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-448,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
id="linearGradient3988">
<stop
id="stop3990"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
style="stop-color:#000000;stop-opacity:0.70588237;"
offset="0.60000002"
id="stop3997" />
<stop
id="stop3993"
offset="1"
style="stop-color:#000000;stop-opacity:0;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976"
id="radialGradient4011"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-447,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
id="linearGradient3976">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3978" />
<stop
id="stop3995"
offset="0.60000002"
style="stop-color:#ffffff;stop-opacity:0.70588237;" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop3980" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988"
id="radialGradient4005"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-452,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976"
id="radialGradient4003"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-451,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988"
id="radialGradient3986"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-456,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
r="0.5"
fy="11"
fx="42.5"
cy="11"
cx="42.5"
gradientTransform="matrix(11,0,0,10,-455,-99)"
gradientUnits="userSpaceOnUse"
id="radialGradient4077"
xlink:href="#linearGradient3976"
inkscape:collect="always" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient3951"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3990-9"
id="linearGradient3953"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="41"
y1="1"
x2="41"
y2="28" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976"
id="radialGradient3955"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-455,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988"
id="radialGradient3957"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-456,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976"
id="radialGradient3959"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-451,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988"
id="radialGradient3961"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-452,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976"
id="radialGradient3963"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-447,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988"
id="radialGradient3965"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-448,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient3971"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient3975"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient3978"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient3983"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient4062"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient4066"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient4071"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3985"
id="linearGradient4074"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,-32,22)"
x1="48"
y1="21"
x2="48"
y2="-4" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988-5"
id="radialGradient4013-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-448,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
id="linearGradient3988-5">
<stop
id="stop3990-8"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
style="stop-color:#000000;stop-opacity:0.70588237;"
offset="0.60000002"
id="stop3997-5" />
<stop
id="stop3993-8"
offset="1"
style="stop-color:#000000;stop-opacity:0;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976-2"
id="radialGradient4011-7"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-447,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
id="linearGradient3976-2">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3978-8" />
<stop
id="stop3995-9"
offset="0.60000002"
style="stop-color:#ffffff;stop-opacity:0.70588237;" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop3980-6" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988-5"
id="radialGradient4005-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-452,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976-2"
id="radialGradient4003-1"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-451,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988-5"
id="radialGradient3986-1"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-456,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
r="0.5"
fy="11"
fx="42.5"
cy="11"
cx="42.5"
gradientTransform="matrix(11,0,0,10,-455,-99)"
gradientUnits="userSpaceOnUse"
id="radialGradient4077-8"
xlink:href="#linearGradient3976-2"
inkscape:collect="always" />
<linearGradient
y2="28"
x2="41"
y1="1"
x1="41"
gradientUnits="userSpaceOnUse"
id="linearGradient3077-4-9"
xlink:href="#linearGradient3990-9-4"
inkscape:collect="always"
gradientTransform="translate(-32,0)" />
<linearGradient
id="linearGradient3990-9-4">
<stop
id="stop3992-5-7"
style="stop-color:#ffffff;stop-opacity:1"
offset="0" />
<stop
id="stop3994-0-8"
style="stop-color:#ffffff;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient3938-4">
<stop
style="stop-color:#a0a0a0;stop-opacity:1;"
offset="0"
id="stop3940-9" />
<stop
style="stop-color:#dcdcdc;stop-opacity:1;"
offset="1"
id="stop3942-9" />
</linearGradient>
<linearGradient
y2="2"
x2="48"
y1="21"
x1="48"
gradientTransform="translate(-32,0)"
gradientUnits="userSpaceOnUse"
id="linearGradient3228"
xlink:href="#linearGradient3938-4"
inkscape:collect="always" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938-4"
id="linearGradient4265"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988-5-7"
id="radialGradient4013-9-2"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-447,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
id="linearGradient3988-5-7">
<stop
id="stop3990-8-2"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
style="stop-color:#000000;stop-opacity:0.70588237;"
offset="0.60000002"
id="stop3997-5-7" />
<stop
id="stop3993-8-6"
offset="1"
style="stop-color:#000000;stop-opacity:0;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976-2-0"
id="radialGradient4011-7-2"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-446,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
id="linearGradient3976-2-0">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3978-8-5" />
<stop
id="stop3995-9-0"
offset="0.60000002"
style="stop-color:#ffffff;stop-opacity:0.70588237;" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop3980-6-1" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988-5-7"
id="radialGradient4005-9-8"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-451,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976-2-0"
id="radialGradient4003-1-6"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-450,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988-5-7"
id="radialGradient3986-1-3"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-455,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
r="0.5"
fy="11"
fx="42.5"
cy="11"
cx="42.5"
gradientTransform="matrix(11,0,0,10,-454,-99)"
gradientUnits="userSpaceOnUse"
id="radialGradient4077-8-1"
xlink:href="#linearGradient3976-2-0"
inkscape:collect="always" />
<linearGradient
y2="28"
x2="41"
y1="1"
x1="41"
gradientUnits="userSpaceOnUse"
id="linearGradient3077-4-9-4"
xlink:href="#linearGradient3990-9-4-5"
inkscape:collect="always"
gradientTransform="translate(-32,-1)" />
<linearGradient
id="linearGradient3990-9-4-5">
<stop
id="stop3992-5-7-1"
style="stop-color:#fbf1c7;stop-opacity:1"
offset="0" />
<stop
id="stop3994-0-8-2"
style="stop-color:#fbf1c7;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
y2="2"
x2="48"
y1="21"
x1="48"
gradientTransform="translate(-32,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient3228-0"
xlink:href="#linearGradient3938-4-7"
inkscape:collect="always" />
<linearGradient
id="linearGradient3938-4-7">
<stop
style="stop-color:#1d2021;stop-opacity:1;"
offset="0"
id="stop3940-9-2" />
<stop
style="stop-color:#282828;stop-opacity:1;"
offset="1"
id="stop3942-9-2" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3921-5"
id="linearGradient3152-1"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-64.499996,-20.499994)"
x1="40.8125"
y1="18.499994"
x2="40.8125"
y2="0.49999401" />
<linearGradient
id="linearGradient3921-5">
<stop
offset="0"
style="stop-color:#ffffff;stop-opacity:0;"
id="stop3923-6" />
<stop
offset="1"
style="stop-color:#ffffff;stop-opacity:0.15686275;"
id="stop3925-4" />
</linearGradient>
<filter
inkscape:collect="always"
id="filter4131-3"
x="-0.12"
width="1.24"
y="-0.12"
height="1.24"
color-interpolation-filters="sRGB">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.5"
id="feGaussianBlur4133-2" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3921-5"
id="linearGradient4525"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-64.499996,-20.499994)"
x1="40.8125"
y1="18.499994"
x2="40.8125"
y2="0.49999401" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938-4-7"
id="linearGradient4529"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,-1)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4649"
id="linearGradient4550"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,64.499996,1.500006)"
x1="40.8125"
y1="18.499994"
x2="40.8125"
y2="0.49999401" />
<linearGradient
y2="0.49999401"
x2="40.8125"
y1="18.499994"
x1="40.8125"
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
gradientUnits="userSpaceOnUse"
id="linearGradient4443"
xlink:href="#linearGradient3921-5-9"
inkscape:collect="always" />
<linearGradient
id="linearGradient3921-5-9">
<stop
offset="0"
style="stop-color:#ffffff;stop-opacity:0;"
id="stop3923-6-1" />
<stop
offset="1"
style="stop-color:#ffffff;stop-opacity:0.11764706;"
id="stop3925-4-6" />
</linearGradient>
<linearGradient
y2="0.49999401"
x2="40.8125"
y1="18.499994"
x1="40.8125"
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
gradientUnits="userSpaceOnUse"
id="linearGradient4615"
xlink:href="#linearGradient3921-5-9"
inkscape:collect="always" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3921-5-9-9"
id="linearGradient4621"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
x1="40.8125"
y1="18.499994"
x2="40.8125"
y2="0.49999401" />
<linearGradient
id="linearGradient3921-5-9-9">
<stop
offset="0"
style="stop-color:#333333;stop-opacity:1;"
id="stop3923-6-1-6" />
<stop
offset="1"
style="stop-color:#555555;stop-opacity:1;"
id="stop3925-4-6-6" />
</linearGradient>
<linearGradient
y2="0.49999401"
x2="40.8125"
y1="18.499994"
x1="40.8125"
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
gradientUnits="userSpaceOnUse"
id="linearGradient4641"
xlink:href="#linearGradient3883"
inkscape:collect="always" />
</defs>
<metadata
id="metadata3278">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Trough">
<path
sodipodi:type="inkscape:offset"
inkscape:radius="-1.0053965"
inkscape:original="M 5 2 C 3.338 2 2 3.338 2 5 L 2 17 C 2 18.662 3.338 20 5 20 L 59 20 C 60.662 20 62 18.662 62 17 L 62 5 C 62 3.338 60.662 2 59 2 L 5 2 z "
style="color:#000000;fill:url(#linearGradient4641);fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4619"
d="M 5,3 C 3.8775991,3 3,3.8775991 3,5 l 0,12 c 0,1.122401 0.8775991,2 2,2 l 54,0 c 1.122401,0 2,-0.877599 2,-2 L 61,5 C 61,3.8775991 60.122401,3 59,3 L 5,3 z" />
<path
sodipodi:nodetypes="sssssssssccccc"
inkscape:connector-curvature="0"
style="opacity:0.07999998;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 54,0 c 1.662,0 3,-1.338 3,-3 L 62,5 C 62,3.338 60.662,2 59,2 z m 0,3 54,0 0,12 -54,0 z"
id="rect4052" />
<path
sodipodi:nodetypes="ssssssssssssssssss"
inkscape:connector-curvature="0"
style="opacity:0.12000002;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 54,0 c 1.662,0 3,-1.338 3,-3 L 62,5 C 62,3.338 60.662,2 59,2 z m 0,2 54,0 c 0.5825,0 1,0.4175 1,1 l 0,12 c 0,0.5825 -0.4175,1 -1,1 L 5,18 C 4.4175,18 4,17.5825 4,17 L 4,5 C 4,4.4175 4.4175,4 5,4 z"
id="rect4042" />
<path
sodipodi:nodetypes="ssssssssssssssssss"
inkscape:connector-curvature="0"
style="opacity:0.2;color:#000000;fill:#fbf1c7;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 54,0 c 1.662,0 3,-1.338 3,-3 L 62,5 C 62,3.338 60.662,2 59,2 z m 0,1 54,0 c 1.117387,0 2,0.882613 2,2 l 0,12 c 0,1.117387 -0.882613,2 -2,2 L 5,19 C 3.8826128,19 3,18.117387 3,17 L 3,5 C 3,3.882613 3.8826128,3 5,3 z"
id="rect4038" />
<g
id="g4655"
transform="translate(-1,0)"
style="opacity:0.5">
<path
inkscape:connector-curvature="0"
style="opacity:0.5;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4131-3);enable-background:accumulate"
d="m 48,6.5 c -2.761424,0 -5,2.2385763 -5,5 0,2.761424 2.238576,5 5,5 2.761424,0 5,-2.238576 5,-5 0,-2.7614237 -2.238576,-5 -5,-5 z m 0,2 c 1.656854,0 3,1.3431458 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.6568542 1.343146,-3 3,-3 z"
id="path4125" />
<path
id="path4120"
d="m 48,6 c -2.761424,0 -5,2.2385763 -5,5 0,2.761424 2.238576,5 5,5 2.761424,0 5,-2.238576 5,-5 0,-2.7614237 -2.238576,-5 -5,-5 z m 0,2 c 1.656854,0 3,1.3431458 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.6568542 1.343146,-3 3,-3 z"
style="color:#000000;fill:#fbf1c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
inkscape:connector-curvature="0" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="Button"
style="display:inline">
<path
sodipodi:type="inkscape:offset"
inkscape:radius="0.94267464"
inkscape:original="M 5 0 C 2.2642981 0 0 2.2642981 0 5 L 0 17 C 0 19.735702 2.2642982 22 5 22 L 29 22 C 31.735702 22 34 19.735702 34 17 L 34 5 C 34 2.2642982 31.735702 0 29 0 L 5 0 z "
style="opacity:0.05;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4541"
d="m 5,-0.9375 c -3.25586,0 -5.9375,2.68164 -5.9375,5.9375 l 0,12 c 0,3.25586 2.6816401,5.9375 5.9375,5.9375 l 24,0 c 3.25586,0 5.9375,-2.68164 5.9375,-5.9375 l 0,-12 c 0,-3.2558599 -2.68164,-5.9375 -5.9375,-5.9375 l -24,0 z" />
<path
sodipodi:type="inkscape:offset"
inkscape:radius="1.0204744"
inkscape:original="M 5 1.03125 C 2.8258474 1.03125 1.03125 2.8258474 1.03125 5 L 1.03125 17 C 1.03125 19.174153 2.8258474 20.96875 5 20.96875 L 29 20.96875 C 31.174153 20.96875 32.96875 19.174153 32.96875 17 L 32.96875 5 C 32.96875 2.8258474 31.174153 1.03125 29 1.03125 L 5 1.03125 z "
style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4537"
d="M 5,0 C 2.2642981,0 0,2.2642981 0,5 l 0,12 c 0,2.735702 2.2642982,5 5,5 l 24,0 c 2.735702,0 5,-2.264298 5,-5 L 34,5 C 34,2.2642982 31.735702,0 29,0 L 5,0 z" />
<path
sodipodi:type="inkscape:offset"
inkscape:radius="0.95425737"
inkscape:original="M 5 2 C 3.338 2 2 3.338 2 5 L 2 17 C 2 18.662 3.338 20 5 20 L 29 20 C 30.662 20 32 18.662 32 17 L 32 5 C 32 3.338 30.662 2 29 2 L 5 2 z "
style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4531"
d="M 5,1.03125 C 2.8258474,1.03125 1.03125,2.8258474 1.03125,5 l 0,12 c 0,2.174153 1.7945974,3.96875 3.96875,3.96875 l 24,0 c 2.174153,0 3.96875,-1.794597 3.96875,-3.96875 l 0,-12 C 32.96875,2.8258474 31.174153,1.03125 29,1.03125 l -24,0 z" />
<rect
style="color:#000000;fill:url(#linearGradient3228-0);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3936"
width="30.00001"
height="18.00001"
x="2"
y="2"
rx="3"
ry="3" />
<path
style="opacity:0.6;color:#000000;fill:url(#linearGradient3077-4-9-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 24,0 c 1.662,0 3,-1.338 3,-3 L 32,5 C 32,3.338 30.662,2 29,2 z m 0,1 24,0 c 1.12561,0 2,0.8743885 2,2 l 0,12 c 0,1.125612 -0.87439,2 -2,2 L 5,19 C 3.874388,19 3,18.125612 3,17 L 3,5 C 3,3.8743885 3.874388,3 5,3 z"
id="rect4059"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssssssssssssss" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

View file

@ -0,0 +1,951 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="64"
height="22"
id="svg3273"
inkscape:version="0.48.2 r9819"
sodipodi:docname="toggle-off-intl.svg">
<sodipodi:namedview
pagecolor="#1e1e1e"
bordercolor="#bc1010"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="740"
id="namedview68"
showgrid="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:showpageshadow="false"
showborder="false"
inkscape:zoom="11.971257"
inkscape:cx="4.2457376"
inkscape:cy="10.414796"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="layer2">
<inkscape:grid
type="xygrid"
id="grid3045"
empspacing="8"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
orientation="1,0"
position="0,14"
id="guide4279" />
<sodipodi:guide
orientation="0,1"
position="38,22"
id="guide4281" />
<sodipodi:guide
orientation="0,1"
position="35,0"
id="guide4283" />
<sodipodi:guide
orientation="1,0"
position="64,7"
id="guide4285" />
</sodipodi:namedview>
<defs
id="defs3275">
<linearGradient
id="linearGradient3883">
<stop
id="stop3885"
style="stop-color:#1d2021;stop-opacity:1"
offset="0" />
<stop
id="stop3887"
style="stop-color:#1d2021;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient4649">
<stop
id="stop4651"
style="stop-color:#000000;stop-opacity:0;"
offset="0" />
<stop
id="stop4653"
style="stop-color:#000000;stop-opacity:0.27450982;"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient3921">
<stop
offset="0"
style="stop-color:#ffffff;stop-opacity:0;"
id="stop3923" />
<stop
offset="1"
style="stop-color:#ffffff;stop-opacity:0.15686275;"
id="stop3925" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3985">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3987" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop3989" />
</linearGradient>
<linearGradient
id="linearGradient3938">
<stop
style="stop-color:#a0a0a0;stop-opacity:1;"
offset="0"
id="stop3940" />
<stop
style="stop-color:#dcdcdc;stop-opacity:1;"
offset="1"
id="stop3942" />
</linearGradient>
<linearGradient
id="linearGradient4095">
<stop
id="stop4097"
style="stop-color:#131313;stop-opacity:1"
offset="0" />
<stop
id="stop4099"
style="stop-color:#131313;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3921"
id="linearGradient3152"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-64.499996,-20.499994)"
x1="40.8125"
y1="19.5"
x2="40.8125"
y2="-0.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient3128"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
id="linearGradient3990-9">
<stop
id="stop3992-5"
style="stop-color:#ffffff;stop-opacity:1"
offset="0" />
<stop
id="stop3994-0"
style="stop-color:#ffffff;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
y2="39"
x2="41"
y1="1"
x1="41"
gradientUnits="userSpaceOnUse"
id="linearGradient3077-4"
xlink:href="#linearGradient4095"
inkscape:collect="always"
gradientTransform="matrix(1,0,0,-1,-32,22)" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988"
id="radialGradient4013"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-448,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
id="linearGradient3988">
<stop
id="stop3990"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
style="stop-color:#000000;stop-opacity:0.70588237;"
offset="0.60000002"
id="stop3997" />
<stop
id="stop3993"
offset="1"
style="stop-color:#000000;stop-opacity:0;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976"
id="radialGradient4011"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-447,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
id="linearGradient3976">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3978" />
<stop
id="stop3995"
offset="0.60000002"
style="stop-color:#ffffff;stop-opacity:0.70588237;" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop3980" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988"
id="radialGradient4005"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-452,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976"
id="radialGradient4003"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-451,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988"
id="radialGradient3986"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-456,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
r="0.5"
fy="11"
fx="42.5"
cy="11"
cx="42.5"
gradientTransform="matrix(11,0,0,10,-455,-99)"
gradientUnits="userSpaceOnUse"
id="radialGradient4077"
xlink:href="#linearGradient3976"
inkscape:collect="always" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient3951"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3990-9"
id="linearGradient3953"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="41"
y1="1"
x2="41"
y2="28" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976"
id="radialGradient3955"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-455,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988"
id="radialGradient3957"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-456,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976"
id="radialGradient3959"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-451,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988"
id="radialGradient3961"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-452,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976"
id="radialGradient3963"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-447,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988"
id="radialGradient3965"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-448,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient3971"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient3975"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient3978"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient3983"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient4062"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient4066"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938"
id="linearGradient4071"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3985"
id="linearGradient4074"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,-32,22)"
x1="48"
y1="21"
x2="48"
y2="-4" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988-5"
id="radialGradient4013-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-448,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
id="linearGradient3988-5">
<stop
id="stop3990-8"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
style="stop-color:#000000;stop-opacity:0.70588237;"
offset="0.60000002"
id="stop3997-5" />
<stop
id="stop3993-8"
offset="1"
style="stop-color:#000000;stop-opacity:0;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976-2"
id="radialGradient4011-7"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-447,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
id="linearGradient3976-2">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3978-8" />
<stop
id="stop3995-9"
offset="0.60000002"
style="stop-color:#ffffff;stop-opacity:0.70588237;" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop3980-6" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988-5"
id="radialGradient4005-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-452,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976-2"
id="radialGradient4003-1"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-451,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988-5"
id="radialGradient3986-1"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-456,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
r="0.5"
fy="11"
fx="42.5"
cy="11"
cx="42.5"
gradientTransform="matrix(11,0,0,10,-455,-99)"
gradientUnits="userSpaceOnUse"
id="radialGradient4077-8"
xlink:href="#linearGradient3976-2"
inkscape:collect="always" />
<linearGradient
y2="28"
x2="41"
y1="1"
x1="41"
gradientUnits="userSpaceOnUse"
id="linearGradient3077-4-9"
xlink:href="#linearGradient3990-9-4"
inkscape:collect="always"
gradientTransform="translate(-32,0)" />
<linearGradient
id="linearGradient3990-9-4">
<stop
id="stop3992-5-7"
style="stop-color:#ffffff;stop-opacity:1"
offset="0" />
<stop
id="stop3994-0-8"
style="stop-color:#ffffff;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient3938-4">
<stop
style="stop-color:#a0a0a0;stop-opacity:1;"
offset="0"
id="stop3940-9" />
<stop
style="stop-color:#dcdcdc;stop-opacity:1;"
offset="1"
id="stop3942-9" />
</linearGradient>
<linearGradient
y2="2"
x2="48"
y1="21"
x1="48"
gradientTransform="translate(-32,0)"
gradientUnits="userSpaceOnUse"
id="linearGradient3228"
xlink:href="#linearGradient3938-4"
inkscape:collect="always" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938-4"
id="linearGradient4265"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,0)"
x1="48"
y1="21"
x2="48"
y2="2" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988-5-7"
id="radialGradient4013-9-2"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-447,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
id="linearGradient3988-5-7">
<stop
id="stop3990-8-2"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
style="stop-color:#000000;stop-opacity:0.70588237;"
offset="0.60000002"
id="stop3997-5-7" />
<stop
id="stop3993-8-6"
offset="1"
style="stop-color:#000000;stop-opacity:0;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976-2-0"
id="radialGradient4011-7-2"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-446,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<linearGradient
id="linearGradient3976-2-0">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3978-8-5" />
<stop
id="stop3995-9-0"
offset="0.60000002"
style="stop-color:#ffffff;stop-opacity:0.70588237;" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop3980-6-1" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988-5-7"
id="radialGradient4005-9-8"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-451,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3976-2-0"
id="radialGradient4003-1-6"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-450,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3988-5-7"
id="radialGradient3986-1-3"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(11,0,0,10,-455,-99)"
cx="42.5"
cy="11"
fx="42.5"
fy="11"
r="0.5" />
<radialGradient
r="0.5"
fy="11"
fx="42.5"
cy="11"
cx="42.5"
gradientTransform="matrix(11,0,0,10,-454,-99)"
gradientUnits="userSpaceOnUse"
id="radialGradient4077-8-1"
xlink:href="#linearGradient3976-2-0"
inkscape:collect="always" />
<linearGradient
y2="28"
x2="41"
y1="1"
x1="41"
gradientUnits="userSpaceOnUse"
id="linearGradient3077-4-9-4"
xlink:href="#linearGradient3990-9-4-5"
inkscape:collect="always"
gradientTransform="translate(-32,-1)" />
<linearGradient
id="linearGradient3990-9-4-5">
<stop
id="stop3992-5-7-1"
style="stop-color:#fbf1c7;stop-opacity:1"
offset="0" />
<stop
id="stop3994-0-8-2"
style="stop-color:#fbf1c7;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
y2="2"
x2="48"
y1="21"
x1="48"
gradientTransform="translate(-32,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient3228-0"
xlink:href="#linearGradient3938-4-7"
inkscape:collect="always" />
<linearGradient
id="linearGradient3938-4-7">
<stop
style="stop-color:#1d2021;stop-opacity:1;"
offset="0"
id="stop3940-9-2" />
<stop
style="stop-color:#282828;stop-opacity:1;"
offset="1"
id="stop3942-9-2" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3921-5"
id="linearGradient3152-1"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-64.499996,-20.499994)"
x1="40.8125"
y1="18.499994"
x2="40.8125"
y2="0.49999401" />
<linearGradient
id="linearGradient3921-5">
<stop
offset="0"
style="stop-color:#ffffff;stop-opacity:0;"
id="stop3923-6" />
<stop
offset="1"
style="stop-color:#ffffff;stop-opacity:0.15686275;"
id="stop3925-4" />
</linearGradient>
<filter
inkscape:collect="always"
id="filter4131-3"
x="-0.12"
width="1.24"
y="-0.12"
height="1.24"
color-interpolation-filters="sRGB">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.5"
id="feGaussianBlur4133-2" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3921-5"
id="linearGradient4525"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-64.499996,-20.499994)"
x1="40.8125"
y1="18.499994"
x2="40.8125"
y2="0.49999401" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3938-4-7"
id="linearGradient4529"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32,-1)"
x1="48"
y1="21"
x2="48"
y2="2" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4649"
id="linearGradient4550"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,64.499996,1.500006)"
x1="40.8125"
y1="18.499994"
x2="40.8125"
y2="0.49999401" />
<linearGradient
y2="0.49999401"
x2="40.8125"
y1="18.499994"
x1="40.8125"
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
gradientUnits="userSpaceOnUse"
id="linearGradient4443"
xlink:href="#linearGradient3921-5-9"
inkscape:collect="always" />
<linearGradient
id="linearGradient3921-5-9">
<stop
offset="0"
style="stop-color:#ffffff;stop-opacity:0;"
id="stop3923-6-1" />
<stop
offset="1"
style="stop-color:#ffffff;stop-opacity:0.11764706;"
id="stop3925-4-6" />
</linearGradient>
<linearGradient
y2="0.49999401"
x2="40.8125"
y1="18.499994"
x1="40.8125"
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
gradientUnits="userSpaceOnUse"
id="linearGradient4615"
xlink:href="#linearGradient3921-5-9"
inkscape:collect="always" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3921-5-9-9"
id="linearGradient4621"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
x1="40.8125"
y1="18.499994"
x2="40.8125"
y2="0.49999401" />
<linearGradient
id="linearGradient3921-5-9-9">
<stop
offset="0"
style="stop-color:#333333;stop-opacity:1;"
id="stop3923-6-1-6" />
<stop
offset="1"
style="stop-color:#555555;stop-opacity:1;"
id="stop3925-4-6-6" />
</linearGradient>
<linearGradient
y2="0.49999401"
x2="40.8125"
y1="18.499994"
x1="40.8125"
gradientTransform="matrix(-1,0,0,-1,64.499996,20.499994)"
gradientUnits="userSpaceOnUse"
id="linearGradient4641"
xlink:href="#linearGradient3883"
inkscape:collect="always" />
</defs>
<metadata
id="metadata3278">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Trough">
<path
sodipodi:type="inkscape:offset"
inkscape:radius="-1.0053965"
inkscape:original="M 5 2 C 3.338 2 2 3.338 2 5 L 2 17 C 2 18.662 3.338 20 5 20 L 59 20 C 60.662 20 62 18.662 62 17 L 62 5 C 62 3.338 60.662 2 59 2 L 5 2 z "
style="color:#000000;fill:url(#linearGradient4641);fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4619"
d="M 5,3 C 3.8775991,3 3,3.8775991 3,5 l 0,12 c 0,1.122401 0.8775991,2 2,2 l 54,0 c 1.122401,0 2,-0.877599 2,-2 L 61,5 C 61,3.8775991 60.122401,3 59,3 L 5,3 z" />
<path
sodipodi:nodetypes="sssssssssccccc"
inkscape:connector-curvature="0"
style="opacity:0.07999998;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 54,0 c 1.662,0 3,-1.338 3,-3 L 62,5 C 62,3.338 60.662,2 59,2 z m 0,3 54,0 0,12 -54,0 z"
id="rect4052" />
<path
sodipodi:nodetypes="ssssssssssssssssss"
inkscape:connector-curvature="0"
style="opacity:0.12000002;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 54,0 c 1.662,0 3,-1.338 3,-3 L 62,5 C 62,3.338 60.662,2 59,2 z m 0,2 54,0 c 0.5825,0 1,0.4175 1,1 l 0,12 c 0,0.5825 -0.4175,1 -1,1 L 5,18 C 4.4175,18 4,17.5825 4,17 L 4,5 C 4,4.4175 4.4175,4 5,4 z"
id="rect4042" />
<path
sodipodi:nodetypes="ssssssssssssssssss"
inkscape:connector-curvature="0"
style="opacity:0.2;color:#000000;fill:#fbf1c7;fill-opacity:1;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 54,0 c 1.662,0 3,-1.338 3,-3 L 62,5 C 62,3.338 60.662,2 59,2 z m 0,1 54,0 c 1.117387,0 2,0.882613 2,2 l 0,12 c 0,1.117387 -0.882613,2 -2,2 L 5,19 C 3.8826128,19 3,18.117387 3,17 L 3,5 C 3,3.882613 3.8826128,3 5,3 z"
id="rect4038" />
<g
id="g4655"
transform="translate(-1,0)"
style="opacity:0.5">
<path
inkscape:connector-curvature="0"
style="opacity:0.5;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4131-3);enable-background:accumulate"
d="m 48,6.5 c -2.761424,0 -5,2.2385763 -5,5 0,2.761424 2.238576,5 5,5 2.761424,0 5,-2.238576 5,-5 0,-2.7614237 -2.238576,-5 -5,-5 z m 0,2 c 1.656854,0 3,1.3431458 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.6568542 1.343146,-3 3,-3 z"
id="path4125" />
<path
id="path4120"
d="m 48,6 c -2.761424,0 -5,2.2385763 -5,5 0,2.761424 2.238576,5 5,5 2.761424,0 5,-2.238576 5,-5 0,-2.7614237 -2.238576,-5 -5,-5 z m 0,2 c 1.656854,0 3,1.3431458 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.6568542 1.343146,-3 3,-3 z"
style="color:#000000;fill:#fbf1c7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
inkscape:connector-curvature="0" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="Button"
style="display:inline">
<path
sodipodi:type="inkscape:offset"
inkscape:radius="0.94267464"
inkscape:original="M 5 0 C 2.2642981 0 0 2.2642981 0 5 L 0 17 C 0 19.735702 2.2642982 22 5 22 L 29 22 C 31.735702 22 34 19.735702 34 17 L 34 5 C 34 2.2642982 31.735702 0 29 0 L 5 0 z "
style="opacity:0.05;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4541"
d="m 5,-0.9375 c -3.25586,0 -5.9375,2.68164 -5.9375,5.9375 l 0,12 c 0,3.25586 2.6816401,5.9375 5.9375,5.9375 l 24,0 c 3.25586,0 5.9375,-2.68164 5.9375,-5.9375 l 0,-12 c 0,-3.2558599 -2.68164,-5.9375 -5.9375,-5.9375 l -24,0 z" />
<path
sodipodi:type="inkscape:offset"
inkscape:radius="1.0204744"
inkscape:original="M 5 1.03125 C 2.8258474 1.03125 1.03125 2.8258474 1.03125 5 L 1.03125 17 C 1.03125 19.174153 2.8258474 20.96875 5 20.96875 L 29 20.96875 C 31.174153 20.96875 32.96875 19.174153 32.96875 17 L 32.96875 5 C 32.96875 2.8258474 31.174153 1.03125 29 1.03125 L 5 1.03125 z "
style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4537"
d="M 5,0 C 2.2642981,0 0,2.2642981 0,5 l 0,12 c 0,2.735702 2.2642982,5 5,5 l 24,0 c 2.735702,0 5,-2.264298 5,-5 L 34,5 C 34,2.2642982 31.735702,0 29,0 L 5,0 z" />
<path
sodipodi:type="inkscape:offset"
inkscape:radius="0.95425737"
inkscape:original="M 5 2 C 3.338 2 2 3.338 2 5 L 2 17 C 2 18.662 3.338 20 5 20 L 29 20 C 30.662 20 32 18.662 32 17 L 32 5 C 32 3.338 30.662 2 29 2 L 5 2 z "
style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4531"
d="M 5,1.03125 C 2.8258474,1.03125 1.03125,2.8258474 1.03125,5 l 0,12 c 0,2.174153 1.7945974,3.96875 3.96875,3.96875 l 24,0 c 2.174153,0 3.96875,-1.794597 3.96875,-3.96875 l 0,-12 C 32.96875,2.8258474 31.174153,1.03125 29,1.03125 l -24,0 z" />
<rect
style="color:#000000;fill:url(#linearGradient3228-0);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3936"
width="30.00001"
height="18.00001"
x="2"
y="2"
rx="3"
ry="3" />
<path
style="opacity:0.6;color:#000000;fill:url(#linearGradient3077-4-9-4);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 5,2 C 3.338,2 2,3.338 2,5 l 0,12 c 0,1.662 1.338,3 3,3 l 24,0 c 1.662,0 3,-1.338 3,-3 L 32,5 C 32,3.338 30.662,2 29,2 z m 0,1 24,0 c 1.12561,0 2,0.8743885 2,2 l 0,12 c 0,1.125612 -0.87439,2 -2,2 L 5,19 C 3.874388,19 3,18.125612 3,17 L 3,5 C 3,3.8743885 3.874388,3 5,3 z"
id="rect4059"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ssssssssssssssssss" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 46 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,372 @@
// extend-elements
// to bottom
%bg-grad-to-bottom {
background-gradient-direction: vertical;
background-gradient-start: $dark_bg_grad;
background-gradient-end: $light_bg_grad;
}
// hover to bottom
%hover-bg-grad-to-bottom {
background-gradient-direction: vertical;
background-gradient-start: $dark_hover_bg_grad;
background-gradient-end: $light_hover_bg_grad;
}
// button to top
%button-bg-grad-to-top {
background-gradient-direction: vertical;
background-gradient-start: $light_button_bg_grad;
background-gradient-end: $dark_button_bg_grad;
}
// hover button to top
%hover-button-bg-grad-to-top {
background-gradient-direction: vertical;
background-gradient-start: $light_hover_button_bg_grad;
background-gradient-end: $dark_hover_button_bg_grad;
}
// to top
%bg-grad-to-top {
background-gradient-direction: vertical;
background-gradient-start: $light_bg_grad;
background-gradient-end: $dark_bg_grad;
}
// hover to top
%hover-bg-grad-to-top {
background-gradient-direction: vertical;
background-gradient-start: $light_hover_bg_grad;
background-gradient-end: $dark_hover_bg_grad;
}
// selected to bottom
%selected-bg-grad-to-bottom {
background-gradient-direction: vertical;
background-gradient-start: $dark_selected_bg_grad;
background-gradient-end: $light_selected_bg_grad;
}
// selected to top
%selected-bg-grad-to-top {
background-gradient-direction: vertical;
background-gradient-start: $light_selected_bg_grad;
background-gradient-end: $dark_selected_bg_grad;
}
// hover selected to bottom
%hover-selected-grad-to-bottom {
background-gradient-direction: vertical;
background-gradient-start: $dark_hover_selected_grad;
background-gradient-end: $light_hover_selected_grad;
}
// hover selected to top
%hover-selected-grad-to-top {
background-gradient-direction: vertical;
background-gradient-start: $light_hover_selected_grad;
background-gradient-end: $dark_hover_selected_grad;
}
// to right
%bg-grad-to-right {
background-gradient-direction: horizontal;
background-gradient-start: $dark_bg_grad;
background-gradient-end: $light_bg_grad;
}
// to left
%bg-grad-to-left {
background-gradient-direction: horizontal;
background-gradient-start: $light_bg_grad;
background-gradient-end: $dark_bg_grad;
}
// hover to right
%hover-bg-grad-to-right {
background-gradient-direction: horizontal;
background-gradient-start: $dark_hover_bg_grad;
background-gradient-end: $light_hover_bg_grad;
}
// hover to left
%hover-bg-grad-to-left {
background-gradient-direction: horizontal;
background-gradient-start: $light_hover_bg_grad;
background-gradient-end: $dark_hover_bg_grad;
}
// selected to right
%selected-bg-grad-to-right {
background-gradient-direction: horizontal;
background-gradient-start: $dark_selected_bg_grad;
background-gradient-end: $light_selected_bg_grad;
}
// selected to left
%selected-bg-grad-to-left {
background-gradient-direction: horizontal;
background-gradient-start: $light_selected_bg_grad;
background-gradient-end: $dark_selected_bg_grad;
}
// hover selected to right
%hover-selected-grad-to-right {
background-gradient-direction: horizontal;
background-gradient-start: $dark_hover_selected_grad;
background-gradient-end: $light_hover_selected_grad;
}
// hover selected to left
%hover-selected-grad-to-left {
background-gradient-direction: horizontal;
background-gradient-start: $light_hover_selected_grad;
background-gradient-end: $dark_hover_selected_grad;
}
// tooltip to top
%tooltip-bg-grad-to-top {
background-gradient-direction: vertical;
background-gradient-start: $light_tooltip_bg_grad;
background-gradient-end: $dark_tooltip_bg_grad;
}
// used in selectors
// .osd-window, .info-osd, .workspace-osd
%osd-shared {
@extend %bg-grad-to-bottom;
border: 1px solid $exterior_border;
border-radius: $roundness;
color: $dark_fg_color;
}
// used in selectors
// .slider, .sound-player .slider, .popup-slider-menu-item
%slider-shared {
height: 1.2em;
min-width: 15em;
color: $button_bg_color;
-slider-height: 2px;
-slider-background-color: $scrollbar_bg_color;
-slider-border-color: $interior_border;
-slider-active-background-color: $scrollbar_slider_hover_color;
-slider-active-border-color: $selected_border;
-slider-border-width: 1px;
-slider-border-radius: $roundness;
-slider-handle-radius: 8px;
-slider-handle-border-color: $button_border;
}
// used in selectors
// .separator, .popup-seperator-menu-item
%separator-shared {
-gradient-height: 3px;
-gradient-start: $selected_bg_color;
-gradient-end: $dark_bg_color;
-margin-horizontal: 4px;
height: 1em;
}
// used in selectors
// #menu-search-entry, .run-dialog-entry, #notification StEntry
%dialog-entry {
@extend %tooltip-bg-grad-to-top;
padding: $spacing_plus2;
border-radius: $roundness;
color: $tooltip_fg_color;
border: 1px solid $interior_border;
selection-background-color: $selected_bg_color;
selected-color: $selected_fg_color;
caret-color: $primary_caret_color;
caret-size: 0.1em;
width: 250px;
height: 1.5em;
transition-duration: 150;
}
// used in selectors
// .desklet-with-borders, .desklet-with-borders-and-header, .desklet-header, .photoframe-box
%desklet-shared {
@extend %bg-grad-to-right;
color: $dark_fg_color;
padding: 8px;
border: 1px solid $exterior_border;
}
// used in selectors
// .calendar-change-month-back, .calendar-change-month-forward
%calendar-shared {
width: 16px;
height: 16px;
border-radius: $roundness;
transition-duration: 150;
}
// used in selectors
// .notification-button, .notification-icon-button, .modal-dialog-button, .sound-player-overlay StButton, .keyboard-key
%shared-button {
@extend %button-bg-grad-to-top;
border: 1px solid $button_border;
border-radius: $roundness;
text-align: center;
color: $button_fg_color;
transition-duration: 150;
}
// used in selectors
// .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button:hover, .sound-player-overlay StButton:hover, .keyboard-key:hover
%shared-button-hover {
@extend %hover-button-bg-grad-to-top;
border: 1px solid $selected_border;
}
// used in selectors
// .notification-button:active, .notification-icon-button:active, .modal-dialog-button:active, .modal-dialog-button:pressed, .sound-player-overlay StButton:active, .keyboard-key:active
%shared-button-active {
@extend %selected-bg-grad-to-bottom;
color: $selected_fg_color;
}
// used in selectors
// .menu .popup-combo-menu
%shared-menu {
@extend %bg-grad-to-right;
padding: 8px;
border: 1px solid $exterior_border;
border-radius: $roundness;
color: $dark_fg_color;
}
// used in selectors
// .menu-application-button-label, .menu-category-button-label
%menu-button-label-shared {
&:ltr {
padding-left: 4px;
}
&:rtl {
padding-right: 4px;
}
}
// used in selectors
// .popup-menu-item, .popup-combobox-item, .menu-favorites-button, .menu-places-button, .menu-category-button, .menu-category-button-greyed, .menu-category-button-selected
%menu-buttons-shared {
//min-height: 22px; //setting a min height accross the board for all menu types (menu entries with an application icon are hardcoded to this min-height) causes display issues in cinnamon :-(
padding: $spacing_plus2;
}
// used in selectors
// .show-processes-dialog-subject, .mount-question-dialog-subject
%shared-dialogs-subject {
font-weight: bold;
color: $dark_fg_color;
padding-top: 10px;
padding-left: 17px;
padding-bottom: 6px;
}
// used in selectors
// .show-processes-dialog-subject:rtl, .mount-question-dialog-subject:rtl
%shared-dialogs-subject-rtl {
padding-left: 0;
padding-right: 17px;
}
// used in selectors
// .show-processes-dialog-description, .mount-question-dialog-description
%shared-dialogs-description {
color: $dark_fg_color;
padding-left: 17px;
width: 28em;
}
// used in selectors
// .menu-applications-inner-box StScrollView, .starkmenu-favorites-box .menu-context-menu
%menu-context-shared {
@extend %bg-grad-to-bottom;
padding: 8px;
margin: 8px 0;
border-radius: $roundness;
border: 1px solid $interior_border;
StIcon {
&:ltr {
padding-right: 4px;
}
&:rtl {
padding-left: 4px;
}
}
}
// used in selectors
// .panel-top .window-list-item-box:active, .panel-top .window-list-item-box:checked, .panel-top .window-list-item-box:focus
%panel-top-shared {
@extend %selected-bg-grad-to-top;
color: $selected_fg_color;
}
// used in selectors
// .panel-bottom .windows-list-item-box:active, .panel-bottom .window-list-item-box:checked, .panel-bottom .window-list-item-box:focus
%panel-bottom-shared {
@extend %selected-bg-grad-to-bottom;
color: $selected_fg_color;
}
// used in selectors
// .panel-left .window-list-item-box:active, .panel-left .window-list-item-box:checked, .panel-left .window-list-item-box:focus
%panel-left-shared {
@extend %selected-bg-grad-to-left;
color: $selected_fg_color;
}
// used in selectors
// .panel-right .windows-list-item-box:active, .panel-right .window-list-item-box:checked, .panel-right .window-list-item-box:focus
%panel-right-shared {
@extend %selected-bg-grad-to-right;
color: $selected_fg_color;
}
// used in selectors
// .check-box StBin, .check-box:focus StBin
%check-box-shared {
width: 16px;
height: 16px;
background-image: url(assets/checkbox-off.svg);
}
// used in selectors
// .radiobutton StBin, .radiobutton:focus StBin
%radiobutton-shared {
width: 16px;
height: 16px;
background-image: url(assets/radiobutton-off.svg);
border-radius: $roundness;
}
// used in selectors
// .tile-preview, .tile-hud
%tile-shared {
background-color: $dark_bg_color_trans;
border: 2px solid $exterior_border;
}
// used in selectors
// .tile-preview.snap, .tile-hud.snap
%tile-shared-snap {
background-color: $dark_bg_color_trans;
border: 2px solid $selected_border;
}

View file

@ -0,0 +1,84 @@
// scss-lint:disable ColorVariable
// main colors used in theme
// 1.0 < 1 will result in most cinnamon surfaces being transparent
$button_bg_color: #3c3836;
$button_fg_color: #ebdbb2;
$selected_bg_color: #928374;
$selected_fg_color: #282828;
$tooltip_bg_color: #282828;
$tooltip_fg_color: #ebdbb2;
$dark_bg_color: fade-out(#1d2021, 1 - 1.0);
$dark_fg_color: #fbf1c7;
// an always transparent color used for expo & scale views and the lightbox effect when cinnamon is showing an OSD.
$dark_bg_color_trans: fade-out(#1d2021, 1 - (1.0 / 2));
// used to calculate gradients for gradient values > 0
$lighten_amount: 1 + (0.0 / 2);
$darken_amount: 1 - (0.0 / 2);
// main background surface gradient start and end colors
$light_bg_grad: if($lighten_amount > 1, lighten($dark_bg_color, ($lighten_amount - 1) * lightness($dark_bg_color)), $dark_bg_color);
$dark_bg_grad: if($darken_amount < 1, darken($dark_bg_color, (1 - $darken_amount) * lightness($dark_bg_color)), $dark_bg_color);
// hovered background surface gradient start and end colors - used for window list
$hover_bg_color: lighten($dark_bg_color, .05 * lightness($dark_bg_color));
$light_hover_bg_grad: if($lighten_amount > 1, lighten($hover_bg_color, ($lighten_amount - 1) * lightness($hover_bg_color)), $hover_bg_color);
$dark_hover_bg_grad: if($darken_amount < 1, darken($hover_bg_color, (1 - $darken_amount) * lightness($hover_bg_color)), $hover_bg_color);
// selected background surface gradient start and end colors - used for window list & buttons
$light_selected_bg_grad: if($lighten_amount > 1, lighten($selected_bg_color, ($lighten_amount - 1) * lightness($selected_bg_color)), $selected_bg_color);
$dark_selected_bg_grad: if($darken_amount < 1, darken($selected_bg_color, (1 - $darken_amount) * lightness($selected_bg_color)), $selected_bg_color);
// hovered selected background surface gradient start and end colors - used for window list
$hover_selected_color: lighten($selected_bg_color, .05 * lightness($selected_bg_color));
$light_hover_selected_grad: if($lighten_amount > 1, lighten($hover_selected_color, ($lighten_amount - 1) * lightness($hover_selected_color)), $hover_selected_color);
$dark_hover_selected_grad: if($darken_amount < 1, darken($hover_selected_color, (1 - $darken_amount) * lightness($hover_selected_color)), $hover_selected_color);
// button background surface gradient start and end colors - used for buttons
$light_button_bg_grad: if($lighten_amount > 1, lighten($button_bg_color, ($lighten_amount - 1) * lightness($button_bg_color)), $button_bg_color);
$dark_button_bg_grad: if($darken_amount < 1, darken($button_bg_color, (1 - $darken_amount) * lightness($button_bg_color)), $button_bg_color);
// hovered button background surface gradient start and end colors - used for buttons
$hover_button_bg: lighten($button_bg_color, .05 * lightness($button_bg_color));
$light_hover_button_bg_grad: if($lighten_amount > 1, lighten($hover_button_bg, ($lighten_amount - 1) * lightness($hover_button_bg)), $hover_button_bg);
$dark_hover_button_bg_grad: if($darken_amount < 1, darken($hover_button_bg, (1 - $darken_amount) * lightness($hover_button_bg)), $hover_button_bg);
// tooltip background surface gradient start and end colors - used for tooltips
$light_tooltip_bg_grad: if($lighten_amount > 1, lighten($tooltip_bg_color, ($lighten_amount - 1) * lightness($tooltip_bg_color)), $tooltip_bg_color);
$dark_tooltip_bg_grad: if($darken_amount < 1, darken($tooltip_bg_color, (1 - $darken_amount) * lightness($tooltip_bg_color)), $tooltip_bg_color);
// borders used throughout theme buttons also use selected_borders_color
$selected_border: mix($dark_bg_color, $selected_bg_color, if(lightness($dark_bg_color) < 50%, 18%, 10%));
$border_strength: if(lightness($dark_fg_color) > 50, .1, .2);
$interior_border: fade-out($dark_fg_color, 0.88 - $border_strength);
$exterior_border: mix($dark_bg_color, $dark_fg_color, (30 + ($border_strength * 100)));
// decoration for buttons
$button_border_strength: if(lightness($button_fg_color) > 50, .1, .2);
$button_border: fade-out($button_fg_color, 0.88 - $button_border_strength);
// scrollbar colors
$scrollbar_bg_color: darken($dark_bg_color, 5%);
$scrollbar_slider_color: mix($dark_bg_color, $dark_fg_color, 20%);
$scrollbar_slider_hover_color: mix($dark_bg_color, $selected_bg_color, 20%);
// caret colors for dialog entrys
$primary_caret_color: #a89984;
// other colors used in the theme
$link_color: #83a598;
$success_color: #98971a;
$warning_color: #d79921;
$error_color: #cc241d;
$info_fg_color: #282828;
$info_bg_color: #458588;
// used for border-radius throughout theme
$roundness: 4px;
// used for buttons, entrys, panel spacing, and menu item spacing.
$spacing: 3px;
$spacing_plus2: (3 + 2) + px;

View file

@ -0,0 +1,14 @@
@import "_global";
@import "_extends";
@import "sections/_stage";
@import "sections/_menu";
@import "sections/_panel";
@import "sections/_calendar";
@import "sections/_accessibility";
@import "sections/_notifications";
@import "sections/_dialogs";
@import "sections/_desklets";
@import "sections/_alt-tab";
@import "sections/_overview";
@import "sections/_tile-hud";

View file

@ -0,0 +1,46 @@
// on screen keyboard
#keyboard {
background-color: $dark_bg_color_trans;
}
.keyboard-key {
@extend %shared-button;
&:grayed {
color: $selected_fg_color;
border-color: $selected_fg_color;
}
&:checked {
border-color: $selected_border;
}
&:hover {
@extend %shared-button-hover;
}
&:active {
@extend %shared-button-active;
}
}
.keyboard-layout {
spacing: 8px;
padding: 8px;
}
.keyboard-row {
spacing: 16px;
}
.keyboard-subkeys {
color: $dark_fg_color;
padding: 4px;
-arrow-border-radius: $roundness;
-arrow-background-color: $dark_bg_color;
-arrow-border-width: 1px;
-arrow-border-color: $dark_fg_color;
-arrow-base: 16px;
-arrow-rise: 8px;
-boxpointer-gap: 4px;
}
// desktop zoom feature
.magnifier-zoom-region {
border: 3px solid $exterior_border;
&.full-screen {
border-width: 0;
}
}

View file

@ -0,0 +1,66 @@
// non 3D alt-tab options
#altTabPopup {
padding: 8px;
spacing: 16px;
}
.switcher-list {
@extend %bg-grad-to-bottom;
border-radius: $roundness;
border: 1px solid $exterior_border;
padding: 16px;
color: $dark_fg_color;
.item-box {
padding: 8px;
border-radius: $roundness;
&:selected {
@extend %selected-bg-grad-to-bottom;
color: $selected_fg_color;
}
}
.thumbnail-box {
padding: 2px;
spacing: 4px;
color: $dark_fg_color;
}
.thumbnail {
min-width: 20em;
}
.separator {
width: 1px;
background-color: $selected_bg_color;
}
}
.switcher-list-item-container {
spacing: 8px;
}
.thumbnail-scroll-gradient-left {
background-gradient-direction: horizontal;
background-gradient-start: rgba(51, 51, 51, 1.0);
background-gradient-end: rgba(51, 51, 51, 0);
border-radius: $roundness;
border-radius-topright: 0;
border-radius-bottomright: 0;
width: 60px;
}
.thumbnail-scroll-gradient-right {
background-gradient-direction: horizontal;
background-gradient-start: rgba(51, 51, 51, 0);
background-gradient-end: rgba(51, 51, 51, 1.0);
border-radius: $roundness;
border-radius-topleft: 0;
border-radius-bottomleft: 0;
width: 60px;
}
.switcher-arrow {
border-color: rgba(0,0,0,0);
color: $dark_fg_color;
&:highlighted {
border-color: rgba(0,0,0,0);
color: $selected_fg_color;
}
}
.switcher-preview-backdrop {
background-color: rgba(25,25,25,0.65);
}

View file

@ -0,0 +1,120 @@
// the calendar displayed by the calendar applet is a heavily modified menu and inherits from the .menu selectosr
// indivudual elements within the menu can be themed seperately with these selectors
.calendar {
padding: 1em 1.75em;
spacing-rows: 1px;
spacing-columns: 5px;
}
// also covers the year label
.calendar-month-label {
color: $dark_fg_color;
font-size: 0.8em;
padding: 5px 10px;
border-radius: $roundness;
font-weight: bold;
text-align: center;
}
.calendar-change-month-back {
@extend %calendar-shared;
border: 1px solid transparent;
background-image: url(assets/calendar-arrow-left.svg);
&:rtl {
background-image: url(assets/calendar-arrow-right.svg);
}
&:hover {
border: 1px solid $selected_bg_color;
}
&:active {
background-color: $selected_bg_color;
}
}
.calendar-change-month-forward {
@extend %calendar-shared;
border: 1px solid transparent;
background-image: url(assets/calendar-arrow-right.svg);
&:rtl {
background-image: url(assets/calendar-arrow-left.svg);
}
&:hover {
border: 1px solid $selected_bg_color;
}
&:active {
background-color: $selected_bg_color;
}
}
.datemenu-date-label {
padding: 1em 1.75em;
color: $dark_fg_color;
font-weight: bold;
text-align: center;
}
.calendar-day-base {
font-size: 0.8em;
text-align: center;
width: 2.4em;
height: 1.8em;
border-radius: $roundness;
&:active {
background-color: $selected_bg_color;
}
&:hover {
}
}
.calendar-day-heading {
color: $dark_fg_color;
padding-top: 0.9em;
}
.calendar-week-number {
color: $dark_fg_color;
font-weight: bold;
padding-top: 0.6em;
}
.calendar-day {
&:ltr {
color: $dark_fg_color;
padding: 2px;
}
&:rtl {
color: $dark_fg_color;
padding: 3px;
}
}
.calendar-day-top {
&:ltr {
}
&:rtl {
}
}
.calendar-day-left {
&:ltr {
}
&:rtl {
}
}
.calendar-work-day {
}
.calendar-nonwork-day {
font-weight: bold;
}
// this is always is an active state
.calendar-today {
@extend %selected-bg-grad-to-bottom;
font-weight: bold;
&:active {
color: $selected_fg_color;
}
}
.calendar-other-month-day {
font-style: italic;
}
// this is always is an active state
.calendar-day-with-events {
background-color: $selected_bg_color;
font-weight: bold;
&:active {
color: $selected_fg_color;
}
}

View file

@ -0,0 +1,65 @@
// desklets - the base .desklet selector is for 'undecorated' desklets however some subtle background themeing is desirable
// to maintain visibility irrespctive of wallpaper and to allow for the highlighting scheme to work
.desklet {
font-size: 0.9em;
padding: 8px;
color: $dark_fg_color;
border-radius: $roundness;
background-color: $dark_bg_color_trans;
&:highlight {
background-color: $selected_bg_color;
}
}
// these do not inherit from .desklet
.desklet-with-borders {
@extend %desklet-shared;
font-size: 0.9em;
border-radius: $roundness;
&:highlight {
background-color: $selected_bg_color;
}
}
.desklet-with-borders-and-header {
@extend %desklet-shared;
font-size: 0.9em;
border-radius-bottomleft: $roundness;
border-radius-bottomright: $roundness;
&:highlight {
background-color: $selected_bg_color;
}
}
.desklet-header {
@extend %desklet-shared;
font-size: 1.2em;
border-radius-topleft: $roundness;
border-radius-topright: $roundness;
&:highlight {
background-color: $selected_bg_color;
}
}
.photoframe-box {
@extend %desklet-shared;
border-radius: $roundness;
&:highlight {
background-color: $selected_bg_color;
}
}
.desklet-drag-placeholder {
border: 2px solid $selected_bg_color;
background-color: $dark_bg_color_trans;
border-radius: $roundness;
}
.launcher {
padding: 1px;
transition-duration: 150;
.icon-box {
padding-top: 2px;
}
}
// inherits font characteristics from .desklet-header
.clock-desklet-label {
}

View file

@ -0,0 +1,201 @@
// on screen messages and input boxes
.modal-dialog {
@extend %bg-grad-to-right;
border: 1px solid $exterior_border;
border-radius: $roundness;
color: $dark_fg_color;
padding: 16px 20px;
}
.modal-dialog-button-box {
spacing: 16px;
}
.modal-dialog-button {
@extend %shared-button;
min-width: 5em;
min-height: 1em;
padding: $spacing_plus2;
&:hover {
@extend %shared-button-hover;
}
&:focus {
color: $selected_fg_color;
}
&:active {
@extend %shared-button-active;
}
&:pressed {
@extend %shared-button-active;
}
&:disabled {
color: rgb(60, 60, 60);
}
}
// run dialog (ALT-F2)
.run-dialog-label {
color: $dark_fg_color;
padding-bottom: 10px;
}
.run-dialog-error-label {
color: $selected_bg_color;
}
.run-dialog-error-box {
padding-top: 15px;
spacing: 5px;
}
.run-dialog-completion-box {
padding-left: 15px;
}
.run-dialog-entry {
@extend %dialog-entry;
&:focus {
border: 1px solid $selected_border;
}
}
.run-dialog {
border-radius: $roundness;
padding: 16px 20px;
}
// removable media dialogs
.cinnamon-mount-operation-icon {
icon-size: 4.8em;
}
.mount-password-reask {
color: $warning_color;
}
.show-processes-dialog {
spacing: 24px;
}
.mount-question-dialog {
spacing: 24px;
}
.show-processes-dialog-subject {
@extend %shared-dialogs-subject;
&:rtl {
@extend %shared-dialogs-subject-rtl;
}
}
.mount-question-dialog-subject {
@extend %shared-dialogs-subject;
&:rtl {
@extend %shared-dialogs-subject-rtl;
}
}
.show-processes-dialog-description {
@extend %shared-dialogs-description;
&:rtl {
padding-right: 17px;
}
}
.mount-question-dialog-description {
@extend %shared-dialogs-description;
&:rtl {
padding-right: 17px;
}
}
.show-processes-dialog-app-list {
max-height: 200px;
padding-top: 24px;
padding-left: 49px;
padding-right: 32px;
&:rtl {
padding-right: 49px;
padding-left: 32px;
}
}
.show-processes-dialog-app-list-item {
color: $dark_fg_color;
&:hover {
color: $dark_fg_color;
}
&:ltr {
padding-right: 1em;
}
&:rtl {
padding-left: 1em;
}
}
.show-processes-dialog-app-list-item-icon {
&:ltr {
padding-right: 17px;
}
&:rtl {
padding-left: 17px;
}
}
.show-processes-dialog-app-list-item-name {
}
// displayed when media keys are pressed.
.osd-window {
@extend %osd-shared;
spacing: 1em;
padding: 16px;
.level {
height: 0.7em;
border-radius: 0.3em;
background-color: $scrollbar_bg_color;
}
.level-bar {
border-radius: 0.3em;
background-color: $scrollbar_slider_hover_color;
}
}
.info-osd, .workspace-osd {
@extend %osd-shared;
font-size: 1.5em;
text-align: center;
padding: 8px 10px;
}
// this is an full screen overlay that is displayed with any cinnamon OSD or modal dialog which needs to always be semi transparent
.lightbox {
background-color: $dark_bg_color_trans;
}
// applet 'about' OSDs - inherits from modal dialogs
.about-content {
min-width: 250px;
min-height: 150px;
spacing: 8px;
padding-bottom: 16px;
}
.about-title {
font-size: 1.4em;
font-weight: bold;
}
.about-uuid {
font-size: .8em;
}
.about-icon {
padding-right: 20px;
}
.about-scrollBox {
border: 1px solid $exterior_border;
border-radius: $roundness;
}
.about-scrollBox-innerBox {
padding: 1.2em;
spacing: 1.2em;
}
.about-description {
padding-top: 4px;
}
.about-version {
padding-left: 7px;
}
// dialog box for the cinnamon debug utility
#LookingGlassDialog {
@extend %bg-grad-to-bottom;
spacing: 4px;
padding: 8px;
border: 1px solid $exterior_border;
border-radius: $roundness;
color: $dark_fg_color;
}

View file

@ -0,0 +1,226 @@
.menu {
@extend %shared-menu;
min-width: 100px;
margin: 4px;
}
// scale view right click menu
.popup-combo-menu {
@extend %shared-menu;
}
.popup-menu-arrow {
icon-size: 1.14em;
}
// applet submenus
// the margin here causes the 'bounce' on opening the sub menu
// does StScrollBar need to be here? No as long as it isnt themed differently to staging
.popup-sub-menu {
@extend %bg-grad-to-bottom;
border: 1px solid $interior_border;
border-radius: $roundness;
padding: 8px;
margin: 8px 0;
}
.popup-menu-content {
padding: 0;
}
// individual menu entries are themed here
.popup-menu-item {
@extend %menu-buttons-shared;
color: $dark_fg_color;
&:active {
background-color: $selected_bg_color;
border-radius: $roundness;
color: $selected_fg_color;
}
&:insensitive {
font-style: italic;
}
}
.popup-image-menu-item {
color: $dark_fg_color;
}
.popup-combobox-item {
@extend %menu-buttons-shared;
}
// sliders and separators in menus
.popup-separator-menu-item {
@extend %separator-shared;
-gradient-direction: horizontal;
}
.popup-slider-menu-item {
@extend %slider-shared;
}
.popup-device-menu-item {
spacing: .5em;
}
.popup-inactive-menu-item {
font-style: italic;
color: $dark_fg_color;
}
.popup-subtitle-menu-item {
font-weight: bold;
font-size: 1em;
}
.popup-menu-icon {
icon-size: 1.14em;
padding: 0px 4px;
}
.popup-menu-item-dot {
}
.popup-submenu-menu-item:open {
}
.popup-alternating-menu-item:alternate {
font-weight: bold;
}
// toggles in menus
.toggle-switch {
width: 64px;
height: 22px;
}
.toggle-switch-us {
background-image: url(assets/toggle-off-us.svg);
&:checked {
background-image: url(assets/toggle-on-us.svg);
}
}
.toggle-switch-intl {
background-image: url(assets/toggle-off-intl.svg);
&:checked {
background-image: url(assets/toggle-on-intl.svg);
}
}
.nm-menu-item-icons {
spacing: .5em;
icon-size: 1.14em;
}
// all the remaining code is for the main menu applet
.menu-favorites-box {
@extend %bg-grad-to-right;
padding: 8px;
border: 1px solid $interior_border;
border-radius: $roundness;
transition-duration: 150;
}
.menu-favorites-button {
@extend %menu-buttons-shared;
&:hover {
background-color: $selected_bg_color;
border-radius: $roundness;
color: $selected_fg_color;
}
}
.menu-categories-box {
padding: 8px;
}
.menu-applications-inner-box {
@extend %bg-grad-to-right;
padding: 8px;
border-radius: $roundness;
border: 1px solid $interior_border;
StScrollView {
@extend %menu-context-shared;
}
}
.menu-applications-outer-box {
@extend %bg-grad-to-right;
padding: 8px;
border: 1px solid $interior_border;
border-radius: $roundness;
}
.menu-application-button {
@extend %menu-buttons-shared;
&:highlighted {
font-weight: bold;
}
}
.menu-application-button-selected {
@extend %menu-buttons-shared;
background-color: $selected_bg_color;
border-radius: $roundness;
color: $selected_fg_color;
&:highlighted {
font-weight: bold;
}
}
.menu-application-button-label {
@extend %menu-button-label-shared;
}
.menu-category-button {
@extend %menu-buttons-shared;
}
.menu-category-button-greyed {
@extend %menu-buttons-shared;
color: $dark_fg_color;
font-style: italic;
}
.menu-category-button-selected {
@extend %menu-buttons-shared;
background-color: $selected_bg_color;
border-radius: $roundness;
color: $selected_fg_color;
&:hover {
}
}
.menu-category-button-label {
@extend %menu-button-label-shared;
}
// in the stock menu app descriptions are shown at the base of the menu
.menu-selected-app-box {
padding: 8px;
margin-bottom: 4px;
text-align: right;
&:rtl {
text-align: left;
}
}
.menu-selected-app-title {
font-weight: bold;
font-size: 0.8em;
}
.menu-selected-app-description {
max-width: 150px;
font-size: 0.8em;
}
// the menus search box
.menu-search-box {
&:ltr {
padding-left: 30px;
padding-bottom: 5px;
padding-top: 5px;
}
&:rtl {
padding-right: 30px;
padding-bottom: 5px;
padding-top: 5px;
}
}
#menu-search-entry {
@extend %dialog-entry;
margin: 0.5em 0;
&:focus {
border: 1px solid $selected_border;
}
&:hover {
}
}
.menu-search-entry-icon {
icon-size: 1em;
color: $tooltip_fg_color;
}
// cinnVIIstark menu right click favourites context menu
.starkmenu-favorites-box .menu-context-menu, .menu-context-menu {
@extend %menu-context-shared;
}

View file

@ -0,0 +1,91 @@
// notification system
#notification {
@extend %bg-grad-to-right;
border-radius: $roundness;
border: 1px solid $exterior_border;
padding: 8px;
spacing-rows: 5px;
spacing-columns: 10px;
margin-from-right-edge-of-screen: 20px;
width: 34em;
color: $dark_fg_color;
&.multi-line-notification {
padding-bottom: 8px;
color: $dark_fg_color;
}
StEntry {
@extend %dialog-entry;
&:focus {
border: 1px solid $selected_border;
}
}
.url-highlighter {
link-color: $link_color;
}
}
.notification-with-image {
min-height: 159px;
color: $dark_fg_color;
}
#notification-scrollview {
max-height: 10em;
> {
.top-shadow {
height: 1em;
}
.bottom-shadow {
height: 1em;
}
}
&:ltr > StScrollBar {
padding-left: 6px;
}
&:rtl > StScrollBar {
padding-right: 6px;
}
}
#notification-body {
spacing: 4px;
}
#notification-actions {
spacing: 8px;
}
.notification-button {
@extend %shared-button;
border-radius: $roundness;
min-width: 5em;
min-height: 1em;
padding: $spacing_plus2;
&:hover {
@extend %shared-button-hover;
}
&:focus {
color: $selected_fg_color;
}
&:active {
@extend %shared-button-active;
}
}
.notification-icon-button {
@extend %shared-button;
border-radius: $roundness;
min-width: 2em;
min-height: 2em;
padding: $spacing_plus2;
&:hover {
@extend %shared-button-hover;
}
&:focus {
color: $selected_fg_color;
}
&:active {
@extend %shared-button-active;
}
> StIcon {
icon-size: 1.5em;
}
}

View file

@ -0,0 +1,115 @@
// scale and expo views
#overview {
spacing: 12px;
}
.workspace-thumbnails {
spacing: 14px;
}
.workspace-add-button {
background-image: url(assets/add-workspace.png);
height: 200px;
width: 35px;
border-radius-topleft: 10px;
border-radius-bottomleft: 10px;
transition-duration: 150;
background-color: $info_bg_color;
border-top: 1px solid;
border-left: 1px solid;
border-bottom: 1px solid;
border-color: $button_border;
&:hover {
background-image: url(assets/add-workspace-hover.png);
border-color: $selected_border;
}
&:active {
background-image: url(assets/add-workspace.png);
border-color: $selected_border;
background-color: $success_color;
}
}
.workspace-close-button {
background-image: url(assets/close-window.svg);
height: 32px;
width: 32px;
-cinnamon-close-overlap: 20px;
}
// this always looks better semi transparent
.workspace-overview-background-shade {
background-color: $dark_bg_color_trans;
}
.window-caption {
@extend %bg-grad-to-bottom;
padding: 4px 6px;
border: 1px solid $exterior_border;
border-radius: $roundness;
color: $dark_fg_color;
-cinnamon-caption-spacing: 4px;
&#selected {
@extend %selected-bg-grad-to-bottom;
color: $selected_fg_color;
}
}
.window-close {
background-image: url(assets/close-window.svg);
height: 32px;
width: 32px;
-cinnamon-close-overlap: 20px;
&:rtl {
-st-background-image-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
}
.window-close-area {
background-image: url(assets/trash-icon.png);
background-size: 100px;
background-color: $dark_bg_color_trans;
border: 1px solid $exterior_border;
border-bottom-width: 0;
border-radius: 20px 20px 0 0;
height: 120px;
width: 400px;
}
.expo-background {
@extend %bg-grad-to-bottom;
}
.expo-workspace-thumbnail-frame {
border: 1px solid $exterior_border;
&#active {
border: 1px solid $selected_border;
}
}
.expo-workspaces-name-entry {
@extend %bg-grad-to-bottom;
padding: 4px 6px;
height: 1.5em;
border: 1px solid $exterior_border;
border-radius: $roundness;
selected-color: $selected_fg_color;
selection-background-color: $selected_bg_color;
color: $dark_fg_color;
text-align: center;
&#selected {
@extend %selected-bg-grad-to-bottom;
color: $selected_fg_color;
selected-color: $dark_fg_color;
selection-background-color: $selected_bg_color;
border: 1px solid $selected_border;
}
&:focus {
border: 1px solid $selected_border;
}
&:hover {
border: 1px solid $selected_border;
}
}
// hot corners animation
.ripple-box {
width: 104px;
height: 104px;
background-image: url(assets/corner-ripple.png);
background-color: $selected_bg_color;
border-radius: 52px;
}

View file

@ -0,0 +1,469 @@
// panels can be on any side of the screen
// some panel item theming is specific to panel orientation and is included in this section
// each panel is also split into three zones
// dnd is for panel edit mode
// dummy is for adding or moving panels
#panel {
color: $dark_fg_color;
height: 2.5em;
width: 3.2em;
&:highlight {
background-color: $selected_bg_color;
}
}
.panel-dummy {
background-color: rgba(255, 0, 0, 0.6);
&:entered {
background-color: rgba(0, 255, 0, 0.6);
}
}
.panelLeft {
spacing: 4px;
&:dnd {
background-color: rgba(255, 0, 0, 0.6);
}
&:ltr {
padding-right: 4px;
}
&:rtl {
padding-left: 4px;
}
&.vertical {
padding: 0;
&:dnd {
}
}
}
.panelCenter {
spacing: 4px;
&:dnd {
background-color: rgba(0, 255, 0, 0.6);
}
&.vertical {
padding-left: 0;
padding-right: 0;
&:dnd {
}
}
}
.panelRight {
spacing: 4px;
&:dnd {
background-color: rgba(0, 0, 255, 0.6);
}
&:ltr {
padding-left: 0;
spacing: 0;
}
&:rtl {
padding-right: 0;
spacing: 0;
}
&.vertical {
padding: 0;
&:dnd {
}
}
}
// panel borders must be defined with a border-top color or other color definition that encompasses border-top
// panels do not support different colors of borders on different edges
// due to a bug in cinnamons placing of panel items on a bordered panel small margins are used to ensure that bordered panel objects
// do not overlap the panel border
.panel-top {
@extend %bg-grad-to-bottom;
border-bottom: 1px solid;
border-color: $exterior_border;
.window-list-item-box {
@extend %bg-grad-to-top;
&:hover {
@extend %hover-bg-grad-to-top;
}
&:active, &:checked, &:focus {
@extend %panel-top-shared;
&:hover {
@extend %hover-selected-grad-to-top;
}
}
}
.workspace-switcher, .workspace-graph {
padding: 1px $spacing;
}
.applet-box {
padding: 1px $spacing;
margin: 1px 0;
}
.applet-label {
}
.panel-launchers .launcher:hover {
box-shadow: 0 -2px 0 0 $selected_border inset;
}
.applet-separator {
padding: 3px $spacing;
}
}
.panel-bottom {
@extend %bg-grad-to-top;
border-top: 1px solid;
border-color: $exterior_border;
.window-list-item-box {
@extend %bg-grad-to-bottom;
&:hover {
@extend %hover-bg-grad-to-bottom;
}
&:active, &:checked, &:focus {
@extend %panel-bottom-shared;
&:hover {
@extend %hover-selected-grad-to-bottom;
}
}
}
.workspace-switcher, .workspace-graph {
padding: 1px $spacing;
}
.applet-box {
padding: 1px $spacing;
margin: 1px 0;
}
.applet-label {
}
.panel-launchers .launcher:hover {
box-shadow: 0 2px 0 0 $selected_border inset;
}
.applet-separator {
padding: 3px $spacing;
}
}
.panel-left {
@extend %bg-grad-to-right;
border-right: 1px solid;
border-color: $exterior_border;
.window-list-item-box {
@extend %bg-grad-to-left;
&:hover {
@extend %hover-bg-grad-to-left;
}
&:active, &:checked, &:focus {
@extend %panel-left-shared;
&:hover {
@extend %hover-selected-grad-to-left;
}
}
}
.workspace-switcher, .workspace-graph {
padding: $spacing 1px;
}
.applet-box {
padding: $spacing 1px;
margin: 0 1px;
}
.applet-label {
}
.panel-launchers .launcher:hover {
box-shadow: -2px 0 0 0 $selected_border inset;
}
.applet-separator {
padding: $spacing 3px;
}
}
.panel-right {
@extend %bg-grad-to-left;
border-left: 1px solid;
border-color: $exterior_border;
.window-list-item-box {
@extend %bg-grad-to-right;
&:hover {
@extend %hover-bg-grad-to-right;
}
&:active, &:checked, &:focus {
@extend %panel-right-shared;
&:hover {
@extend %hover-selected-grad-to-right;
}
}
}
.workspace-switcher, .workspace-graph {
padding: $spacing 1px;
}
.applet-box {
padding: $spacing 1px;
margin: 0 1px;
}
.applet-label {
}
.panel-launchers .launcher:hover {
box-shadow: 2px 0 0 0 $selected_border inset;
}
.applet-separator {
padding: $spacing 3px;
}
}
// a non feature - not worth themeing
.panel-corner {
&:active {
}
&:overview {
}
&:focus {
}
}
// remaining code is for panel items starting with the generic applets
.applet-separator-line {
width: 2px;
background: $selected_bg_color;
}
.applet-separator-line-vertical {
border-color: $selected_bg_color;
border-bottom: 2px solid;
}
.applet-spacer:highlight {
border: 1px solid $selected_border;
}
.applet-box {
color: $dark_fg_color;
transition-duration: 150;
border-radius: $roundness;
&:checked {
color: $selected_bg_color;
.applet-label {
color: $selected_bg_color;
}
}
&:hover {
color: $selected_bg_color;
.applet-label {
color: $selected_bg_color;
}
}
&:highlight {
border: 1px solid $selected_border;
color: $selected_bg_color;
.applet-label {
color: $selected_bg_color;
}
}
}
.applet-label {
font-weight: bold;
color: $dark_fg_color;
}
// icon-size set to 22 to match hard-coded menu icon size - applet-icon style is used for search provider results in menu
.applet-icon {
color: $dark_fg_color;
padding: 0;
spacing: 0;
icon-size: 22px;
}
// used by power applet to warn of low battery
.system-status-icon {
icon-size: 1.14em;
padding: 0;
spacing: 0;
&.warning {
color: $warning_color;
}
&.error {
color: $error_color;
}
}
// keyboard layout applet
.panel-status-button {
-natural-hpadding: 4px;
-minimum-hpadding: 4px;
font-weight: bold;
color: $dark_fg_color;
&:hover {
color: $selected_bg_color;
}
}
// user applet specific themeing
.user-box {
padding: 0.4em 1.3em;
spacing: 10px;
}
.user-icon {
padding: 4px;
border: none;
}
.user-label {
color: $dark_fg_color;
font-weight: bold;
font-size: 1em;
}
// the window list applet. Some third party applets inherit some of this theming.
.window-list-box {
spacing: $spacing;
padding: 1px 3px;
font-size: 0.9em;
&.vertical {
spacing: $spacing;
padding: 3px 1px;
}
#appMenuIcon {
}
}
.window-list-item-label {
}
// progress was added with cinnamon 3.6 and allows compatible applications to use the window list as a progress bar
.window-list-item-box {
border: 1px solid $interior_border;
border-radius: $roundness;
transition-duration: 150;
&:hover {
border: 1px solid $selected_border;
}
&:highlight {
border: 1px solid $selected_border;
}
.progress {
background-color: $success_color;
border: 1px solid $selected_border;
border-radius: $roundness;
color: $info_fg_color;
}
}
.window-list-item-demands-attention {
background-color: $info_bg_color;
color: $info_fg_color;
}
// cinnamon 3.8 will support an improved window-list-thumbnail preview which now has it's own selector
.window-list-preview {
@extend %bg-grad-to-right;
border-radius: $roundness;
border: 1px solid $exterior_border;
padding: 10px 15px;
spacing: 1em;
color: $dark_fg_color;
}
// the sound player applet
.sound-player {
StButton {
@extend %shared-button;
min-width: 2em;
min-height: 2em;
padding: $spacing_plus2;
color: $button_fg_color;
border-radius: $roundness;
&:small {
min-width: 1.5em;
min-height: 1.5em;
padding: $spacing;
StIcon {
icon-size: 1em;
}
}
StIcon {
icon-size: 1.5em;
}
&:hover {
@extend %shared-button-hover;
}
&:focus {
color: $selected_fg_color;
}
&:active {
@extend %shared-button-active;
}
}
.slider {
@extend %slider-shared;
height: 4px;
}
StBoxLayout {
spacing: 0.5em;
}
> StBoxLayout {
padding: 5px;
}
}
.sound-player-generic-coverart {
background: rgba(0,0,0,0.2);
}
.sound-player-overlay {
@extend %bg-grad-to-bottom;
min-width: 300px;
padding: 12px 16px;
spacing: 0.5em;
color: $dark_fg_color;
}
// workspace switcher applet simple button view
.workspace-button {
width: 2em;
height: 1em;
color: $dark_fg_color;
border: 1px solid $interior_border;
margin: 2px;
transition-duration: 150;
&:outlined {
background-color: $selected_bg_color;
color: $selected_fg_color;
border-color: $selected_border;
}
}
// workspace switcher applet graph view
.workspace-graph {
.workspace {
@extend %bg-grad-to-bottom;
border: 1px solid $interior_border;
&:active {
@extend %selected-bg-grad-to-bottom;
border: 1px solid $interior_border;
.windows {
-active-window-background: rgba(255, 255, 255, 0.8);
-active-window-border: rgba(0, 0, 0, 0.9);
-inactive-window-background: rgba(140, 140, 140, 0.8);
-inactive-window-border: rgba(0, 0, 0, 0.7);
}
}
.windows {
-active-window-background: rgba(140, 140, 140, 0.8);
-active-window-border: rgba(0, 0, 0, 0.7);
-inactive-window-background: rgba(140, 140, 140, 0.8);
-inactive-window-border: rgba(0, 0, 0, 0.7);
}
}
}
// most panel launcher themeing is orientation specific
.panel-launchers {
padding: 0 4px;
spacing: $spacing;
.launcher {
background-color:rgba(0, 0, 0, 0.01);
}
&.vertical {
padding: 4px 0;
spacing: $spacing;
.launcher .icon-box {
padding-top: 0;
}
}
}
.notification-applet-padding {
padding: .5em 1em;
}
.notification-applet-container {
max-height: 100px;
}
.systray {
spacing: 4px;
}
.flashspot {
background-color: $selected_bg_color;
}

View file

@ -0,0 +1,114 @@
// defines font family and standard font size across the whole theme
// em is preferred for better support for text scaling
stage {
font-family: roboto, Noto Sans, sans, sans-serif;
font-size: 1em;
}
.cinnamon-link {
color: $link_color;
font-style: italic;
&:hover {
color: $selected_fg_color;
}
}
.label-shadow {
color: rgba(0,0,0,0.5);
}
// themeing for various standard elements
StScrollBar {
padding: 2px;
StButton {
&#vhandle {
background-color: $scrollbar_slider_color;
border-radius: $roundness;
&:hover {
background-color: $scrollbar_slider_hover_color;
}
}
&#hhandle {
background-color: $scrollbar_slider_color;
border-radius: $roundness;
&:hover {
background-color: $scrollbar_slider_hover_color;
}
}
}
StBin#trough {
background-color: $scrollbar_bg_color;
border-radius: $roundness;
}
}
StScrollView {
&.vfade {
-st-vfade-offset: 68px;
}
&.hfade {
-st-hfade-offset: 68px;
}
StScrollBar {
min-width: 0.8em;
min-height: 0.8em;
}
}
.separator {
@extend %separator-shared;
}
.slider {
@extend %slider-shared;
}
.check-box {
CinnamonGenericContainer {
spacing: .2em;
}
StBin {
@extend %check-box-shared;
}
&:focus {
StBin {
@extend %check-box-shared;
}
&:checked StBin {
background-image: url(assets/checkbox.svg);
}
}
StLabel {
font-weight: normal;
}
&:checked StBin {
background-image: url(assets/checkbox.svg);
}
}
.radiobutton {
CinnamonGenericContainer {
spacing: .2em;
height: 18px;
padding-top: 2px;
}
StBin {
@extend %radiobutton-shared;
}
&:focus {
StBin {
@extend %radiobutton-shared;
}
&:checked StBin {
background-image: url(assets/radiobutton.svg);
}
}
StLabel {
padding-top: 4px;
font-size: 0.8em;
box-shadow: none;
}
&:checked StBin {
background-image: url(assets/radiobutton.svg);
}
}
#Tooltip {
@extend %tooltip-bg-grad-to-top;
padding: 5px 8px;
color: $tooltip_fg_color;
text-align: center;
border-radius: $roundness;
}

View file

@ -0,0 +1,59 @@
// on screen preview of windows tiling placement
.tile-preview {
@extend %tile-shared;
&.snap {
@extend %tile-shared-snap;
}
}
.tile-hud {
@extend %tile-shared;
&.snap {
@extend %tile-shared-snap;
}
&:top {
border-top-width: 0;
border-radius: 0 0 10px 10px;
}
&:bottom {
border-bottom-width: 0;
border-radius: $roundness $roundness 0 0;
}
&:left {
border-left-width: 0;
border-radius: 0 10px 10px 0;
}
&:right {
border-right-width: 0;
border-radius: 10px 0 0 10px;
}
&:top-left {
border-top-width: 0;
border-left-width: 0;
border-radius: 0 0 10px 0;
}
&:top-right {
border-top-width: 0;
border-right-width: 0;
border-radius: 0 0 0 10px;
}
&:bottom-left {
border-bottom-width: 0;
border-left-width: 0;
border-radius: 0 10px 0 0;
}
&:bottom-right {
border-bottom-width: 0;
border-right-width: 0;
border-radius: 10px 0 0 0;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View file

@ -0,0 +1,894 @@
# Oomox GTK Theme (Numix Fork)
gtk-color-scheme =
"base_color:#282828\nbg_color:#282828\ntooltip_bg_color:#282828\nselected_bg_color:#928374\ntext_color:#ebdbb2\nfg_color:#ebdbb2\ntooltip_fg_color:#ebdbb2\nselected_fg_color:#282828\nmenubar_bg_color:#1d2021\nmenubar_fg_color:#fbf1c7\ntoolbar_bg_color:#282828\ntoolbar_fg_color:#ebdbb2\nmenu_bg_color:#1d2021\nmenu_fg_color:#fbf1c7\npanel_bg_color:#282828\npanel_fg_color:#ebdbb2\nlink_color:#83a598\nbtn_bg_color:#3c3836\nbtn_fg_color:#ebdbb2\ntitlebar_bg_color:#1d2021\ntitlebar_fg_color:#fbf1c7\nprimary_caret_color:#a89984\nsecondary_caret_color:#a89984\naccent_bg_color:#928374\n"
# Default Style
style "murrine-default" {
GtkArrow::arrow-scaling= 0.6
GtkWidget::cursor_color = @primary_caret_color
GtkWidget::secondary_cursor_color = @secondary_caret_color
GtkWidget::cursor_aspect_ratio = 0.04
GtkButton::child-displacement-x = 0
GtkButton::child-displacement-y = 0
GtkButton::default-border = { 0, 0, 0, 0 }
#GtkButton::inner-border = { 2, 2, 1, 1 }
GtkButton::focus-line-width = 1
#GtkButton::focus-padding = -4
GtkButtonBox::child-min-height = 26
GtkCheckButton::indicator-size = 16
# The following line hints to gecko (and possibly other appliations)
# that the entry should be drawn transparently on the canvas.
# Without this, gecko will fill in the background of the entry.
GtkEntry::honors-transparent-bg-hint = 1
GtkEntry::state-hint = 0
GtkExpander::expander-size = 16
GtkImage::x-ayatana-indicator-dynamic = 1
GtkMenu::horizontal-padding = 0
GtkMenu::vertical-padding = 0
GtkMenuBar::internal-padding = 0
GtkMenuBar::window-dragging = 1
GtkMenuItem::arrow-scaling= 0.5
GtkPaned::handle-size = 1
GtkProgressBar::min-horizontal-bar-height = 12
GtkProgressBar::min-vertical-bar-width = 12
GtkRange::trough-border = 0
GtkRange::slider-width = 12
GtkRange::stepper-size = 12
GtkRange::stepper_spacing = 0
GtkRange::trough-under-steppers = 1
GtkScale::slider-length = 16
GtkScale::slider-width = 16
GtkScale::trough-side-details = 1
GtkScrollbar::activate-slider = 1
GtkScrollbar::has-backward-stepper = 0
GtkScrollbar::has-forward-stepper = 0
GtkScrollbar::has-secondary-backward-stepper = 0
GtkScrollbar::has-secondary-forward-stepper = 0
GtkScrollbar::min-slider-length = 80
GtkScrollbar::slider-width = 12
GtkScrollbar::trough-border = 0
GtkScrolledWindow::scrollbar-spacing = 0
GtkScrolledWindow::scrollbars-within-bevel = 1
GtkSeparatorMenuItem::horizontal-padding = 0
GtkToolbar::internal-padding = 0
GtkTreeView::expander-size = 11
GtkTreeView::vertical-separator = 0
GtkWidget::focus-line-width = 1
# The following line prevents the Firefox tabs
# from jumping a few pixels when you create a new tab
GtkWidget::focus-padding = 0
GtkWidget::wide-separators = 1
GtkWidget::separator-width = 1
GtkWidget::separator-height = 1
GtkWindow::resize-grip-height = 0
GtkWindow::resize-grip-width = 0
WnckTasklist::fade-overlay-rect = 0
GnomeHRef::link_color = @link_color
GtkHTML::link-color = @link_color
GtkIMHtmlr::hyperlink-color = @link_color
GtkIMHtml::hyperlink-color = @link_color
GtkWidget::link-color = @link_color
GtkWidget::visited-link-color = @text_color
GtkToolbar::shadow-type = GTK_SHADOW_NONE # Makes toolbars flat and unified
GtkMenuBar::shadow-type = GTK_SHADOW_NONE # Makes menubars flat and unified
xthickness = 1
ythickness = 1
fg[NORMAL] = @fg_color
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @selected_fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
bg[NORMAL] = @bg_color
bg[PRELIGHT] = shade (1.02, @bg_color)
bg[SELECTED] = @selected_bg_color
bg[ACTIVE] = shade (0.9, @bg_color)
bg[INSENSITIVE] = @bg_color
base[NORMAL] = @base_color
base[PRELIGHT] = shade (0.95, @base_color)
base[SELECTED] = @selected_bg_color
base[ACTIVE] = @selected_bg_color
base[INSENSITIVE] = shade (0.85, @base_color)
text[NORMAL] = @text_color
text[PRELIGHT] = @text_color
text[SELECTED] = @selected_fg_color
text[ACTIVE] = @selected_fg_color
text[INSENSITIVE] = mix (0.5, @base_color, @text_color)
engine "murrine" {
animation = FALSE
arrowstyle = 1 # 0 = normal arrows, 1 = filled arrows
border_shades = { 1.0, 1.0 } # gradient to draw on border
border_colors = { mix(0.2, @fg_color, @bg_color), mix(0.2, @fg_color, @bg_color) }
colorize_scrollbar = FALSE
comboboxstyle = 0 # 0 = normal combobox, 1 = colorized combobox below arrow
contrast = 0.8 # overal contrast with borders
focusstyle = 3 # 0 = none, 1 = grey dotted, 2 = colored with fill, 3 = colored glow
glazestyle = 0 # 0 = flat highlight, 1 = curved highlight, 2 = concave, 3 = top curved highlight, 4 = beryl highlight
glowstyle = 0 # 0 = glow on top, 1 = glow on bottom, 2 = glow on top and bottom, 3 = glow on middle vertically, 4 = glow on middle horizontally, 5 = glow on all sides
glow_shade = 1.0 # amount of glow
gradient_shades = { 1.0, 1.0, 1.0, 1.0 } # gradient to draw on widgets
highlight_shade = 1.0 # amount of highlight
lightborder_shade = 1.0 # amount of inset light border
lightborderstyle = 1 # 0 = lightborder on top side, 1 = lightborder on all sides
listviewheaderstyle = 0 # 0 = flat, 1 = glassy, 2 = raised
listviewstyle = 0 # 0 = none, 1 = dotted, 2 = line
menubaritemstyle = 0 # 0 = menuitem look, 1 = button look
menubarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient, 3 = striped
menuitemstyle = 0 # 0 = flat, 1 = glassy, 2 = striped
menustyle = 0 # 0 = none, 1 = vertical striped
progressbarstyle = 0 # 0 = none, 1 = diagonal striped, 2 = vertical striped
reliefstyle = 0 # 0 = flat, 1 = inset, 2 = shadow, 3 = shadow with gradient, 4 = stronger shadow with gradient
roundness = 4 # roundness of widgets
scrollbarstyle = 0 # 0 = none, 1 = circles, 2 = handles, 3 = diagonal stripes, 4 = diagonal stripes and handles, 5 = horizontal stripes, 6 = horizontal stripes and handles
sliderstyle = 0 # 0 = none, 1 = handles
stepperstyle = 1 # 0 = standard, 1 = integrated stepper handles
toolbarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient
}
}
style "murrine-wide" {
xthickness = 2
ythickness = 2
}
style "murrine-wider" {
xthickness = 3
ythickness = 3
}
style "murrine-thin" {
xthickness = 0
ythickness = 0
}
# Notebook
style "clearlooks-notebook-bg" {
bg[NORMAL] = @bg_color
bg[ACTIVE] = shade (0.80, @bg_color)
}
style "clearlooks-notebook" = "clearlooks-notebook-bg" {
xthickness = 2
ythickness = 2
engine "clearlooks" {
radius = 0.1
}
}
# Various Standard Widgets
style "murrine-button" = "murrine-wider" {
bg[NORMAL] = @btn_bg_color
bg[PRELIGHT] = shade (1.10, @btn_bg_color)
bg[SELECTED] = mix (0.5, @selected_bg_color, @bg_color)
bg[ACTIVE] = shade (0.95, @btn_bg_color)
bg[INSENSITIVE] = shade (0.75, @btn_bg_color)
#xthickness = 4
#ythickness = 4
engine "murrine" {
border_colors = { mix(0.25, @btn_fg_color, @btn_bg_color), mix(0.25, @btn_fg_color, @btn_bg_color) }
roundness = 4
gradient_shades = { 1.0, 1.0, 1.0, 1.0 }
}
}
style "murrine-buttonlabel" {
fg[NORMAL] = @btn_fg_color
fg[PRELIGHT] = @btn_fg_color
fg[SELECTED] = @btn_fg_color
fg[ACTIVE] = @btn_fg_color
fg[INSENSITIVE] = mix (0.4, @btn_bg_color, @btn_fg_color)
text[NORMAL] = @btn_fg_color
text[PRELIGHT] = @btn_fg_color
text[SELECTED] = @btn_fg_color
text[ACTIVE] = @btn_fg_color
text[INSENSITIVE] = mix (0.4, @btn_bg_color, @btn_fg_color)
engine "murrine" {
}
}
style "murrine-scrollbar" {
bg[NORMAL] = mix (0.21, @fg_color, @bg_color)
bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color)
bg[ACTIVE] = @selected_bg_color
engine "murrine" {
roundness = 0
contrast = 0.0
border_shades = { 0.9, 0.9 }
trough_shades = { 0.97, 0.97 }
trough_border_shades = { 1.0, 1.0 }
}
}
style "murrine-overlay-scrollbar" {
bg[ACTIVE] = shade (0.8, @bg_color)
bg[INSENSITIVE] = shade (0.97, @bg_color)
base[SELECTED] = shade (0.6, @bg_color)
base[INSENSITIVE] = shade (0.85, @bg_color)
}
style "murrine-scale" = "murrine-thin" {
bg[NORMAL] = @btn_bg_color
bg[ACTIVE] = mix(0.2, @fg_color, @bg_color)
bg[SELECTED] = @selected_bg_color
bg[INSENSITIVE] = mix(0.95, @bg_color, @btn_bg_color)
engine "murrine" {
roundness = 8
#roundness = 4
gradient_shades = { 1.08, 1.08, 1.08, 1.08 }
#border_shades = { 0.5, 0.5 }
border_colors = { mix(0.25, @btn_fg_color, @btn_bg_color), mix(0.25, @btn_fg_color, @btn_bg_color) }
#trough_shades = { 1.08, 1.08 }
trough_border_shades = { 0.8, 0.8 }
}
}
style "murrine-progressbar" = "murrine-thin" {
bg[NORMAL] = @bg_color
bg[ACTIVE] = mix(0.08, @bg_color, @base_color)
fg[PRELIGHT] = @selected_fg_color
engine "murrine" {
#roundness = 2
roundness = 4
border_shades = { 1.2, 1.2 }
trough_border_shades = { 0.8, 0.8 }
}
}
style "murrine-treeview-header" = "murrine-button" {
fg[NORMAL] = @fg_color
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = mix(0.20, @bg_color, @fg_color)
engine "murrine" {
roundness = 0
}
}
style "murrine-treeview" {
engine "murrine" {
roundness = 0
}
}
style "murrine-frame" = "murrine-wide" {
bg[NORMAL] = mix(0.08, @fg_color, @bg_color)
}
style "murrine-frame-title" {
fg[NORMAL] = lighter (@fg_color)
}
style "murrine-tooltips" {
xthickness = 5
ythickness = 5
bg[NORMAL] = @tooltip_bg_color
bg[SELECTED] = @tooltip_bg_color
fg[NORMAL] = @tooltip_fg_color
engine "murrine" {
textstyle = 0
roundness = 2
rgba = FALSE
}
}
style "murrine-spinbutton" = "murrine-button" {
engine "murrine" {
}
}
style "clearlooks-radiocheck" = "murrine-default" {
bg[SELECTED] = @base_color
bg[PRELIGHT] = @bg_color
text[NORMAL] = @accent_bg_color
text[PRELIGHT] = @accent_bg_color
engine "clearlooks" {
radius = 4.0
}
}
style "clearlooks-base-radiocheck" = "clearlooks-radiocheck" {
bg[PRELIGHT] = @bg_color
}
style "clearlooks-radiocheck-label" = "clearlooks-radiocheck" {
fg[NORMAL] = @fg_color
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
}
style "murrine-entry" = "murrine-wider" {
text[NORMAL] = @text_color
text[PRELIGHT] = @text_color
text[SELECTED] = @text_color
text[ACTIVE] = @text_color
text[INSENSITIVE] = mix (0.5, @base_color, @text_color)
engine "murrine" {
#border_shades = { 1.15, 1.15 }
border_colors = { mix(0.22, @text_color, @base_color), mix(0.22, @text_color, @base_color) }
roundness = 4
}
}
style "metacity-frame" = "murrine-default" {
bg[SELECTED] = @selected_bg_color
}
style "murrine-statusbar" { }
style "murrine-comboboxentry" = "murrine-entry" { }
style "murrine-hscale" = "murrine-scale" { }
style "murrine-vscale" = "murrine-scale" { }
style "murrine-hscrollbar" = "murrine-scrollbar" { }
style "murrine-vscrollbar" = "murrine-scrollbar" { }
# Menus
style "murrine-menu" = "murrine-thin" {
bg[NORMAL] = @menu_bg_color
bg[PRELIGHT] = @selected_bg_color
bg[SELECTED] = @selected_bg_color
bg[ACTIVE] = @menu_bg_color
bg[INSENSITIVE] = @menu_bg_color
fg[NORMAL] = @menu_fg_color
fg[PRELIGHT] = @selected_fg_color
fg[SELECTED] = @selected_fg_color
fg[ACTIVE] = @selected_fg_color
fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
text[NORMAL] = @menu_fg_color
text[PRELIGHT] = @selected_fg_color
text[SELECTED] = @selected_fg_color
text[ACTIVE] = @selected_fg_color
text[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
engine "murrine" {
roundness = 0
}
}
style "murrine-menu-item" = "murrine-wider" {
bg[PRELIGHT] = @selected_bg_color
bg[SELECTED] = @selected_bg_color
bg[ACTIVE] = @selected_bg_color
fg[NORMAL] = @menu_fg_color # Fix for XFCE menu text
fg[PRELIGHT] = @selected_fg_color
fg[SELECTED] = @selected_fg_color
fg[ACTIVE] = @selected_fg_color
fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
engine "murrine" {
textstyle = 0
border_shades = { 1.2, 1.2 }
}
}
style "murrine-separator-menu-item" = "murrine-thin" { }
style "murrine-menubar" {
bg[NORMAL] = @menubar_bg_color
bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
bg[ACTIVE] = shade (0.9, @menubar_bg_color)
bg[INSENSITIVE] = @menubar_bg_color
fg[NORMAL] = @menubar_fg_color
fg[PRELIGHT] = shade (1.08, @menubar_fg_color)
fg[SELECTED] = shade (1.08, @menubar_fg_color)
fg[ACTIVE] = @menubar_fg_color
fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color)
engine "murrine" {
roundness = 0
}
}
style "murrine-menubaritem" {
bg[NORMAL] = @menubar_bg_color
bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
bg[ACTIVE] = shade (0.9, @menubar_bg_color)
bg[INSENSITIVE] = @menubar_bg_color
fg[NORMAL] = @menubar_fg_color
fg[PRELIGHT] = shade (1.08, @menubar_fg_color)
fg[SELECTED] = shade (1.08, @menubar_fg_color)
fg[ACTIVE] = @menubar_fg_color
fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color)
engine "murrine" {
roundness = 0
}
}
# Toolbars
style "murrine-toolbar" = "murrine-thin" {
bg[NORMAL] = @toolbar_bg_color
bg[PRELIGHT] = shade (1.02, @toolbar_bg_color)
bg[SELECTED] = @selected_bg_color
bg[ACTIVE] = shade (0.9, @toolbar_bg_color)
bg[INSENSITIVE] = @toolbar_bg_color
fg[NORMAL] = @toolbar_fg_color
fg[PRELIGHT] = @toolbar_fg_color
fg[SELECTED] = @selected_fg_color
fg[ACTIVE] = @toolbar_fg_color
fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color)
engine "murrine" {
}
}
style "murrine-toolbutton" = "murrine-button" {
bg[NORMAL] = shade (1.08, @toolbar_bg_color)
bg[PRELIGHT] = shade (1.10, @toolbar_bg_color)
bg[SELECTED] = @selected_bg_color
bg[ACTIVE] = shade (0.95, @toolbar_bg_color)
bg[INSENSITIVE] = shade (0.85, @toolbar_bg_color)
fg[NORMAL] = @toolbar_fg_color
fg[PRELIGHT] = @toolbar_fg_color
fg[SELECTED] = @selected_fg_color
fg[ACTIVE] = @toolbar_fg_color
fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color)
engine "murrine" {
}
}
style "murrine-toolbutton-label" = "murrine-toolbutton" {
fg[NORMAL] = @toolbar_fg_color
fg[PRELIGHT] = @toolbar_fg_color
fg[SELECTED] = @selected_fg_color
fg[ACTIVE] = @toolbar_fg_color
fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color)
engine "murrine" {
}
}
class "GtkToolbar" style "murrine-toolbar"
class "GtkHandleBox" style "murrine-toolbar"
widget_class "*Toolbar*.*Separator*" style "murrine-toolbar"
# Panels
style "murrine-panel" = "murrine-thin" {
xthickness = 2
bg[NORMAL] = @panel_bg_color
bg[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color)
bg[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color)
bg[ACTIVE] = shade (0.8, @panel_bg_color)
bg[INSENSITIVE] = @panel_bg_color
fg[NORMAL] = @panel_fg_color
fg[PRELIGHT] = shade (1.08, @panel_fg_color)
fg[SELECTED] = shade (1.08, @panel_fg_color)
fg[ACTIVE] = @panel_fg_color
fg[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color)
base[NORMAL] = @panel_bg_color
base[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color)
base[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color)
base[ACTIVE] = shade (0.9, @panel_bg_color)
base[INSENSITIVE] = @panel_bg_color
text[NORMAL] = @panel_fg_color
text[PRELIGHT] = shade (1.08, @panel_fg_color)
text[SELECTED] = shade (1.08, @panel_fg_color)
text[ACTIVE] = @panel_fg_color
text[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color)
engine "murrine" {
roundness = 0
contrast = 0.0
}
}
widget "*PanelWidget*" style "murrine-panel"
widget "*PanelApplet*" style "murrine-panel"
widget "*fast-user-switch*" style "murrine-panel"
widget "*CPUFreq*Applet*" style "murrine-panel"
widget "*indicator-applet*" style "murrine-panel"
class "PanelApp*" style "murrine-panel"
class "PanelToplevel*" style "murrine-panel"
widget_class "*PanelToplevel*" style "murrine-panel"
widget_class "*notif*" style "murrine-panel"
widget_class "*Notif*" style "murrine-panel"
widget_class "*Tray*" style "murrine-panel"
widget_class "*tray*" style "murrine-panel"
widget_class "*computertemp*" style "murrine-panel"
widget_class "*Applet*Tomboy*" style "murrine-panel"
widget_class "*Applet*Netstatus*" style "murrine-panel"
widget "*gdm-user-switch-menubar*" style "murrine-panel"
# LXPanel (code based on Lubuntu-default theme's gtkrc file)
widget "*.tclock.*" style "murrine-panel"
widget "*.taskbar.*" style "murrine-panel"
widget_class "*GtkBgbox*" style "murrine-panel"
style "bold-panel-item" {
font_name = "Bold"
engine "murrine" {
roundness = 0
}
}
widget "*Panel*MenuBar*" style "bold-panel-item"
widget "*gimmie*" style "bold-panel-item"
# widget_class "*Mail*" style "murrine-panel" # Disabled to fix Evolution bug
# class "*Panel*" style "murrine-panel" # Disabled to fix bug
# XFCE Styles
style "workspace-switcher" = "murrine-panel" {
bg[ACTIVE] = @selected_bg_color
bg[SELECTED] = @selected_bg_color
}
style "xfce-header" {
bg[NORMAL] = shade (0.9, @bg_color)
base[NORMAL] = shade (1.18, @bg_color)
}
style "xfdesktop-windowlist" {
bg[NORMAL] = @base_color
fg[INSENSITIVE] = shade (0.95, @base_color)
text[INSENSITIVE] = shade (0.95, @base_color)
}
style "xfdesktop-icon-view" {
XfdesktopIconView::label-alpha = 0
XfdesktopIconView::selected-label-alpha = 60
XfdesktopIconView::shadow-x-offset = 0
XfdesktopIconView::shadow-y-offset = 1
XfdesktopIconView::selected-shadow-x-offset = 0
XfdesktopIconView::selected-shadow-y-offset = 1
XfdesktopIconView::shadow-color = @fg_color
XfdesktopIconView::selected-shadow-color = @fg_color
XfdesktopIconView::shadow-blur-radius = 2
XfdesktopIconView::cell-spacing = 2
XfdesktopIconView::cell-padding = 6
XfdesktopIconView::cell-text-width-proportion = 1.9
fg[NORMAL] = @bg_color
fg[ACTIVE] = @bg_color
}
style "xfwm-tabwin" {
Xfwm4TabwinWidget::border-width = 1
Xfwm4TabwinWidget::border-alpha = 1.0
Xfwm4TabwinWidget::icon-size = 64
Xfwm4TabwinWidget::alpha = 1.0
Xfwm4TabwinWidget::border-radius = 2
bg[NORMAL] = @menu_bg_color
bg[SELECTED] = @menu_bg_color
fg[NORMAL] = @menu_fg_color
engine "murrine" {
contrast = 0.0
border_shades = { 0.9, 0.9 }
}
}
style "xfwm-tabwin-button" {
font_name = "bold"
bg[SELECTED] = @selected_bg_color
}
style "xfsm-logout" {
bg[NORMAL] = @menu_bg_color
bg[ACTIVE] = @menu_bg_color
bg[PRELIGHT] = shade (1.1, @menu_bg_color)
bg[SELECTED] = shade (0.5, @menu_bg_color)
bg[INSENSITIVE] = shade (1.3, @menu_bg_color)
fg[NORMAL] = @menu_fg_color
fg[PRELIGHT] = @menu_fg_color
text[NORMAL] = @menu_fg_color
engine "murrine" {
}
}
style "xfsm-logout-button" {
bg[NORMAL] = shade (1.2, @menu_bg_color)
bg[PRELIGHT] = shade (1.4, @menu_bg_color)
engine "murrine" {
}
}
widget "*Pager*" style "workspace-switcher"
widget "*Xfce*Panel*" style "murrine-panel"
class "*Xfce*Panel*" style "murrine-panel"
# Thunar Styles
style "sidepane" {
base[NORMAL] = @bg_color
base[INSENSITIVE] = mix (0.4, shade (1.35, @selected_bg_color), shade (0.9, @base_color))
bg[NORMAL] = @bg_color
text[NORMAL] = mix (0.9, @fg_color, @bg_color)
}
widget_class "*ThunarShortcutsView*" style "sidepane"
widget_class "*ThunarTreeView*" style "sidepane"
widget_class "*ThunarLocationEntry*" style "murrine-entry"
style "whiskermenu" {
bg[NORMAL] = @menu_bg_color
bg[ACTIVE] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
bg[PRELIGHT] = @selected_bg_color
fg[NORMAL] = @menu_fg_color
fg[ACTIVE] = @menu_fg_color
fg[PRELIGHT] = @menu_fg_color
}
style "whiskermenu-scrollbar" = "murrine-scrollbar" {
bg[NORMAL] = mix (0.21, @fg_color, @bg_color)
bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color)
bg[ACTIVE] = @selected_bg_color
engine "murrine" {
trough_shades = { 4.97, 4.97 }
trough_border_shades = { 5.0, 5.0 }
}
}
widget "whiskermenu-window*" style "whiskermenu"
widget "*whisker*GtkVScrollbar" style "whiskermenu-scrollbar"
# Gtk2 Open-File Dialog
widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.GtkTreeView*" style "sidepane"
widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.<GtkTreeView>.<GtkButton>" style "murrine-treeview-header"
# Google Chrome/Chromium Styles (requires 9.0.597 or newer)
style "chromium-toolbar-button" {
engine "murrine" {
roundness = 2
textstyle = 0
}
}
style "chrome-gtk-frame" {
ChromeGtkFrame::frame-color = @titlebar_bg_color
ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color
ChromeGtkFrame::frame-gradient-size = 0
ChromeGtkFrame::frame-gradient-color = @titlebar_bg_color
ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color
ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color
ChromeGtkFrame::incognito-frame-gradient-size = 0
ChromeGtkFrame::incognito-frame-gradient-color = @titlebar_bg_color
ChromeGtkFrame::scrollbar-trough-color = @bg_color
ChromeGtkFrame::scrollbar-slider-normal-color = mix (0.21, @fg_color, @bg_color)
ChromeGtkFrame::scrollbar-slider-prelight-color = mix (0.31, @fg_color, @bg_color)
}
class "ChromeGtkFrame" style "chrome-gtk-frame"
widget_class "*Chrom*Button*" style "chromium-toolbar-button"
# General Styles
class "GtkWidget" style "murrine-default"
class "GtkFrame" style "murrine-frame"
class "MetaFrames" style "metacity-frame"
class "GtkWindow" style "metacity-frame"
class "GtkSeparator" style "murrine-wide"
class "GtkCalendar" style "murrine-wide"
class "GtkSpinButton" style "murrine-spinbutton"
class "GtkScale" style "murrine-scale"
class "GtkVScale" style "murrine-vscale"
class "GtkHScale" style "murrine-hscale"
class "GtkScrollbar" style "murrine-scrollbar"
class "GtkVScrollbar" style "murrine-vscrollbar"
class "GtkHScrollbar" style "murrine-hscrollbar"
class "GtkEntry" style "murrine-entry"
widget_class "*<GtkNotebook>" style "clearlooks-notebook"
widget_class "*<GtkNotebook>*<GtkEventBox>" style "clearlooks-notebook-bg"
widget_class "*<GtkNotebook>*<GtkDrawingArea>" style "clearlooks-notebook-bg"
widget_class "*<GtkNotebook>*<GtkLayout>" style "clearlooks-notebook-bg"
widget_class "*.GtkNotebook.*.GtkViewport" style "clearlooks-notebook"
widget_class "*<GtkButton>" style "murrine-button"
widget_class "*<GtkStatusbar>*" style "murrine-statusbar"
widget_class "*<GtkProgress>" style "murrine-progressbar"
widget_class "*<GtkProgressBar>" style "murrine-progressbar"
widget_class "*<GtkComboBoxEntry>*" style "murrine-comboboxentry"
widget_class "*<GtkCombo>*" style "murrine-comboboxentry"
widget_class "*<GtkMenu>*" style "murrine-menu"
widget_class "*<GtkMenuItem>*" style "murrine-menu-item"
widget_class "*<GtkSeparatorMenuItem>*" style "murrine-separator-menu-item"
widget_class "*Menu*.*Sepa*" style "murrine-separator-menu-item"
widget_class "*<GtkMenuBar>*" style "murrine-menubar"
widget_class "*<GtkMenuBar>*<GtkMenuItem>*" style "murrine-menubaritem"
widget_class "*GtkToolButton*" style "murrine-toolbutton"
widget_class "*GtkToggleToolButton*" style "murrine-toolbutton"
widget_class "*GtkMenuToolButton*" style "murrine-toolbutton"
widget_class "*GtkToolbar*Button" style "murrine-toolbutton"
widget_class "*.<GtkFrame>.<GtkLabel>" style "murrine-frame-title"
widget_class "*.<GtkTreeView>*" style "murrine-treeview"
widget_class "*.<GtkTreeView>.<GtkButton>" style "murrine-treeview-header"
widget_class "*.<GtkCTree>.<GtkButton>" style "murrine-treeview-header"
widget_class "*.<GtkList>.<GtkButton>" style "murrine-treeview-header"
widget_class "*.<GtkCList>.<GtkButton>" style "murrine-treeview-header"
widget_class "*.<GtkCheckButton>" style "clearlooks-radiocheck"
widget_class "*<GtkNotebook>.*.<GtkCheckButton>" style "clearlooks-base-radiocheck"
widget_class "*<GtkCellRendererToggle>" style "clearlooks-base-radiocheck"
widget "gtk-tooltip*" style "murrine-tooltips"
widget_class "*<GtkScrolledWindow>*<OsScrollbar>" style "murrine-overlay-scrollbar"
# Workarounds and Non-Standard Styling
style "text-is-fg-color-workaround" {
text[NORMAL] = @text_color
text[PRELIGHT] = @fg_color
text[SELECTED] = @selected_fg_color
text[ACTIVE] = @fg_color
text[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
}
widget_class "*.<GtkComboBox>.<GtkCellView>" style "text-is-fg-color-workaround"
style "fg-is-text-color-workaround" {
fg[NORMAL] = @text_color
fg[PRELIGHT] = @text_color
fg[ACTIVE] = @selected_fg_color
fg[SELECTED] = @selected_fg_color
fg[INSENSITIVE] = darker (@fg_color)
}
widget_class "*<GtkListItem>*" style "fg-is-text-color-workaround"
widget_class "*<GtkCList>" style "fg-is-text-color-workaround"
widget_class "*<EelEditableLabel>" style "fg-is-text-color-workaround"
style "murrine-evo-new-button-workaround" {
engine "murrine" {
toolbarstyle = 0
}
}
widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "murrine-evo-new-button-workaround"
style "inkscape-toolbar-fix" {
engine "murrine" {
gradient_shades = { 1.0, 1.0, 1.0, 1.0 }
highlight_shade = 1.0
}
}
#widget "*GtkHandleBox*" style "inkscape-toolbar-fix"
#widget "*HandleBox*CommandsToolbar*" style "inkscape-toolbar-fix"
#widget "*HandleBox*SnapToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*SelectToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*NodeToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*TweakToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*ZoomToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*StarToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*RectToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*3DBoxToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*ArcToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*SpiralToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*PencilToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*PenToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*CalligraphyToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*EraserToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*LPEToolToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*DropperToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*ConnectorToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*PaintbucketToolbar*" style "inkscape-toolbar-fix"
# Performance Fixes
style "performance-fix" {
engine "murrine" {
textstyle = 0
}
}
widget_class "*gtkmm__GtkWindow*" style "performance-fix" # Inkscape
widget_class "*GimpDisplayShell*" style "performance-fix" # Gimp
widget_class "*GimpToolbox*" style "performance-fix"
widget_class "*GimpMenuDock*" style "performance-fix"
widget "*OOoFixed*" style "performance-fix" # Openoffice/Libreoffice
widget_class "*MozContainer*" style "performance-fix" # Firefox (Not sure if this one does anything though.)
widget_class "*XfceHeading*" style "xfce-header"
widget_class "*XfceDesktop*" style "xfdesktop-windowlist"
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
widget "xfwm4-tabwin*" style "xfwm-tabwin"
widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button"
widget_class "*XfsmLogoutDialog*" style "xfsm-logout"
widget_class "*XfsmLogoutDialog*GtkButton" style "xfsm-logout-button"
# button fg workarounds:
widget_class "*.<GtkButton>.<GtkLabel>" style "murrine-buttonlabel"
widget_class "*<GtkButton>*<GtkLabel>*" style:highest "murrine-buttonlabel"
widget_class "*<GtkCheckButton>*<GtkLabel>*" style:highest "clearlooks-radiocheck-label"
widget_class "*<GtkComboBoxText>*" style "murrine-buttonlabel"
widget_class "*<GtkComboBoxText>*<GtkToggleButton>*" style "murrine-buttonlabel"
widget_class "*<GtkComboBoxText>*<GtkEntry>*" style:highest "murrine-entry"
widget_class "*<GtkToolbar>*<GtkToolButton>*<GtkLabel>*" style:highest "murrine-toolbutton-label"

View file

@ -0,0 +1,995 @@
# Oomox GTK Theme (Numix Fork)
gtk-color-scheme =
"base_color:#282828\nbg_color:#282828\ntooltip_bg_color:#282828\nselected_bg_color:#928374\ntext_color:#ebdbb2\nfg_color:#ebdbb2\ntooltip_fg_color:#ebdbb2\nselected_fg_color:#282828\nmenubar_bg_color:#1d2021\nmenubar_fg_color:#fbf1c7\ntoolbar_bg_color:#282828\ntoolbar_fg_color:#ebdbb2\nmenu_bg_color:#1d2021\nmenu_fg_color:#fbf1c7\npanel_bg_color:#282828\npanel_fg_color:#ebdbb2\nlink_color:#83a598\nbtn_bg_color:#3c3836\nbtn_fg_color:#ebdbb2\ntitlebar_bg_color:#1d2021\ntitlebar_fg_color:#fbf1c7\nprimary_caret_color:#a89984\nsecondary_caret_color:#a89984\naccent_bg_color:#928374\n"
# Default Style
style "murrine-default" {
GtkArrow::arrow-scaling= 1.0
GtkButton::child-displacement-x = 0
GtkButton::child-displacement-y = 0
#GtkButton::default-border = { 0, 0, 0, 0 }
GtkButton::inner-border = { 0, 0, 1, 0 }
GtkButton::focus-line-width = 2
#GtkButton::focus-padding = 4
GtkButton::focus-padding = 2
#GtkButton::interior-focus = 1
GtkEntry::inner-border = { 4, 4, 5, 4 }
GtkComboBox::inner-border = { 4, 4, 6, 5 }
GtkComboBoxText::inner-border = { 4, 4, 6, 5 }
#GtkButtonBox::child-min-height = 52
GtkCheckButton::indicator-size = 30
# The following line hints to gecko (and possibly other appliations)
# that the entry should be drawn transparently on the canvas.
# Without this, gecko will fill in the background of the entry.
GtkEntry::honors-transparent-bg-hint = 1
GtkEntry::state-hint = 0
GtkExpander::expander-size = 30
GtkImage::x-ayatana-indicator-dynamic = 1
GtkMenu::horizontal-padding = 2
GtkMenu::vertical-padding = 2
GtkMenuBar::internal-padding = 1
GtkMenuBar::window-dragging = 1
GtkMenuItem::arrow-scaling= 0.5
GtkPaned::handle-size = 1
GtkProgressBar::min-horizontal-bar-height = 14
GtkProgressBar::min-vertical-bar-width = 14
GtkRange::trough-border = 0
GtkRange::slider-width = 24
GtkRange::stepper-size = 24
GtkRange::stepper_spacing = 0
GtkRange::trough-under-steppers = 1
GtkScale::slider-length = 30
GtkScale::slider-width = 30
GtkScale::trough-side-details = 1
GtkScrollbar::activate-slider = 1
GtkScrollbar::has-backward-stepper = 0
GtkScrollbar::has-forward-stepper = 0
GtkScrollbar::has-secondary-backward-stepper = 0
GtkScrollbar::has-secondary-forward-stepper = 0
GtkScrollbar::min-slider-length = 160
GtkScrollbar::slider-width = 24
GtkScrollbar::trough-border = 0
GtkScrolledWindow::scrollbar-spacing = 0
GtkScrolledWindow::scrollbars-within-bevel = 1
GtkSeparatorMenuItem::horizontal-padding = 0
GtkToolbar::internal-padding = 0
GtkTreeView::expander-size = 22
GtkTreeView::vertical-separator = 0
GtkWidget::focus-line-width = 2
# The following line prevents the Firefox tabs
# from jumping a few pixels when you create a new tab
GtkWidget::focus-padding = 0
GtkWidget::wide-separators = 1
GtkWidget::separator-width = 2
GtkWidget::separator-height = 2
GtkWindow::resize-grip-height = 2
GtkWindow::resize-grip-width = 2
WnckTasklist::fade-overlay-rect = 0
GnomeHRef::link_color = @link_color
GtkHTML::link-color = @link_color
GtkIMHtmlr::hyperlink-color = @link_color
GtkIMHtml::hyperlink-color = @link_color
GtkWidget::link-color = @link_color
GtkWidget::visited-link-color = @text_color
GtkToolbar::shadow-type = GTK_SHADOW_NONE # Makes toolbars flat and unified
GtkMenuBar::shadow-type = GTK_SHADOW_NONE # Makes menubars flat and unified
xthickness = 2
ythickness = 2
fg[NORMAL] = @fg_color
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @selected_fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
bg[NORMAL] = @bg_color
bg[PRELIGHT] = shade (1.02, @bg_color)
bg[SELECTED] = @selected_bg_color
bg[ACTIVE] = shade (0.9, @bg_color)
bg[INSENSITIVE] = @bg_color
base[NORMAL] = @base_color
base[PRELIGHT] = shade (0.95, @base_color)
base[SELECTED] = @selected_bg_color
base[ACTIVE] = @selected_bg_color
base[INSENSITIVE] = shade (0.85, @base_color)
text[NORMAL] = @text_color
text[PRELIGHT] = @text_color
text[SELECTED] = @selected_fg_color
text[ACTIVE] = @selected_fg_color
text[INSENSITIVE] = mix (0.5, @base_color, @text_color)
engine "murrine" {
animation = FALSE
arrowstyle = 1 # 0 = normal arrows, 1 = filled arrows
border_shades = { 1.0, 1.0 } # gradient to draw on border
border_colors = { mix(0.2, @fg_color, @bg_color), mix(0.2, @fg_color, @bg_color) }
colorize_scrollbar = FALSE
comboboxstyle = 0 # 0 = normal combobox, 1 = colorized combobox below arrow
contrast = 0.8 # overal contrast with borders
focusstyle = 3 # 0 = none, 1 = grey dotted, 2 = colored with fill, 3 = colored glow
glazestyle = 0 # 0 = flat highlight, 1 = curved highlight, 2 = concave, 3 = top curved highlight, 4 = beryl highlight
glowstyle = 0 # 0 = glow on top, 1 = glow on bottom, 2 = glow on top and bottom, 3 = glow on middle vertically, 4 = glow on middle horizontally, 5 = glow on all sides
glow_shade = 1.0 # amount of glow
gradient_shades = { 1.0, 1.0, 1.0, 1.0 } # gradient to draw on widgets
highlight_shade = 1.0 # amount of highlight
lightborder_shade = 1.0 # amount of inset light border
lightborderstyle = 1 # 0 = lightborder on top side, 1 = lightborder on all sides
listviewheaderstyle = 0 # 0 = flat, 1 = glassy, 2 = raised
listviewstyle = 0 # 0 = none, 1 = dotted, 2 = line
menubaritemstyle = 0 # 0 = menuitem look, 1 = button look
menubarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient, 3 = striped
menuitemstyle = 0 # 0 = flat, 1 = glassy, 2 = striped
menustyle = 0 # 0 = none, 1 = vertical striped
progressbarstyle = 0 # 0 = none, 1 = diagonal striped, 2 = vertical striped
reliefstyle = 0 # 0 = flat, 1 = inset, 2 = shadow, 3 = shadow with gradient, 4 = stronger shadow with gradient
roundness = 8# roundness of widgets
scrollbarstyle = 0 # 0 = none, 1 = circles, 2 = handles, 3 = diagonal stripes, 4 = diagonal stripes and handles, 5 = horizontal stripes, 6 = horizontal stripes and handles
sliderstyle = 0 # 0 = none, 1 = handles
stepperstyle = 1 # 0 = standard, 1 = integrated stepper handles
toolbarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient
}
}
style "murrine-wide" {
xthickness = 6
ythickness = 6
}
style "murrine-wider" {
xthickness = 10
ythickness = 10
}
style "murrine-thin" {
xthickness = 1
ythickness = 1
}
# Notebook
style "clearlooks-notebook-bg" {
bg[NORMAL] = @bg_color
bg[ACTIVE] = shade (0.80, @bg_color)
}
style "clearlooks-notebook" = "clearlooks-notebook-bg" {
xthickness = 8
ythickness = 4
engine "clearlooks" {
radius = 0.1
}
}
# Various Standard Widgets
style "murrine-button" = "murrine-wider" {
bg[NORMAL] = @btn_bg_color
bg[PRELIGHT] = shade (1.04, @btn_bg_color)
bg[SELECTED] = mix (0.5, @selected_bg_color, @bg_color)
bg[ACTIVE] = shade (0.95, @btn_bg_color)
bg[INSENSITIVE] = shade (0.75, @btn_bg_color)
xthickness = 10
ythickness = 10
#xthickness = 5
#ythickness = 5
engine "murrine" {
border_colors = { mix(0.25, @btn_fg_color, @btn_bg_color), mix(0.25, @btn_fg_color, @btn_bg_color) }
roundness = 8
gradient_shades = { 1.0, 1.0, 1.0, 1.0 }
}
}
style "murrine-buttonlabel" {
fg[NORMAL] = @btn_fg_color
fg[PRELIGHT] = @btn_fg_color
fg[SELECTED] = @btn_fg_color
fg[ACTIVE] = @btn_fg_color
fg[INSENSITIVE] = mix (0.4, @btn_bg_color, @btn_fg_color)
text[NORMAL] = @btn_fg_color
text[PRELIGHT] = @btn_fg_color
text[SELECTED] = @btn_fg_color
text[ACTIVE] = @btn_fg_color
text[INSENSITIVE] = @btn_fg_color
text[INSENSITIVE] = mix (0.4, @btn_bg_color, @btn_fg_color)
engine "murrine" {
}
}
style "murrine-comboboxtext" = "murrine-buttonlabel" {
xthickness = 10
ythickness = 10
}
style "murrine-togglebutton" = "murrine-buttonlabel" {
xthickness = 10
ythickness = 10
}
style "murrine-radiocheck" = "murrine-togglebutton" {
text[NORMAL] = @accent_bg_color
text[PRELIGHT] = @accent_bg_color
}
style "murrine-scrollbar" {
bg[NORMAL] = mix (0.21, @fg_color, @bg_color)
bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color)
bg[ACTIVE] = @selected_bg_color
engine "murrine" {
roundness = 8
contrast = 0.0
border_shades = { 0.9, 0.9 }
trough_shades = { 0.97, 0.97 }
trough_border_shades = { 1.0, 1.0 }
}
}
style "murrine-overlay-scrollbar" {
bg[ACTIVE] = shade (0.8, @bg_color)
bg[INSENSITIVE] = shade (0.97, @bg_color)
base[SELECTED] = shade (0.6, @bg_color)
base[INSENSITIVE] = shade (0.85, @bg_color)
}
style "murrine-scale" = "murrine-thin" {
bg[NORMAL] = @btn_bg_color
bg[ACTIVE] = mix(0.2, @fg_color, @bg_color)
bg[SELECTED] = @selected_bg_color
bg[INSENSITIVE] = mix(0.95, @bg_color, @btn_bg_color)
engine "murrine" {
roundness = 25
#roundness = 8
gradient_shades = { 1.08, 1.08, 1.08, 1.08 }
#border_shades = { 0.5, 0.5 }
border_colors = { mix(0.25, @btn_fg_color, @btn_bg_color), mix(0.25, @btn_fg_color, @btn_bg_color) }
#trough_shades = { 1.08, 1.08 }
trough_border_shades = { 0.8, 0.8 }
}
}
style "murrine-progressbar" = "murrine-thin" {
bg[NORMAL] = @bg_color
bg[ACTIVE] = mix(0.08, @bg_color, @base_color)
fg[PRELIGHT] = @selected_fg_color
engine "murrine" {
roundness = 8
border_shades = { 1.2, 1.2 }
trough_border_shades = { 0.8, 0.8 }
}
}
style "murrine-treeview-header" = "murrine-button" {
fg[NORMAL] = @fg_color
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = mix(0.20, @bg_color, @fg_color)
engine "murrine" {
roundness = 0
}
}
style "murrine-treeview" {
engine "murrine" {
roundness = 0
}
}
style "murrine-frame" = "murrine-wide" {
bg[NORMAL] = mix(0.08, @fg_color, @bg_color)
}
style "murrine-frame-title" {
fg[NORMAL] = lighter (@fg_color)
}
style "murrine-tooltips" {
xthickness = 10
ythickness = 10
bg[NORMAL] = @tooltip_bg_color
bg[SELECTED] = @tooltip_bg_color
fg[NORMAL] = @tooltip_fg_color
engine "murrine" {
textstyle = 0
roundness = 8
rgba = FALSE
}
}
style "murrine-spinbutton" = "murrine-button" {
xthickness = 10
ythickness = 10
engine "murrine" {
}
}
style "clearlooks-radiocheck" = "murrine-default" {
bg[SELECTED] = @base_color
bg[PRELIGHT] = @bg_color
text[NORMAL] = @accent_bg_color
text[PRELIGHT] = @accent_bg_color
engine "clearlooks" {
radius = 8.0
}
}
style "clearlooks-base-radiocheck" = "clearlooks-radiocheck" {
bg[PRELIGHT] = @bg_color
}
style "clearlooks-radiocheck-label" = "clearlooks-radiocheck" {
fg[NORMAL] = @fg_color
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
}
style "murrine-entry" = "murrine-wider" {
text[NORMAL] = @text_color
text[PRELIGHT] = @text_color
text[SELECTED] = @text_color
text[ACTIVE] = @text_color
text[INSENSITIVE] = mix (0.5, @base_color, @text_color)
xthickness = 10
ythickness = 10
engine "murrine" {
#border_shades = { 1.15, 1.15 }
border_colors = { mix(0.22, @text_color, @base_color), mix(0.22, @text_color, @base_color) }
roundness = 8
}
}
style "metacity-frame" = "murrine-default" {
bg[SELECTED] = @selected_bg_color
}
style "murrine-statusbar" { }
style "murrine-comboboxentry" = "murrine-entry" { }
style "murrine-hscale" = "murrine-scale" { }
style "murrine-vscale" = "murrine-scale" { }
style "murrine-hscrollbar" = "murrine-scrollbar" { }
style "murrine-vscrollbar" = "murrine-scrollbar" { }
# Menus
style "murrine-menu" = "murrine-thin" {
bg[NORMAL] = @menu_bg_color
bg[PRELIGHT] = @selected_bg_color
bg[SELECTED] = @selected_bg_color
bg[ACTIVE] = @menu_bg_color
bg[INSENSITIVE] = @menu_bg_color
fg[NORMAL] = @menu_fg_color
fg[PRELIGHT] = @selected_fg_color
fg[SELECTED] = @selected_fg_color
fg[ACTIVE] = @selected_fg_color
fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
text[NORMAL] = @menu_fg_color
text[PRELIGHT] = @selected_fg_color
text[SELECTED] = @selected_fg_color
text[ACTIVE] = @selected_fg_color
text[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
engine "murrine" {
roundness = 0
}
}
style "murrine-menu-item" = "murrine-wider" {
bg[PRELIGHT] = @selected_bg_color
bg[SELECTED] = @selected_bg_color
bg[ACTIVE] = @selected_bg_color
fg[NORMAL] = @menu_fg_color # Fix for XFCE menu text
fg[PRELIGHT] = @selected_fg_color
fg[SELECTED] = @selected_fg_color
fg[ACTIVE] = @selected_fg_color
fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color)
engine "murrine" {
textstyle = 0
border_shades = { 1.2, 1.2 }
}
}
style "murrine-separator-menu-item" = "murrine-thin" { }
style "murrine-menubar" {
bg[NORMAL] = @menubar_bg_color
bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
bg[ACTIVE] = shade (0.9, @menubar_bg_color)
bg[INSENSITIVE] = @menubar_bg_color
fg[NORMAL] = @menubar_fg_color
fg[PRELIGHT] = shade (1.08, @menubar_fg_color)
fg[SELECTED] = shade (1.08, @menubar_fg_color)
fg[ACTIVE] = @menubar_fg_color
fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color)
engine "murrine" {
roundness = 0
}
}
style "murrine-menubaritem" {
bg[NORMAL] = @menubar_bg_color
bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
bg[ACTIVE] = shade (0.9, @menubar_bg_color)
bg[INSENSITIVE] = @menubar_bg_color
fg[NORMAL] = @menubar_fg_color
fg[PRELIGHT] = shade (1.08, @menubar_fg_color)
fg[SELECTED] = shade (1.08, @menubar_fg_color)
fg[ACTIVE] = @menubar_fg_color
fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color)
engine "murrine" {
roundness = 0
}
}
# Toolbars
style "murrine-toolbar" = "murrine-thin" {
bg[NORMAL] = @toolbar_bg_color
bg[PRELIGHT] = shade (1.02, @toolbar_bg_color)
bg[SELECTED] = @selected_bg_color
bg[ACTIVE] = shade (0.9, @toolbar_bg_color)
bg[INSENSITIVE] = @toolbar_bg_color
fg[NORMAL] = @toolbar_fg_color
fg[PRELIGHT] = @toolbar_fg_color
fg[SELECTED] = @selected_fg_color
fg[ACTIVE] = @toolbar_fg_color
fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color)
engine "murrine" {
}
}
style "murrine-toolbutton" = "murrine-button" {
bg[NORMAL] = shade (1.08, @toolbar_bg_color)
bg[PRELIGHT] = shade (1.10, @toolbar_bg_color)
bg[SELECTED] = @selected_bg_color
bg[ACTIVE] = shade (0.95, @toolbar_bg_color)
bg[INSENSITIVE] = shade (0.85, @toolbar_bg_color)
fg[NORMAL] = @toolbar_fg_color
fg[PRELIGHT] = @toolbar_fg_color
fg[SELECTED] = @selected_fg_color
fg[ACTIVE] = @toolbar_fg_color
fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color)
engine "murrine" {
}
}
style "murrine-toolbutton-label" = "murrine-toolbutton" {
fg[NORMAL] = @toolbar_fg_color
fg[PRELIGHT] = @toolbar_fg_color
fg[SELECTED] = @selected_fg_color
fg[ACTIVE] = @toolbar_fg_color
fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color)
engine "murrine" {
}
}
class "GtkToolbar" style "murrine-toolbar"
class "GtkHandleBox" style "murrine-toolbar"
widget_class "*Toolbar*.*Separator*" style "murrine-toolbar"
# Panels
style "murrine-panel" = "murrine-thin" {
xthickness = 2
bg[NORMAL] = @panel_bg_color
bg[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color)
bg[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color)
bg[ACTIVE] = shade (0.8, @panel_bg_color)
bg[INSENSITIVE] = @panel_bg_color
fg[NORMAL] = @panel_fg_color
fg[PRELIGHT] = shade (1.08, @panel_fg_color)
fg[SELECTED] = shade (1.08, @panel_fg_color)
fg[ACTIVE] = @panel_fg_color
fg[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color)
base[NORMAL] = @panel_bg_color
base[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color)
base[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color)
base[ACTIVE] = shade (0.9, @panel_bg_color)
base[INSENSITIVE] = @panel_bg_color
text[NORMAL] = @panel_fg_color
text[PRELIGHT] = shade (1.08, @panel_fg_color)
text[SELECTED] = shade (1.08, @panel_fg_color)
text[ACTIVE] = @panel_fg_color
text[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color)
engine "murrine" {
roundness = 0
contrast = 0.0
}
}
widget "*PanelWidget*" style "murrine-panel"
widget "*PanelApplet*" style "murrine-panel"
widget "*fast-user-switch*" style "murrine-panel"
widget "*CPUFreq*Applet*" style "murrine-panel"
widget "*indicator-applet*" style "murrine-panel"
class "PanelApp*" style "murrine-panel"
class "PanelToplevel*" style "murrine-panel"
widget_class "*PanelToplevel*" style "murrine-panel"
widget_class "*notif*" style "murrine-panel"
widget_class "*Notif*" style "murrine-panel"
widget_class "*Tray*" style "murrine-panel"
widget_class "*tray*" style "murrine-panel"
widget_class "*computertemp*" style "murrine-panel"
widget_class "*Applet*Tomboy*" style "murrine-panel"
widget_class "*Applet*Netstatus*" style "murrine-panel"
widget "*gdm-user-switch-menubar*" style "murrine-panel"
# LXPanel (code based on Lubuntu-default theme's gtkrc file)
widget "*.tclock.*" style "murrine-panel"
widget "*.taskbar.*" style "murrine-panel"
widget_class "*GtkBgbox*" style "murrine-panel"
style "bold-panel-item" {
font_name = "Bold"
engine "murrine" {
roundness = 0
}
}
widget "*Panel*MenuBar*" style "bold-panel-item"
widget "*gimmie*" style "bold-panel-item"
# widget_class "*Mail*" style "murrine-panel" # Disabled to fix Evolution bug
# class "*Panel*" style "murrine-panel" # Disabled to fix bug
# XFCE Styles
style "workspace-switcher" = "murrine-panel" {
bg[ACTIVE] = @selected_bg_color
bg[SELECTED] = @selected_bg_color
}
style "xfce-header" {
bg[NORMAL] = shade (0.9, @bg_color)
base[NORMAL] = shade (1.18, @bg_color)
}
style "xfdesktop-windowlist" {
bg[NORMAL] = @base_color
fg[INSENSITIVE] = shade (0.95, @base_color)
text[INSENSITIVE] = shade (0.95, @base_color)
}
style "xfdesktop-icon-view" {
XfdesktopIconView::label-alpha = 0
XfdesktopIconView::selected-label-alpha = 60
XfdesktopIconView::shadow-x-offset = 0
XfdesktopIconView::shadow-y-offset = 1
XfdesktopIconView::selected-shadow-x-offset = 0
XfdesktopIconView::selected-shadow-y-offset = 1
XfdesktopIconView::shadow-color = @fg_color
XfdesktopIconView::selected-shadow-color = @fg_color
XfdesktopIconView::shadow-blur-radius = 2
XfdesktopIconView::cell-spacing = 2
XfdesktopIconView::cell-padding = 6
XfdesktopIconView::cell-text-width-proportion = 1.9
fg[NORMAL] = @bg_color
fg[ACTIVE] = @bg_color
}
style "xfwm-tabwin" {
Xfwm4TabwinWidget::border-width = 1
Xfwm4TabwinWidget::border-alpha = 1.0
Xfwm4TabwinWidget::icon-size = 64
Xfwm4TabwinWidget::alpha = 1.0
Xfwm4TabwinWidget::border-radius = 2
bg[NORMAL] = @menu_bg_color
bg[SELECTED] = @menu_bg_color
fg[NORMAL] = @menu_fg_color
engine "murrine" {
contrast = 0.0
border_shades = { 0.9, 0.9 }
}
}
style "xfwm-tabwin-button" {
font_name = "bold"
bg[SELECTED] = @selected_bg_color
}
style "xfsm-logout" {
bg[NORMAL] = @menu_bg_color
bg[ACTIVE] = @menu_bg_color
bg[PRELIGHT] = shade (1.1, @menu_bg_color)
bg[SELECTED] = shade (0.5, @menu_bg_color)
bg[INSENSITIVE] = shade (1.3, @menu_bg_color)
fg[NORMAL] = @menu_fg_color
fg[PRELIGHT] = @menu_fg_color
text[NORMAL] = @menu_fg_color
engine "murrine" {
}
}
style "xfsm-logout-button" {
bg[NORMAL] = shade (1.2, @menu_bg_color)
bg[PRELIGHT] = shade (1.4, @menu_bg_color)
engine "murrine" {
}
}
widget "*Pager*" style "workspace-switcher"
widget "*Xfce*Panel*" style "murrine-panel"
class "*Xfce*Panel*" style "murrine-panel"
# Thunar Styles
style "sidepane" {
base[NORMAL] = @bg_color
base[INSENSITIVE] = mix (0.4, shade (1.35, @selected_bg_color), shade (0.9, @base_color))
bg[NORMAL] = @bg_color
text[NORMAL] = mix (0.9, @fg_color, @bg_color)
}
widget_class "*ThunarShortcutsView*" style "sidepane"
widget_class "*ThunarTreeView*" style "sidepane"
widget_class "*ThunarLocationEntry*" style "murrine-entry"
style "whiskermenu" {
bg[NORMAL] = @menu_bg_color
bg[ACTIVE] = mix (0.21, @menubar_fg_color, @menubar_bg_color)
bg[PRELIGHT] = @selected_bg_color
fg[NORMAL] = @menu_fg_color
fg[ACTIVE] = @menu_fg_color
fg[PRELIGHT] = @menu_fg_color
}
style "whiskermenu-scrollbar" = "murrine-scrollbar" {
bg[NORMAL] = mix (0.21, @fg_color, @bg_color)
bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color)
bg[ACTIVE] = @selected_bg_color
engine "murrine" {
trough_shades = { 4.97, 4.97 }
trough_border_shades = { 5.0, 5.0 }
}
}
widget "whiskermenu-window*" style "whiskermenu"
widget "*whisker*GtkVScrollbar" style "whiskermenu-scrollbar"
# Gtk2 Open-File Dialog
widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.GtkTreeView*" style "sidepane"
widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.<GtkTreeView>.<GtkButton>" style "murrine-treeview-header"
# Google Chrome/Chromium Styles (requires 9.0.597 or newer)
style "chromium-toolbar-button" {
engine "murrine" {
roundness = 8
textstyle = 0
}
}
style "chrome-gtk-frame" {
ChromeGtkFrame::frame-color = @titlebar_bg_color
ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color
ChromeGtkFrame::frame-gradient-size = 0
ChromeGtkFrame::frame-gradient-color = @titlebar_bg_color
ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color
ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color
ChromeGtkFrame::incognito-frame-gradient-size = 0
ChromeGtkFrame::incognito-frame-gradient-color = @titlebar_bg_color
ChromeGtkFrame::scrollbar-trough-color = @bg_color
ChromeGtkFrame::scrollbar-slider-normal-color = mix (0.21, @fg_color, @bg_color)
ChromeGtkFrame::scrollbar-slider-prelight-color = mix (0.31, @fg_color, @bg_color)
}
class "ChromeGtkFrame" style "chrome-gtk-frame"
widget_class "*Chrom*Button*" style "chromium-toolbar-button"
# General Styles
class "GtkWidget" style "murrine-default"
class "GtkFrame" style "murrine-frame"
class "MetaFrames" style "metacity-frame"
class "GtkWindow" style "metacity-frame"
class "GtkSeparator" style "murrine-wide"
class "GtkCalendar" style "murrine-wide"
class "GtkSpinButton" style "murrine-spinbutton"
class "GtkScale" style "murrine-scale"
class "GtkVScale" style "murrine-vscale"
class "GtkHScale" style "murrine-hscale"
class "GtkScrollbar" style "murrine-scrollbar"
class "GtkVScrollbar" style "murrine-vscrollbar"
class "GtkHScrollbar" style "murrine-hscrollbar"
class "GtkEntry" style "murrine-entry"
widget_class "*<GtkNotebook>" style "clearlooks-notebook"
widget_class "*<GtkNotebook>*<GtkEventBox>" style "clearlooks-notebook-bg"
widget_class "*<GtkNotebook>*<GtkDrawingArea>" style "clearlooks-notebook-bg"
widget_class "*<GtkNotebook>*<GtkLayout>" style "clearlooks-notebook-bg"
widget_class "*.GtkNotebook.*.GtkViewport" style "clearlooks-notebook"
widget_class "*<GtkButton>" style "murrine-button"
widget_class "*<GtkStatusbar>*" style "murrine-statusbar"
widget_class "*<GtkProgress>" style "murrine-progressbar"
widget_class "*<GtkProgressBar>" style "murrine-progressbar"
widget_class "*<GtkComboBoxEntry>*" style "murrine-comboboxentry"
widget_class "*<GtkCombo>*" style "murrine-comboboxentry"
widget_class "*<GtkMenu>*" style "murrine-menu"
widget_class "*<GtkMenuItem>*" style "murrine-menu-item"
widget_class "*<GtkSeparatorMenuItem>*" style "murrine-separator-menu-item"
widget_class "*Menu*.*Sepa*" style "murrine-separator-menu-item"
widget_class "*<GtkMenuBar>*" style "murrine-menubar"
widget_class "*<GtkMenuBar>*<GtkMenuItem>*" style "murrine-menubaritem"
widget_class "*GtkToolButton*" style "murrine-toolbutton"
widget_class "*GtkToggleToolButton*" style "murrine-toolbutton"
widget_class "*GtkMenuToolButton*" style "murrine-toolbutton"
widget_class "*GtkToolbar*Button" style "murrine-toolbutton"
widget_class "*.<GtkFrame>.<GtkLabel>" style "murrine-frame-title"
widget_class "*.<GtkTreeView>*" style "murrine-treeview"
widget_class "*.<GtkTreeView>.<GtkButton>" style "murrine-treeview-header"
widget_class "*.<GtkCTree>.<GtkButton>" style "murrine-treeview-header"
widget_class "*.<GtkList>.<GtkButton>" style "murrine-treeview-header"
widget_class "*.<GtkCList>.<GtkButton>" style "murrine-treeview-header"
widget_class "*.<GtkCheckButton>" style "clearlooks-radiocheck"
widget_class "*<GtkNotebook>.*.<GtkCheckButton>" style "clearlooks-base-radiocheck"
widget_class "*<GtkCellRendererToggle>" style "clearlooks-base-radiocheck"
widget "gtk-tooltip*" style "murrine-tooltips"
widget_class "*<GtkScrolledWindow>*<OsScrollbar>" style "murrine-overlay-scrollbar"
# Workarounds and Non-Standard Styling
style "text-is-fg-color-workaround" {
text[NORMAL] = @text_color
text[PRELIGHT] = @fg_color
text[SELECTED] = @selected_fg_color
text[ACTIVE] = @fg_color
text[INSENSITIVE] = mix (0.5, @bg_color, @fg_color)
}
widget_class "*.<GtkComboBox>.<GtkCellView>" style "text-is-fg-color-workaround"
style "fg-is-text-color-workaround" {
fg[NORMAL] = @text_color
fg[PRELIGHT] = @text_color
fg[ACTIVE] = @selected_fg_color
fg[SELECTED] = @selected_fg_color
fg[INSENSITIVE] = darker (@fg_color)
}
widget_class "*<GtkListItem>*" style "fg-is-text-color-workaround"
widget_class "*<GtkCList>" style "fg-is-text-color-workaround"
widget_class "*<EelEditableLabel>" style "fg-is-text-color-workaround"
style "murrine-evo-new-button-workaround" {
engine "murrine" {
toolbarstyle = 0
}
}
widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "murrine-evo-new-button-workaround"
style "inkscape-toolbar-fix" {
engine "murrine" {
gradient_shades = { 1.0, 1.0, 1.0, 1.0 }
highlight_shade = 1.0
}
}
#widget "*GtkHandleBox*" style "inkscape-toolbar-fix"
#widget "*HandleBox*CommandsToolbar*" style "inkscape-toolbar-fix"
#widget "*HandleBox*SnapToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*SelectToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*NodeToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*TweakToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*ZoomToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*StarToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*RectToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*3DBoxToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*ArcToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*SpiralToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*PencilToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*PenToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*CalligraphyToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*EraserToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*LPEToolToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*DropperToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*ConnectorToolbar*" style "inkscape-toolbar-fix"
widget "*HandleBox*PaintbucketToolbar*" style "inkscape-toolbar-fix"
style "gimp-default-style" {
# Uncommenting this line allows to set a different (smaller) font for GIMP.
#
# font_name = "sans 8"
# Enabling the following line for some reason breaks toolbox resize
# increment calculation. You can enable it to get an even smaller GUI
# but need to restart GIMP after the theme change.
#
# GtkWidget::focus-padding = 0
GtkOptionMenu::indicator-size = { 15, 25 }
GtkOptionMenu::indicator-spacing = { 10, 8, 4, 4 }
GtkPaned::handle-size = 5
GimpDockWindow::default-height = 600
GimpDock::font-scale = 1.0
GimpMenuDock::minimal-width = 400
GimpToolPalette::tool-icon-size = large-toolbar
GimpToolPalette::button-relief = none
GimpDockbook::tab-border = 0
GimpDockbook::tab-icon-size = button
GimpColorNotebook::tab-border = 0
GimpColorNotebook::tab-icon-size = button
GimpDeviceEditor::handle-size = 30
GimpDockable::content-border = 1
GimpEditor::content-spacing = 1
GimpEditor::button-spacing = 1
GimpEditor::button-icon-size = button
GimpDataEditor::minimal-height = 150
GimpFrame::label-spacing = 5
GtkDialog::content-area-border = 2
GtkDialog::button-spacing = 20
GtkDialog::action-area-border = 25
GimpUnitComboBox::appears-as-list = 0
}
class "GtkWidget" style "gimp-default-style"
style "gimp-tool-dialog-style" = "gimp-default-style"
{
GtkDialog::action-area-border = 6
}
class "GimpToolDialog" style "gimp-tool-dialog-style"
style "gimp-grid-view-style" = "gimp-default-style"
{
bg[NORMAL] = { 1.0, 1.0, 1.0 }
}
widget "*GimpContainerGridView*GtkViewport*" style "gimp-grid-view-style"
style "gimp-dockable-style" = "gimp-default-style"
{
GimpFrame::label-bold = 0
GtkButton::focus-line_width = 1
GtkButton::focus-padding = 0
}
widget "*GimpDockable.*" style "gimp-dockable-style"
style "gimp-display-style" = "gimp-default-style"
{
GimpRuler::font-scale = 1.0
GimpUnitComboBox::label-scale = 1.0
GimpScaleComboBox::label-scale = 1.0
GtkComboBox::arrow-size = 20
GtkButton::inner-border = { 0, 0, 0, 0 }
GtkButton::focus-line-width = 0
GtkButton::focus-padding = 0
}
widget "*GimpDisplayShell.*" style "gimp-display-style"
style "gimp-overlay-style" = "gimp-display-style"
{
GtkButton::focus-line_width = 2
}
widget_class "*<GimpOverlayFrame>*" style "gimp-overlay-style"
# Performance Fixes
style "performance-fix" {
engine "murrine" {
textstyle = 0
}
}
widget_class "*gtkmm__GtkWindow*" style "performance-fix" # Inkscape
widget_class "*GimpDisplayShell*" style "performance-fix" # Gimp
widget_class "*GimpToolbox*" style "performance-fix"
widget_class "*GimpMenuDock*" style "performance-fix"
widget "*OOoFixed*" style "performance-fix" # Openoffice/Libreoffice
widget_class "*MozContainer*" style "performance-fix" # Firefox (Not sure if this one does anything though.)
widget_class "*XfceHeading*" style "xfce-header"
widget_class "*XfceDesktop*" style "xfdesktop-windowlist"
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
widget "xfwm4-tabwin*" style "xfwm-tabwin"
widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button"
widget_class "*XfsmLogoutDialog*" style "xfsm-logout"
widget_class "*XfsmLogoutDialog*GtkButton" style "xfsm-logout-button"
# button fg workarounds:
widget_class "*.<GtkButton>.<GtkLabel>" style "murrine-buttonlabel"
widget_class "*<GtkButton>*<GtkLabel>*" style:highest "murrine-buttonlabel"
widget_class "*<GtkCheckButton>*<GtkLabel>*" style:highest "clearlooks-radiocheck-label"
widget_class "*<GtkComboBoxText>*" style "murrine-comboboxtext"
widget_class "*<GtkToggleButton>*" style "murrine-togglebutton"
widget_class "*.<GtkCheckButton>" style "murrine-radiocheck"
widget_class "*<GtkComboBoxText>*<GtkEntry>*" style:highest "murrine-entry"
widget_class "*<GtkToolbar>*<GtkToolButton>*<GtkLabel>*" style:highest "murrine-toolbutton-label"

View file

@ -0,0 +1 @@
../assets

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1 @@
@import url("resource:///org/numixproject/gtk/dist/gtk-dark.css");

Some files were not shown because too many files have changed in this diff Show more