hyprland + waybar + GTK (Catpuccin)
6
flake.lock
generated
@@ -38,11 +38,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs-unstable": {
|
"nixpkgs-unstable": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1711523803,
|
"lastModified": 1711703276,
|
||||||
"narHash": "sha256-UKcYiHWHQynzj6CN/vTcix4yd1eCu1uFdsuarupdCQQ=",
|
"narHash": "sha256-iMUFArF0WCatKK6RzfUJknjem0H9m4KgorO/p3Dopkk=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "2726f127c15a4cc9810843b96cad73c7eb39e443",
|
"rev": "d8fe5e6c92d0d190646fb9f1056741a229980089",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@@ -1,10 +1,741 @@
|
|||||||
{ config, pkgs, lib, system, user, allowed, secrets, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
let
|
||||||
|
animation-speed = "1";
|
||||||
|
transparency = "0.9";
|
||||||
|
gap-size = 10;
|
||||||
|
monitors = {
|
||||||
|
main = {
|
||||||
|
name = "eDP-1";
|
||||||
|
resolution = "1920x1200";
|
||||||
|
position = "0x0";
|
||||||
|
scale = "1.0";
|
||||||
|
};
|
||||||
|
second = {
|
||||||
|
name = "DP-1";
|
||||||
|
resolution = "1920x1080";
|
||||||
|
position = "1920x0";
|
||||||
|
scale = "1.0";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
in
|
||||||
{
|
{
|
||||||
home.packages = [
|
home.packages = with pkgs; [
|
||||||
# hyprland itself is a system package
|
# hyprland itself is a system package
|
||||||
pkgs.hyprland-protocols
|
hyprland-protocols
|
||||||
|
(writeShellScriptBin "waybar_mode" ''
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Function to print help message
|
||||||
|
print_help() {
|
||||||
|
echo "Usage: waybar_mode {set <string>|unset}"
|
||||||
|
}
|
||||||
|
if [ $# -lt 1 ]; then
|
||||||
|
print_help; exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
set)
|
||||||
|
# Check if there is a second argument for the 'set' operation
|
||||||
|
if [ $# -eq 2 ]; then
|
||||||
|
echo "$2" > /tmp/waybar-mode
|
||||||
|
pkill -RTMIN+8 waybar
|
||||||
|
else
|
||||||
|
echo "Error: 'set' operation requires exactly one string argument."
|
||||||
|
print_help
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
unset)
|
||||||
|
echo "" > /tmp/waybar-mode
|
||||||
|
pkill -RTMIN+8 waybar
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Error: Unknown command '$1'"
|
||||||
|
print_help
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
'')
|
||||||
|
];
|
||||||
|
|
||||||
|
wayland.windowManager.hyprland = {
|
||||||
|
enable = true;
|
||||||
|
xwayland.enable = true;
|
||||||
|
systemd.enable = true;
|
||||||
|
# plugins = [];
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
# source = /home/nx2/.config/hypr/hyprland-nosync.conf;
|
||||||
|
|
||||||
|
monitor = [
|
||||||
|
"${monitors.main.name}, ${monitors.main.resolution}, ${monitors.main.position}, ${monitors.main.scale}"
|
||||||
|
];
|
||||||
|
|
||||||
|
workspace = [
|
||||||
|
"${monitors.main.name}, 11"
|
||||||
|
"${monitors.main.name}, 12"
|
||||||
|
"${monitors.main.name}, 13"
|
||||||
|
"${monitors.main.name}, 14"
|
||||||
|
"${monitors.main.name}, 15"
|
||||||
|
"${monitors.main.name}, 16"
|
||||||
|
"${monitors.main.name}, 17"
|
||||||
|
"${monitors.main.name}, 18"
|
||||||
|
"${monitors.main.name}, 19"
|
||||||
|
"${monitors.main.name}, 10,gapsin:0,gapsout:0"
|
||||||
|
"${monitors.main.name}, 100"
|
||||||
|
"${monitors.second.name}, 11,gapsin:0,gapsout:0"
|
||||||
|
"${monitors.second.name}, 11"
|
||||||
|
"${monitors.second.name}, 12"
|
||||||
|
"${monitors.second.name}, 13"
|
||||||
|
"${monitors.second.name}, 14"
|
||||||
|
"${monitors.second.name}, 15"
|
||||||
|
"${monitors.second.name}, 16"
|
||||||
|
"${monitors.second.name}, 17"
|
||||||
|
"${monitors.second.name}, 18"
|
||||||
|
"${monitors.second.name}, 19"
|
||||||
|
"${monitors.second.name}, 10"
|
||||||
|
];
|
||||||
|
|
||||||
|
"device:logitech-wireless-mouse-mx-master-1" = {
|
||||||
|
sensitivity = -0.2;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
# env = XCURSOR_SIZE,18
|
||||||
|
|
||||||
|
# env = GTK_IM_MODULE,ibus
|
||||||
|
# env = QT_IM_MODULE,ibus
|
||||||
|
# env = XMODIFIERS,@im=ibus
|
||||||
|
|
||||||
|
input = {
|
||||||
|
sensitivity = 0.1;
|
||||||
|
kb_layout = "de";
|
||||||
|
follow_mouse = "2";
|
||||||
|
touchpad = {
|
||||||
|
natural_scroll = true;
|
||||||
|
scroll_factor = "0.9";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
general = {
|
||||||
|
gaps_in = builtins.div gap-size 2;
|
||||||
|
gaps_out = gap-size;
|
||||||
|
border_size = "1";
|
||||||
|
"col.active_border" = "rgba(888888ff)";
|
||||||
|
"col.inactive_border" = "rgba(000000ff)";
|
||||||
|
|
||||||
|
layout = "dwindle";
|
||||||
|
# layout = "master";
|
||||||
|
resize_on_border = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
decoration = {
|
||||||
|
|
||||||
|
rounding = "0";
|
||||||
|
|
||||||
|
drop_shadow = false;
|
||||||
|
shadow_range = "20";
|
||||||
|
shadow_offset = "0 0";
|
||||||
|
shadow_render_power = "4";
|
||||||
|
"col.shadow" = "rgba(000000ff)";
|
||||||
|
"col.shadow_inactive" = "rgba(00000000)";
|
||||||
|
|
||||||
|
active_opacity = "1.0";
|
||||||
|
inactive_opacity = "1.0";
|
||||||
|
fullscreen_opacity = "1.0";
|
||||||
|
|
||||||
|
dim_inactive = false;
|
||||||
|
dim_strength = "0.3";
|
||||||
|
|
||||||
|
blur = {
|
||||||
|
enabled = true;
|
||||||
|
size = "3";
|
||||||
|
passes = "2";
|
||||||
|
xray = false;
|
||||||
|
ignore_opacity = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
animations = {
|
||||||
|
enabled = true;
|
||||||
|
bezier = "myBezier, 0.01, 0.9, 0.1, 1.0";
|
||||||
|
animation = [
|
||||||
|
"windows, 1, ${animation-speed}, myBezier, slide"
|
||||||
|
"border, 1, ${animation-speed}, myBezier"
|
||||||
|
"fade, 1, ${animation-speed}, myBezier"
|
||||||
|
"workspaces, 1, ${animation-speed}, myBezier, slide"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
gestures = {
|
||||||
|
workspace_swipe = true;
|
||||||
|
workspace_swipe_fingers = "4";
|
||||||
|
workspace_swipe_distance = "300";
|
||||||
|
workspace_swipe_invert = true;
|
||||||
|
workspace_swipe_min_speed_to_force = "30";
|
||||||
|
workspace_swipe_cancel_ratio = "0.5";
|
||||||
|
workspace_swipe_create_new = false;
|
||||||
|
workspace_swipe_direction_lock = false;
|
||||||
|
workspace_swipe_direction_lock_threshold = "10";
|
||||||
|
workspace_swipe_forever = true;
|
||||||
|
workspace_swipe_numbered = false;
|
||||||
|
workspace_swipe_use_r = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
dwindle = {
|
||||||
|
preserve_split = true; # you probably want this
|
||||||
|
no_gaps_when_only = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
master = {
|
||||||
|
new_is_master = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
misc = {
|
||||||
|
disable_hyprland_logo = true;
|
||||||
|
animate_mouse_windowdragging = false;
|
||||||
|
enable_swallow = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
exec-once = [
|
||||||
|
"hyprpm reload -n "
|
||||||
|
"waybar "
|
||||||
|
"hyprpaper -n "
|
||||||
|
"swww init"
|
||||||
|
"= /home/nx2/scripts/swww-randomize.sh"
|
||||||
|
"hyprland-autoname-workspaces"
|
||||||
|
"/usr/lib/polkit-kde-authentication-agent-1 "
|
||||||
|
"dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
|
||||||
|
"syncthing -no-browser"
|
||||||
|
"mako"
|
||||||
|
"ibus engine xkb:de::deu"
|
||||||
|
"libinput-gestures"
|
||||||
|
];
|
||||||
|
|
||||||
|
windowrulev2 = [
|
||||||
|
"opacity $trans,class:^(com.chatterino.chatterino)$"
|
||||||
|
"opacity $trans,class:^(chatterino)$"
|
||||||
|
"bordercolor rgba(ff00ffff) rgba(ff00ff66), pinned:1"
|
||||||
|
];
|
||||||
|
|
||||||
|
windowrule = [
|
||||||
|
"opacity $trans, code-oss"
|
||||||
|
"opacity $trans, VSCodium"
|
||||||
|
"opacity $trans, Code"
|
||||||
|
"opacity $trans, neovide"
|
||||||
|
"opacity $trans, obsidian"
|
||||||
|
"opacity $trans, zathura"
|
||||||
|
"bordercolor rgba(ffffffff) rgba(000000b2), Alacritty"
|
||||||
|
"bordercolor rgba(ffffffff) rgba(000000b2), Kitty"
|
||||||
|
"opacity $trans, discord"
|
||||||
|
"opacity $trans, vesktop"
|
||||||
|
"opacity $trans, Element"
|
||||||
|
"opacity $trans, thunderbird"
|
||||||
|
"opacity $trans, lutris"
|
||||||
|
"opacity $trans, element"
|
||||||
|
"opacity $trans, ^([sS]potify)$"
|
||||||
|
"opacity $trans, virt-manager"
|
||||||
|
"opacity $trans, thunar"
|
||||||
|
"opaque, title:^(GNU Image Manipulation Program)$"
|
||||||
|
"dimaround, Rofi"
|
||||||
|
"float, title:^(Picture-in-Picture)$"
|
||||||
|
"float, title:^(Ibus-ui.*)$"
|
||||||
|
"float, ^(ibus-ui.*)$"
|
||||||
|
"float, ^(ibus-ui-gtk3)$"
|
||||||
|
"float, title:^(Ibus-ui-gtk3)$"
|
||||||
|
"pin, title:^(Picture-in-Picture)$"
|
||||||
|
"float, org.kde.polkit-kde-authentication-agent-1"
|
||||||
|
"float, title:^(wlogout)$"
|
||||||
|
"float, imv"
|
||||||
|
"float, title:^(Page Info — .*)$"
|
||||||
|
"tile, sent"
|
||||||
|
"fullscreen, wlogout"
|
||||||
|
"workspace 14, lutris"
|
||||||
|
"workspace 100, title:^(Apex Legends)$"
|
||||||
|
"workspace 100, ^(cyberpunk2077.exe)$"
|
||||||
|
"workspace 100, title:^(No Man.s Sky)$"
|
||||||
|
"workspace 100, gamescope"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
layerrule = [
|
||||||
|
"blur,waybar"
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
# d8888b. d888888b d8b db d8888b. .d8888.
|
||||||
|
# 88 '8D '88' 888o 88 88 '8D 88' YP
|
||||||
|
# 88oooY' 88 88V8o 88 88 88 '8bo.
|
||||||
|
# 88''Yb. 88 88 V8o88 88 88 'Y8b.
|
||||||
|
# 88 8D .88. 88 V888 88 .8D db 8D
|
||||||
|
# Y8888P' Y888888P VP V8P Y8888D' '8888Y'
|
||||||
|
|
||||||
|
###########################################################################
|
||||||
|
## ROW 0:
|
||||||
|
bind = [
|
||||||
|
"SUPER SHIFT, Escape, exit, "
|
||||||
|
"SUPER, F1, workspace, 100"
|
||||||
|
"SUPER SHIFT, F1, movetoworkspace, 100"
|
||||||
|
# "SUPER, F2,"
|
||||||
|
"SUPER, F3, toggleopaque"
|
||||||
|
# "SUPER, F4,"
|
||||||
|
"SUPER, F5, exec, /home/nx2/scripts/NxGCalEvent/force-new-lookup.sh"
|
||||||
|
"SUPER SHIFT, F5, exec, /home/nx2/scripts/NxGCalEvent/force-reauthentication.sh"
|
||||||
|
# "SUPER, F6,"
|
||||||
|
"SUPER, F8, exec, /home/nx2/scripts/swww-randomize.sh"
|
||||||
|
# "SUPER, F9, hyprload,reload"
|
||||||
|
# "SUPER, F10, hyprload,update"
|
||||||
|
"SUPER, F11, exec, waybar"
|
||||||
|
"SUPER SHIFT, F11, exec, pkill waybar "
|
||||||
|
"SUPER, F12, exec, hyprland-autoname-workspaces --migrate-config &"
|
||||||
|
"SUPER SHIFT, F12, exec, pkill hyprland-autoname-workspaces "
|
||||||
|
|
||||||
|
###########################################################################
|
||||||
|
## ROW 1:
|
||||||
|
|
||||||
|
# "SUPER, ^,"
|
||||||
|
"SUPER, 1, workspace, 11"
|
||||||
|
"SUPER SHIFT, 1, movetoworkspace, 11"
|
||||||
|
"SUPER, 2, workspace, 12"
|
||||||
|
"SUPER SHIFT, 2, movetoworkspace, 12"
|
||||||
|
"SUPER, 3, workspace, 13"
|
||||||
|
"SUPER SHIFT, 3, movetoworkspace, 13"
|
||||||
|
"SUPER, 4, workspace, 14"
|
||||||
|
"SUPER SHIFT, 4, movetoworkspace, 14"
|
||||||
|
"SUPER, 5, workspace, 15"
|
||||||
|
"SUPER SHIFT, 5, movetoworkspace, 15"
|
||||||
|
"SUPER, 6, workspace, 16"
|
||||||
|
"SUPER SHIFT, 6, movetoworkspace, 16"
|
||||||
|
"SUPER, 7, workspace, 17"
|
||||||
|
"SUPER SHIFT, 7, movetoworkspace, 17"
|
||||||
|
"SUPER, 8, workspace, 18"
|
||||||
|
"SUPER SHIFT, 8, movetoworkspace, 18"
|
||||||
|
"SUPER, 9, workspace, 19"
|
||||||
|
"SUPER SHIFT, 9, movetoworkspace, 19"
|
||||||
|
"SUPER, 0, workspace, 10"
|
||||||
|
"SUPER SHIFT, 0, movetoworkspace, 10"
|
||||||
|
|
||||||
|
# "SUPER, ß,"
|
||||||
|
# "SUPER, ´,"
|
||||||
|
# "SUPER, Backspace,"
|
||||||
|
|
||||||
|
###########################################################################
|
||||||
|
## ROW 2:
|
||||||
|
|
||||||
|
#bind = SUPER, TAB, hycov:toggleoverview
|
||||||
|
"ALT, TAB, focuscurrentorlast"
|
||||||
|
"SUPER, Q, killactive"
|
||||||
|
"SUPER, W, exec, waybar_mode set ' '"
|
||||||
|
"SUPER, W, submap, browserSM "
|
||||||
|
"SUPER, E, exec, element-desktop"
|
||||||
|
"SUPER, R, exec, rofi -show drun"
|
||||||
|
# "SUPER, T, exec, alacritty"
|
||||||
|
# "SUPER SHIFT, T, exec, alacritty -e sh -c "ssh nxace""
|
||||||
|
"SUPER, T, exec, kitty"
|
||||||
|
"SUPER SHIFT, T, exec, kitty -e sh -c 'ssh nxace'"
|
||||||
|
"SUPER, Z, swapactiveworkspaces, HDMI-A-1 HDMI-A-2"
|
||||||
|
"SUPER, U, exec, thunderbird "
|
||||||
|
# "SUPER, I, "
|
||||||
|
"SUPER, O, exec, obsidian "
|
||||||
|
"SUPER, P, pin "
|
||||||
|
# "SUPER, Ü,"
|
||||||
|
# "SUPER, +,"
|
||||||
|
# "SUPER, Enter,"
|
||||||
|
|
||||||
|
###########################################################################
|
||||||
|
## ROW 3:
|
||||||
|
|
||||||
|
"SUPER, A, execr, echo ' ' > /tmp/waybar-mode && pkill -RTMIN+8 waybar"
|
||||||
|
"SUPER, A, submap, scrL"
|
||||||
|
"SUPER, S, exec, spotify"
|
||||||
|
# "SUPER, D, exec, discord "
|
||||||
|
"SUPER, D, exec, vesktop"
|
||||||
|
"SUPER, F, fullscreen"
|
||||||
|
"SUPER, G, exec, xrandr --verbose --output 'DP-1' --primary && lutris"
|
||||||
|
"SUPER SHIFT, G, exec, /home/nx2/scripts/cursor-lock-toggle.sh"
|
||||||
|
# "SUPER SHIFT CTRL, G, exec, /home/nx2/scripts/disable-side-monitors.sh"
|
||||||
|
"SUPER, H, exec, chatterino"
|
||||||
|
"SUPER, J, focusmonitor, $left"
|
||||||
|
"SUPER, K, focusmonitor, $main"
|
||||||
|
"SUPER, L, focusmonitor, $right"
|
||||||
|
# "SUPER, Ö,"
|
||||||
|
# "SUPER, Ä,"
|
||||||
|
# "SUPER, #,"
|
||||||
|
|
||||||
|
###########################################################################
|
||||||
|
## ROW 4:
|
||||||
|
|
||||||
|
# "SUPER, <,"
|
||||||
|
"SUPER, Y, execr, echo ' ' > /tmp/waybar-mode && pkill -RTMIN+8 waybar"
|
||||||
|
"SUPER, Y, submap, scrR"
|
||||||
|
"SUPER, X, exec, pkill wlogout || wlogout --protocol layer-shell -b 5 -T 450 -B 450"
|
||||||
|
"SUPER, C, exec, /home/nx2/scripts/quickconfig/quickconfig.sh "
|
||||||
|
"SUPER, V, togglefloating, "
|
||||||
|
"SUPER, B, exec, bitwarden-desktop"
|
||||||
|
"SUPER, N, togglesplit"
|
||||||
|
"SUPER, M, exec, /home/nx2/scripts/meme-full-screen/meme-full-screen.sh "
|
||||||
|
# "SUPER, comma, exec, /home/nx2/scripts/change-language.sh"
|
||||||
|
"SUPER, ., exec, echo key x:Prior | dotool"
|
||||||
|
"SUPER, -, exec, echo key x:Next | dotool"
|
||||||
|
|
||||||
|
###########################################################################
|
||||||
|
## ROW 5:
|
||||||
|
|
||||||
|
# bindr = SUPER, Ctrl, exec, # ??
|
||||||
|
# bindr = SUPERALT, Alt_L, exec,
|
||||||
|
"SUPER, Space, cyclenext"
|
||||||
|
"SUPER SHIFT, Space, swapnext"
|
||||||
|
# "SUPER, , "
|
||||||
|
# "SUPER, , "
|
||||||
|
# "SUPER, AppsKey, # ? "
|
||||||
|
#
|
||||||
|
|
||||||
|
###########################################################################
|
||||||
|
## ARROW KEYS:
|
||||||
|
|
||||||
|
"SUPER, left, movefocus, l"
|
||||||
|
# "SUPER SHIFT, left, split-changemonitor, prev"
|
||||||
|
"SUPER, right, movefocus, r"
|
||||||
|
"SUPER, up, movefocus, u"
|
||||||
|
# "SUPER SHIFT, right, split-changemonitor, next"
|
||||||
|
"SUPER, down, movefocus, d"
|
||||||
|
|
||||||
|
###########################################################################
|
||||||
|
## MEGA KEYS:
|
||||||
|
|
||||||
|
", Print, exec, /home/nx2/scripts/screenshot.sh "
|
||||||
|
"SUPER, Next, resizeactive, 100 -100"
|
||||||
|
"SUPER, Prior, resizeactive, -100 100"
|
||||||
|
|
||||||
|
###########################################################################
|
||||||
|
## FN KEYS:
|
||||||
|
|
||||||
|
",XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%+"
|
||||||
|
",XF86AudioLowerVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%-"
|
||||||
|
",XF86AudioMute, exec, pactl set-sink-mute @DEFAULT_SINK@ toggle"
|
||||||
|
",XF86AudioPlay, exec, playerctl play-pause"
|
||||||
|
",XF86AudioPrev, exec, playerctl playerctl previous"
|
||||||
|
",XF86AudioNext, exec, playerctl playerctl next"
|
||||||
|
",XF86MonBrightnessUp, exec, brightnessctl s '5%+'"
|
||||||
|
",XF86MonBrightnessDown, exec, brightnessctl s '5%-'"
|
||||||
|
|
||||||
|
###########################################################################
|
||||||
|
## MOUSE:
|
||||||
|
|
||||||
|
"SUPER, mouse_down, workspace, e+1"
|
||||||
|
"SUPER, mouse_up, workspace, e-1"
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
bindm = [
|
||||||
|
"SUPER, mouse:272, movewindow"
|
||||||
|
"SUPER, mouse:273, resizewindow"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
# .d8888. db db d8888b. 88b d88 d8b d88888b. .d8888.
|
||||||
|
# 88' YP 88 88 88 '8D 88YbdP88 dP'Yb 88' '8b 88' YP
|
||||||
|
# '8bo. 88 88 88oooY' 88 YP 88 d8. .8b 88. .8P '8bo.
|
||||||
|
# 'Y8b. 88 88 88''Yb. 88 88 8888888 888888P' 'Y8b.
|
||||||
|
# db 8D 88. .88 88 8D 88 88 88' '88 88 db 8D
|
||||||
|
# '8888Y' 'Y8888P' Y8888P' YP YP 88 YP YP '8888Y'
|
||||||
|
extraConfig = ''
|
||||||
|
submap = browserSM
|
||||||
|
bind = , W, exec, waybar_mode unset && hyprctl dispatch exec [workspace 11] firefox
|
||||||
|
bind = , W, submap, reset
|
||||||
|
|
||||||
|
bind = , Y, exec, waybar_mode unset && firefox https://youtube.com
|
||||||
|
bind = , Y, submap, reset
|
||||||
|
|
||||||
|
bind = , T, exec, waybar_mode unset && hyprctl dispatch exec [workspace 10] "firefox https://twitch.tv"
|
||||||
|
bind = , T, submap, reset
|
||||||
|
|
||||||
|
bind = , R, exec, waybar_mode unset && firefox https://reddit.com
|
||||||
|
bind = , R, submap, reset
|
||||||
|
|
||||||
|
bind = , C, exec, waybar_mode unset && firefox https://calendar.google.com
|
||||||
|
bind = , C, submap, reset
|
||||||
|
|
||||||
|
bind = , Ü, exec, waybar_mode unset && firefox https://translate.google.com
|
||||||
|
bind = , Ü, submap, reset
|
||||||
|
|
||||||
|
bind = , N, exec, waybar_mode unset && firefox https://Netflix.com
|
||||||
|
bind = , N, submap, reset
|
||||||
|
|
||||||
|
bind = , A, exec, waybar_mode unset && firefox https://www.amazon.de/b?node=3010075031&ref_=nav_ya_signin
|
||||||
|
bind = , A, submap, reset
|
||||||
|
|
||||||
|
bind = , D, exec, waybar_mode unset && firefox https://www.disneyplus.com/home
|
||||||
|
bind = , D, submap, reset
|
||||||
|
|
||||||
|
bind = , H, exec, waybar_mode unset && firefox https://www.hs-mittweida.de
|
||||||
|
bind = , H, submap, reset
|
||||||
|
|
||||||
|
bind = , X, exec, waybar_mode unset && firefox https://nx2.site
|
||||||
|
bind = , X, submap, reset
|
||||||
|
|
||||||
|
bind = , L, exec, waybar_mode unset && firefox https://feddit.de
|
||||||
|
bind = , L, submap, reset
|
||||||
|
|
||||||
|
bind = , I, exec, waybar_mode unset && firefox https://www.imdb.com
|
||||||
|
bind = , I, submap, reset
|
||||||
|
|
||||||
|
bind = , M, exec, waybar_mode unset && firefox https://ieji.de/home
|
||||||
|
bind = , M, submap, reset
|
||||||
|
|
||||||
|
bind = , S, exec, waybar_mode unset && firefox 127.0.0.1:8384/
|
||||||
|
bind = , S, submap, reset
|
||||||
|
|
||||||
|
bind = , Escape, exec, waybar_mode unset
|
||||||
|
bind = , Escape, submap, reset
|
||||||
|
submap = reset
|
||||||
|
|
||||||
|
|
||||||
|
submap = scrL
|
||||||
|
bind = , 1, execr, waybar_mode unset
|
||||||
|
bind = , 1, workspace, 21
|
||||||
|
bind = , 1, submap, reset
|
||||||
|
bind = SUPER, 1, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 1, workspace, 21
|
||||||
|
bind = SUPER, 1, submap, reset
|
||||||
|
bind = SUPER SHIFT, 1, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 1, movetoworkspace, 21
|
||||||
|
bind = SUPER SHIFT, 1, submap, reset
|
||||||
|
|
||||||
|
bind = , 2, execr, waybar_mode unset
|
||||||
|
bind = , 2, workspace, 22
|
||||||
|
bind = , 2, submap, reset
|
||||||
|
bind = SUPER, 2, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 2, workspace, 22
|
||||||
|
bind = SUPER, 2, submap, reset
|
||||||
|
bind = SUPER SHIFT, 2, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 2, movetoworkspace, 22
|
||||||
|
bind = SUPER SHIFT, 2, submap, reset
|
||||||
|
|
||||||
|
bind = , 3, execr, waybar_mode unset
|
||||||
|
bind = , 3, workspace, 23
|
||||||
|
bind = , 3, submap, reset
|
||||||
|
bind = SUPER, 3, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 3, workspace, 23
|
||||||
|
bind = SUPER, 3, submap, reset
|
||||||
|
bind = SUPER SHIFT, 3, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 3, movetoworkspace, 23
|
||||||
|
bind = SUPER SHIFT, 3, submap, reset
|
||||||
|
|
||||||
|
bind = , 4, execr, waybar_mode unset
|
||||||
|
bind = , 4, workspace, 24
|
||||||
|
bind = , 4, submap, reset
|
||||||
|
bind = SUPER, 4, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 4, workspace, 24
|
||||||
|
bind = SUPER, 4, submap, reset
|
||||||
|
bind = SUPER SHIFT, 4, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 4, movetoworkspace, 24
|
||||||
|
bind = SUPER SHIFT, 4, submap, reset
|
||||||
|
|
||||||
|
bind = , 5, execr, waybar_mode unset
|
||||||
|
bind = , 5, workspace, 25
|
||||||
|
bind = , 5, submap, reset
|
||||||
|
bind = SUPER, 5, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 5, workspace, 25
|
||||||
|
bind = SUPER, 5, submap, reset
|
||||||
|
bind = SUPER SHIFT, 5, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 5, movetoworkspace, 25
|
||||||
|
bind = SUPER SHIFT, 5, submap, reset
|
||||||
|
|
||||||
|
bind = , 6, execr, waybar_mode unset
|
||||||
|
bind = , 6, workspace, 26
|
||||||
|
bind = , 6, submap, reset
|
||||||
|
bind = SUPER, 6, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 6, workspace, 26
|
||||||
|
bind = SUPER, 6, submap, reset
|
||||||
|
bind = SUPER SHIFT, 6, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 6, movetoworkspace, 26
|
||||||
|
bind = SUPER SHIFT, 6, submap, reset
|
||||||
|
|
||||||
|
bind = , 7, execr, waybar_mode unset
|
||||||
|
bind = , 7, workspace, 27
|
||||||
|
bind = , 7, submap, reset
|
||||||
|
bind = SUPER, 7, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 7, workspace, 27
|
||||||
|
bind = SUPER, 7, submap, reset
|
||||||
|
bind = SUPER SHIFT, 7, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 7, movetoworkspace, 27
|
||||||
|
bind = SUPER SHIFT, 7, submap, reset
|
||||||
|
|
||||||
|
bind = , 8, execr, waybar_mode unset
|
||||||
|
bind = , 8, workspace, 28
|
||||||
|
bind = , 8, submap, reset
|
||||||
|
bind = SUPER, 8, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 8, workspace, 28
|
||||||
|
bind = SUPER, 8, submap, reset
|
||||||
|
bind = SUPER SHIFT, 8, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 8, movetoworkspace, 28
|
||||||
|
bind = SUPER SHIFT, 8, submap, reset
|
||||||
|
|
||||||
|
bind = , 9, execr, waybar_mode unset
|
||||||
|
bind = , 9, workspace, 29
|
||||||
|
bind = , 9, submap, reset
|
||||||
|
bind = SUPER, 9, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 9, workspace, 29
|
||||||
|
bind = SUPER, 9, submap, reset
|
||||||
|
bind = SUPER SHIFT, 9, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 9, movetoworkspace, 29
|
||||||
|
bind = SUPER SHIFT, 9, submap, reset
|
||||||
|
|
||||||
|
bind = , 0, execr, waybar_mode unset
|
||||||
|
bind = , 0, workspace, 20
|
||||||
|
bind = , 0, submap, reset
|
||||||
|
bind = SUPER, 0, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 0, workspace, 20
|
||||||
|
bind = SUPER, 0, submap, reset
|
||||||
|
bind = SUPER SHIFT, 0, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 0, movetoworkspace, 20
|
||||||
|
bind = SUPER SHIFT, 0, submap, reset
|
||||||
|
|
||||||
|
|
||||||
|
bind = , A, execr, waybar_mode unset
|
||||||
|
bind = , A, submap, reset
|
||||||
|
bind = , Escape, execr, waybar_mode unset
|
||||||
|
bind = , Escape, submap, reset
|
||||||
|
submap = reset
|
||||||
|
|
||||||
|
|
||||||
|
submap = scrR
|
||||||
|
bind = , 1, execr, waybar_mode unset
|
||||||
|
bind = , 1, workspace, 31
|
||||||
|
bind = , 1, submap, reset
|
||||||
|
bind = SUPER, 1, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 1, workspace, 31
|
||||||
|
bind = SUPER, 1, submap, reset
|
||||||
|
bind = SUPER SHIFT, 1, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 1, movetoworkspace, 31
|
||||||
|
bind = SUPER SHIFT, 1, submap, reset
|
||||||
|
|
||||||
|
bind = , 2, execr, waybar_mode unset
|
||||||
|
bind = , 2, workspace, 32
|
||||||
|
bind = , 2, submap, reset
|
||||||
|
bind = SUPER, 2, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 2, workspace, 32
|
||||||
|
bind = SUPER, 2, submap, reset
|
||||||
|
bind = SUPER SHIFT, 2, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 2, movetoworkspace, 32
|
||||||
|
bind = SUPER SHIFT, 2, submap, reset
|
||||||
|
|
||||||
|
bind = , 3, execr, waybar_mode unset
|
||||||
|
bind = , 3, workspace, 33
|
||||||
|
bind = , 3, submap, reset
|
||||||
|
bind = SUPER, 3, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 3, workspace, 33
|
||||||
|
bind = SUPER, 3, submap, reset
|
||||||
|
bind = SUPER SHIFT, 3, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 3, movetoworkspace, 33
|
||||||
|
bind = SUPER SHIFT, 3, submap, reset
|
||||||
|
|
||||||
|
bind = , 4, execr, waybar_mode unset
|
||||||
|
bind = , 4, workspace, 34
|
||||||
|
bind = , 4, submap, reset
|
||||||
|
bind = SUPER, 4, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 4, workspace, 34
|
||||||
|
bind = SUPER, 4, submap, reset
|
||||||
|
bind = SUPER SHIFT, 4, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 4, movetoworkspace, 34
|
||||||
|
bind = SUPER SHIFT, 4, submap, reset
|
||||||
|
|
||||||
|
bind = , 5, execr, waybar_mode unset
|
||||||
|
bind = , 5, workspace, 35
|
||||||
|
bind = , 5, submap, reset
|
||||||
|
bind = SUPER, 5, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 5, workspace, 35
|
||||||
|
bind = SUPER, 5, submap, reset
|
||||||
|
bind = SUPER SHIFT, 5, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 5, movetoworkspace, 35
|
||||||
|
bind = SUPER SHIFT, 5, submap, reset
|
||||||
|
|
||||||
|
bind = , 6, execr, waybar_mode unset
|
||||||
|
bind = , 6, workspace, 36
|
||||||
|
bind = , 6, submap, reset
|
||||||
|
bind = SUPER, 6, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 6, workspace, 36
|
||||||
|
bind = SUPER, 6, submap, reset
|
||||||
|
bind = SUPER SHIFT, 6, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 6, movetoworkspace, 36
|
||||||
|
bind = SUPER SHIFT, 6, submap, reset
|
||||||
|
|
||||||
|
bind = , 7, execr, waybar_mode unset
|
||||||
|
bind = , 7, workspace, 37
|
||||||
|
bind = , 7, submap, reset
|
||||||
|
bind = SUPER, 7, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 7, workspace, 37
|
||||||
|
bind = SUPER, 7, submap, reset
|
||||||
|
bind = SUPER SHIFT, 7, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 7, movetoworkspace, 37
|
||||||
|
bind = SUPER SHIFT, 7, submap, reset
|
||||||
|
|
||||||
|
bind = , 8, execr, waybar_mode unset
|
||||||
|
bind = , 8, workspace, 38
|
||||||
|
bind = , 8, submap, reset
|
||||||
|
bind = SUPER, 8, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 8, workspace, 38
|
||||||
|
bind = SUPER, 8, submap, reset
|
||||||
|
bind = SUPER SHIFT, 8, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 8, movetoworkspace, 38
|
||||||
|
bind = SUPER SHIFT, 8, submap, reset
|
||||||
|
|
||||||
|
bind = , 9, execr, waybar_mode unset
|
||||||
|
bind = , 9, workspace, 39
|
||||||
|
bind = , 9, submap, reset
|
||||||
|
bind = SUPER, 9, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 9, workspace, 39
|
||||||
|
bind = SUPER, 9, submap, reset
|
||||||
|
bind = SUPER SHIFT, 9, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 9, movetoworkspace, 39
|
||||||
|
bind = SUPER SHIFT, 9, submap, reset
|
||||||
|
|
||||||
|
bind = , 0, execr, waybar_mode unset
|
||||||
|
bind = , 0, workspace, 30
|
||||||
|
bind = , 0, submap, reset
|
||||||
|
bind = SUPER, 0, execr, waybar_mode unset
|
||||||
|
bind = SUPER, 0, workspace, 30
|
||||||
|
bind = SUPER, 0, submap, reset
|
||||||
|
bind = SUPER SHIFT, 0, execr, waybar_mode unset
|
||||||
|
bind = SUPER SHIFT, 0, movetoworkspace, 30
|
||||||
|
bind = SUPER SHIFT, 0, submap, reset
|
||||||
|
|
||||||
|
bind = , Y, execr, waybar_mode unset
|
||||||
|
bind = , Y, submap, reset
|
||||||
|
bind = , Escape, execr, waybar_mode unset
|
||||||
|
bind = , Escape, submap, reset
|
||||||
|
submap = reset
|
||||||
|
'';
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# plugin {
|
||||||
|
# hycov {
|
||||||
|
# overview_gappo = 60 # gaps width from screen edge
|
||||||
|
# overview_gappi = 24 # gaps width from clients
|
||||||
|
# enable_hotarea = 0 # enable mouse cursor hotarea
|
||||||
|
# # hotarea_monitor = all # monitor name which hotarea is in, default is all
|
||||||
|
# # hotarea_pos = 1 # position of hotarea (1: bottom left, 2: bottom right, 3: top left, 4: top right)
|
||||||
|
# # hotarea_size = 10 # hotarea size, 10x10
|
||||||
|
# # swipe_fingers = 4 # finger number of gesture,move any directory
|
||||||
|
# move_focus_distance = 100 # distance for movefocus,only can use 3 finger to move
|
||||||
|
# enable_gesture = 0 # enable gesture
|
||||||
|
# disable_workspace_change = 0 # disable workspace change when in overview mode
|
||||||
|
# disable_spawn = 0 # disable bind exec when in overview mode
|
||||||
|
# auto_exit = 1 # enable auto exit when no client in overview
|
||||||
|
# auto_fullscreen = 0 # auto make active window maximize after exit overview
|
||||||
|
# only_active_workspace = 0 # only overview the active workspace
|
||||||
|
# only_active_monitor = 1 # only overview the active monitor
|
||||||
|
# enable_alt_release_exit = 0 # alt swith mode arg,see readme for detail
|
||||||
|
# alt_replace_key = Alt_L # alt swith mode arg,see readme for detail
|
||||||
|
# alt_toggle_auto_next = 0 # auto focus next window when toggle overview in alt swith mode
|
||||||
|
# click_in_cursor = 0 # when click to jump,the target windwo is find by cursor, not the current foucus window.
|
||||||
|
# hight_of_titlebar = 0 # height deviation of title bar hight
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ in
|
|||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
bar = {
|
||||||
height = 20;
|
height = 20;
|
||||||
layer = "top";
|
layer = "top";
|
||||||
position = "bottom";
|
position = "bottom";
|
||||||
@@ -113,6 +114,7 @@ in
|
|||||||
format-muted = "婢 Muted";
|
format-muted = "婢 Muted";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
style = ''
|
style = ''
|
||||||
* {
|
* {
|
||||||
font-family: Atkinson Hyperlegible, Caskaydia Cove NF, Noto Sans;
|
font-family: Atkinson Hyperlegible, Caskaydia Cove NF, Noto Sans;
|
||||||
|
|||||||
@@ -1,37 +1,42 @@
|
|||||||
{ config, pkgs, lib, system, user, allowed, secrets, ... }:
|
{ config, pkgs, pkgs-unstable, ... }:
|
||||||
|
let
|
||||||
|
theme-name = "Catppuccin-Macchiato-Compact-Pink-Dark";
|
||||||
|
theme-package = pkgs.catppuccin-gtk.override {
|
||||||
|
accents = [ "pink" ];
|
||||||
|
size = "compact";
|
||||||
|
tweaks = [ "rimless" "black" ];
|
||||||
|
variant = "macchiato";
|
||||||
|
};
|
||||||
|
in
|
||||||
{
|
{
|
||||||
home.packages = [
|
home.packages = with pkgs; [
|
||||||
pkgs.gnome.gnome-themes-extra
|
# gnome.gnome-themes-extra
|
||||||
pkgs.gnome.adwaita-icon-theme
|
# gnome.adwaita-icon-theme
|
||||||
pkgs.gnome.gnome-tweaks
|
gnome.gnome-tweaks
|
||||||
pkgs.gtk3
|
gtk3
|
||||||
pkgs.gtk4
|
gtk4
|
||||||
pkgs.lxappearance
|
catppuccin-gtk
|
||||||
|
] ++ [
|
||||||
|
# pkgs-unstable.themix-gui
|
||||||
];
|
];
|
||||||
|
|
||||||
home.sessionVariables.GTK_THEME = "Adwaita-Dark";
|
|
||||||
|
home.sessionVariables.GTK_THEME = theme-name;
|
||||||
|
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = {
|
theme = {
|
||||||
name = "Adwaita-Dark";
|
name = theme-name;
|
||||||
package = pkgs.gnome.gnome-themes-extra;
|
package = theme-package;
|
||||||
};
|
};
|
||||||
gtk3.extraConfig = {
|
gtk3.extraConfig = {
|
||||||
Settings = ''
|
gtk-application-prefer-dark-theme = 1;
|
||||||
gtk-application-prefer-dark-theme=1
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
gtk4.extraConfig = {
|
gtk4.extraConfig = {
|
||||||
Settings = ''
|
gtk-application-prefer-dark-theme = 1;
|
||||||
gtk-application-prefer-dark-theme=1
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# GTK4
|
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
"gtk-4.0/assets".source = "${config.gtk.theme.package}/share/themes/${config.gtk.theme.name}/gtk-4.0/assets";
|
"gtk-4.0/assets".source = "${config.gtk.theme.package}/share/themes/${config.gtk.theme.name}/gtk-4.0/assets";
|
||||||
"gtk-4.0/gtk.css".source = "${config.gtk.theme.package}/share/themes/${config.gtk.theme.name}/gtk-4.0/gtk.css";
|
"gtk-4.0/gtk.css".source = "${config.gtk.theme.package}/share/themes/${config.gtk.theme.name}/gtk-4.0/gtk.css";
|
||||||
@@ -39,12 +44,13 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
dconf = {
|
dconf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
"org/gnome/desktop/interface" = {
|
"org/gnome/desktop/interface" = {
|
||||||
color-scheme = "prefer-dark";
|
color-scheme = "prefer-dark";
|
||||||
gtk-theme = "Adwaita-Dark";
|
gtk-theme = theme-name;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
106
home-modules/theme/theme_oomox/Makefile
Executable file
@@ -0,0 +1,106 @@
|
|||||||
|
SASS=sassc
|
||||||
|
SASSFLAGS= -I
|
||||||
|
GLIB_COMPILE_RESOURCES=glib-compile-resources
|
||||||
|
|
||||||
|
RES_DIR=gtk-3.0
|
||||||
|
SCSS_DIR=$(RES_DIR)/scss
|
||||||
|
DIST_DIR=$(RES_DIR)/dist
|
||||||
|
#
|
||||||
|
RES_DIR320=gtk-3.20
|
||||||
|
SCSS_DIR320=$(RES_DIR320)/scss
|
||||||
|
DIST_DIR320=$(RES_DIR320)/dist
|
||||||
|
#
|
||||||
|
RES_DIR_CINNAMON=cinnamon
|
||||||
|
SCSS_DIR_CINNAMON=$(RES_DIR_CINNAMON)/scss
|
||||||
|
DIST_DIR_CINNAMON=$(RES_DIR_CINNAMON)
|
||||||
|
|
||||||
|
# GTK3 ########################################################################
|
||||||
|
|
||||||
|
$(DIST_DIR):
|
||||||
|
mkdir -p "$@"
|
||||||
|
|
||||||
|
$(DIST_DIR)/gtk.css: $(DIST_DIR)
|
||||||
|
$(SASS) $(SASSFLAGS) "$(SCSS_DIR)" "$(SCSS_DIR)/gtk.scss" "$@"
|
||||||
|
|
||||||
|
$(DIST_DIR)/gtk-dark.css: $(DIST_DIR)/gtk.css
|
||||||
|
ifneq ("$(wildcard $(SCSS_DIR)/gtk-dark.scss)","")
|
||||||
|
$(SASS) $(SASSFLAGS) "$(SCSS_DIR)" "$(SCSS_DIR)/gtk-dark.scss" "$@"
|
||||||
|
else
|
||||||
|
cp "$(DIST_DIR)/gtk.css" "$@"
|
||||||
|
endif
|
||||||
|
|
||||||
|
css_gtk3: $(DIST_DIR)/gtk.css $(DIST_DIR)/gtk-dark.css
|
||||||
|
.PHONY: css_gtk3
|
||||||
|
|
||||||
|
$(RES_DIR)/gtk.gresource: css_gtk3
|
||||||
|
$(GLIB_COMPILE_RESOURCES) --sourcedir="$(RES_DIR)" "$@.xml"
|
||||||
|
|
||||||
|
gresource_gtk3: $(RES_DIR)/gtk.gresource
|
||||||
|
.PHONY: gresource_gtk3
|
||||||
|
|
||||||
|
clean_gtk3:
|
||||||
|
rm -rf "$(DIST_DIR)"
|
||||||
|
rm -f "$(RES_DIR)/gtk.gresource"
|
||||||
|
.PHONY: clean_gtk3
|
||||||
|
|
||||||
|
gtk3:
|
||||||
|
$(MAKE) clean_gtk3
|
||||||
|
$(MAKE) gresource_gtk3
|
||||||
|
.PHONY: gtk3
|
||||||
|
|
||||||
|
# GTK3.20+ ####################################################################
|
||||||
|
|
||||||
|
$(DIST_DIR320):
|
||||||
|
mkdir -p "$@"
|
||||||
|
|
||||||
|
$(DIST_DIR320)/gtk.css: $(DIST_DIR320)
|
||||||
|
$(SASS) $(SASSFLAGS) "$(SCSS_DIR320)" "$(SCSS_DIR320)/gtk.scss" "$@"
|
||||||
|
|
||||||
|
$(DIST_DIR320)/gtk-dark.css: $(DIST_DIR320)/gtk.css
|
||||||
|
ifneq ("$(wildcard $(SCSS_DIR320)/gtk-dark.scss)","")
|
||||||
|
$(SASS) $(SASSFLAGS) "$(SCSS_DIR320)" "$(SCSS_DIR320)/gtk-dark.scss" "$@"
|
||||||
|
else
|
||||||
|
cp "$(DIST_DIR320)/gtk.css" "$@"
|
||||||
|
endif
|
||||||
|
|
||||||
|
css_gtk320: $(DIST_DIR320)/gtk-dark.css $(DIST_DIR320)/gtk.css
|
||||||
|
.PHONY: css_gtk320
|
||||||
|
|
||||||
|
$(RES_DIR320)/gtk.gresource: css_gtk320
|
||||||
|
$(GLIB_COMPILE_RESOURCES) --sourcedir="$(RES_DIR320)" "$@.xml"
|
||||||
|
|
||||||
|
gresource_gtk320: $(RES_DIR320)/gtk.gresource
|
||||||
|
.PHONY: gresource_gtk320
|
||||||
|
|
||||||
|
clean_gtk320:
|
||||||
|
rm -rf "$(DIST_DIR320)"
|
||||||
|
rm -f "$(RES_DIR320)/gtk.gresource"
|
||||||
|
.PHONY: clean_gtk320
|
||||||
|
|
||||||
|
gtk320:
|
||||||
|
$(MAKE) clean_gtk320
|
||||||
|
$(MAKE) gresource_gtk320
|
||||||
|
.PHONY: gtk320
|
||||||
|
|
||||||
|
# Cinnamon ####################################################################
|
||||||
|
|
||||||
|
$(DIST_DIR_CINNAMON):
|
||||||
|
mkdir -p "$@"
|
||||||
|
|
||||||
|
$(DIST_DIR_CINNAMON)/cinnamon.css: $(DIST_DIR_CINNAMON)
|
||||||
|
$(SASS) $(SASSFLAGS) "$(SCSS_DIR_CINNAMON)" "$(SCSS_DIR_CINNAMON)/cinnamon.scss" "$@"
|
||||||
|
|
||||||
|
css_cinnamon: $(DIST_DIR_CINNAMON)/cinnamon.css
|
||||||
|
.PHONY: css_cinnamon
|
||||||
|
|
||||||
|
# Common ######################################################################
|
||||||
|
|
||||||
|
clean: clean_gtk3 clean_gtk320
|
||||||
|
.PHONY: clean
|
||||||
|
|
||||||
|
all: gtk3 gtk320 css_cinnamon
|
||||||
|
.PHONY: all
|
||||||
|
|
||||||
|
.DEFAULT_GOAL := all
|
||||||
|
|
||||||
|
# vim: set ts=4 sw=4 tw=0 noet :
|
||||||
310
home-modules/theme/theme_oomox/change_color.sh
Executable file
@@ -0,0 +1,310 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# shellcheck disable=SC1090
|
||||||
|
|
||||||
|
set -ue
|
||||||
|
SRC_PATH=$(readlink -f "$(dirname "$0")")
|
||||||
|
|
||||||
|
darker () {
|
||||||
|
"${SRC_PATH}/scripts/darker.sh" "$@"
|
||||||
|
}
|
||||||
|
mix () {
|
||||||
|
"${SRC_PATH}/scripts/mix.sh" "$@"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
print_usage() {
|
||||||
|
echo "Usage: $0 PATH_TO_PRESET"
|
||||||
|
echo " [--output OUTPUT_THEME_NAME] [--hidpi (True|False)]"
|
||||||
|
echo " [--make-opts (all|gtk3|gtk320)] [--path-list 'PATH PATH...']"
|
||||||
|
echo
|
||||||
|
echo "Options:"
|
||||||
|
echo " PATH_TO_PRESET path to Oomox theme file"
|
||||||
|
echo " -o NAME, --output NAME output theme name"
|
||||||
|
echo " -t DESTINATION_PATH, --target-dir DESTINATION_PATH"
|
||||||
|
echo " where the theme will be built"
|
||||||
|
echo " -d (true|false), --hidpi (true|false) generate GTK+2 assets with 2x scaling"
|
||||||
|
echo " -m (all|gtk3|gtk320), --make-opts (all|gtk3|gtk320)"
|
||||||
|
echo " which variant of GTK+3 theme to build"
|
||||||
|
echo " -p 'PATH PATH...', --path-list 'PATH PATH'"
|
||||||
|
echo " custom paths to theme files"
|
||||||
|
echo
|
||||||
|
echo "Examples:"
|
||||||
|
echo " $0 -o my-theme-name ../colors/retro/twg"
|
||||||
|
echo " $0 -o my-theme-name --hidpi True ../colors/retro/clearlooks"
|
||||||
|
echo " $0 -o my-theme-name -t ~/my_themes ../colors/retro/clearlooks"
|
||||||
|
echo " $0 -p \"./gtk-2.0 ./gtk-3.0 ./gtk-3.20 ./Makefile\" ../colors/gnome-colors/shiki-noble"
|
||||||
|
echo " $0 -p \"./gtk-2.0 ./gtk-3.0 ./gtk-3.20 ./Makefile\" -m gtk320 ../colors/monovedek/monovedek"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
while [[ $# -gt 0 ]]
|
||||||
|
do
|
||||||
|
case ${1} in
|
||||||
|
-p|--path-list)
|
||||||
|
CUSTOM_PATHLIST="${2}"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-o|--output)
|
||||||
|
OUTPUT_THEME_NAME="${2}"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-t|--target-dir)
|
||||||
|
DEST_PATH_ROOT="${2}"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-m|--make-opts)
|
||||||
|
MAKE_OPTS="${2}"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-d|--hidpi)
|
||||||
|
OPTION_GTK2_HIDPI="${2}"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
if [[ "${1}" == -* ]] || [[ ${THEME-} ]]; then
|
||||||
|
echo "unknown option ${1}"
|
||||||
|
print_usage
|
||||||
|
fi
|
||||||
|
THEME="${1}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ -z "${THEME:-}" ]] ; then
|
||||||
|
print_usage
|
||||||
|
fi
|
||||||
|
|
||||||
|
PATHLIST=(
|
||||||
|
'./src/openbox-3'
|
||||||
|
'./src/assets'
|
||||||
|
'./src/gtk-2.0'
|
||||||
|
'./src/gtk-3.0'
|
||||||
|
'./src/gtk-3.20'
|
||||||
|
'./src/xfwm4'
|
||||||
|
'./src/metacity-1'
|
||||||
|
'./src/unity'
|
||||||
|
'Makefile'
|
||||||
|
'./src/index.theme'
|
||||||
|
'./src/qt5ct_palette.conf'
|
||||||
|
'./src/qt6ct_palette.conf'
|
||||||
|
'./src/cinnamon'
|
||||||
|
)
|
||||||
|
if [ -n "${CUSTOM_PATHLIST:-}" ] ; then
|
||||||
|
IFS=', ' read -r -a PATHLIST <<< "${CUSTOM_PATHLIST:-}"
|
||||||
|
fi
|
||||||
|
SVG_PREVIEWS=(
|
||||||
|
'./gtk-3.0/thumbnail.svg'
|
||||||
|
'./gtk-3.20/thumbnail.svg'
|
||||||
|
'./metacity-1/thumbnail.svg'
|
||||||
|
)
|
||||||
|
|
||||||
|
MAKE_GTK3=0
|
||||||
|
EXPORT_QT5CT=0
|
||||||
|
for FILEPATH in "${PATHLIST[@]}"; do
|
||||||
|
if [[ ${FILEPATH} == *Makefile* ]] ;then
|
||||||
|
MAKE_GTK3=1
|
||||||
|
elif [[ ${FILEPATH} == *qt5ct* ]] ;then
|
||||||
|
EXPORT_QT5CT=1
|
||||||
|
elif [[ ${FILEPATH} == *qt6ct* ]] ;then
|
||||||
|
EXPORT_QT6CT=1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
MAKE_OPTS="${MAKE_OPTS-all}"
|
||||||
|
|
||||||
|
OPTION_GTK2_HIDPI=$(echo "${OPTION_GTK2_HIDPI-False}" | tr '[:upper:]' '[:lower:]')
|
||||||
|
|
||||||
|
|
||||||
|
if [[ ${THEME} == */* ]] || [[ ${THEME} == *.* ]] ; then
|
||||||
|
source "$THEME"
|
||||||
|
THEME=$(basename "${THEME}")
|
||||||
|
else
|
||||||
|
if [[ -f "$SRC_PATH/../colors/$THEME" ]] ; then
|
||||||
|
source "$SRC_PATH/../colors/$THEME"
|
||||||
|
else
|
||||||
|
echo "Theme '${THEME}' not found"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
if [[ $(date +"%m%d") = "0401" ]] && [[ -z "${no_jokes:-}" ]] ; then
|
||||||
|
echo -e "\n\nError patching uxtheme.dll\n\n"
|
||||||
|
ACCENT_BG=30a55c BG=ECE9D8 BTN_BG=f8f8f8 BTN_FG=000000
|
||||||
|
BTN_OUTLINE_OFFSET=-3 BTN_OUTLINE_WIDTH=1 FG=000000 GRADIENT=0.08
|
||||||
|
GTK3_GENERATE_DARK=False HDR_BTN_BG=f8f8f8 HDR_BTN_FG=000000 HDR_BG=ECE9D8
|
||||||
|
HDR_FG=000000 OUTLINE_WIDTH=1 ROUNDNESS=3 SEL_BG=3169C6 SEL_FG=FFFFFF
|
||||||
|
SPACING=3 TXT_BG=FFFFFF TXT_FG=000000 WM_BORDER_FOCUS=3169C6 WM_BORDER_UNFOCUS=ECE9D8
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Migration:
|
||||||
|
HDR_BG=${HDR_BG-$MENU_BG}
|
||||||
|
HDR_FG=${HDR_FG-$MENU_FG}
|
||||||
|
|
||||||
|
ACCENT_BG=${ACCENT_BG-$SEL_BG}
|
||||||
|
HDR_BTN_BG=${HDR_BTN_BG-$BTN_BG}
|
||||||
|
HDR_BTN_FG=${HDR_BTN_FG-$BTN_FG}
|
||||||
|
WM_BORDER_FOCUS=${WM_BORDER_FOCUS-$SEL_BG}
|
||||||
|
WM_BORDER_UNFOCUS=${WM_BORDER_UNFOCUS-$HDR_BG}
|
||||||
|
|
||||||
|
GTK3_GENERATE_DARK=$(echo "${GTK3_GENERATE_DARK-True}" | tr '[:upper:]' '[:lower:]')
|
||||||
|
UNITY_DEFAULT_LAUNCHER_STYLE=$(echo "${UNITY_DEFAULT_LAUNCHER_STYLE-False}" | tr '[:upper:]' '[:lower:]')
|
||||||
|
|
||||||
|
SPACING=${SPACING-3}
|
||||||
|
GRADIENT=${GRADIENT-0}
|
||||||
|
ROUNDNESS=${ROUNDNESS-2}
|
||||||
|
CINNAMON_OPACITY=${CINNAMON_OPACITY-1}
|
||||||
|
ROUNDNESS_GTK2_HIDPI=$(( ROUNDNESS * 2 ))
|
||||||
|
|
||||||
|
if [ "$(echo "$GRADIENT < 2" | bc)" ]; then
|
||||||
|
GTK2_GRAD=$(echo "scale=2; $GRADIENT/2" | bc)
|
||||||
|
else
|
||||||
|
GTK2_GRAD=1
|
||||||
|
fi
|
||||||
|
GTK2_GRAD_1=$(echo "1+$GTK2_GRAD" | bc)
|
||||||
|
GTK2_GRAD_2=$(echo "1-$GTK2_GRAD" | bc)
|
||||||
|
if expr "$GTK2_GRAD_1" : '-\?[0-9]\+$' >/dev/null; then
|
||||||
|
GTK2_GRAD_TOP="$GTK2_GRAD_1".0
|
||||||
|
GTK2_GRAD_BOTTOM="$GTK2_GRAD_2".0
|
||||||
|
else
|
||||||
|
GTK2_GRAD_TOP=$GTK2_GRAD_1
|
||||||
|
GTK2_GRAD_BOTTOM=$GTK2_GRAD_2
|
||||||
|
fi
|
||||||
|
|
||||||
|
OUTLINE_WIDTH=${OUTLINE_WIDTH-1}
|
||||||
|
BTN_OUTLINE_WIDTH=${BTN_OUTLINE_WIDTH-1}
|
||||||
|
BTN_OUTLINE_OFFSET=${BTN_OUTLINE_OFFSET--3}
|
||||||
|
|
||||||
|
INACTIVE_FG=$(mix "$FG" "$BG" 0.75)
|
||||||
|
INACTIVE_HDR_FG=$(mix "$HDR_FG" "$HDR_BG" 0.75)
|
||||||
|
INACTIVE_TXT_FG=$(mix "$TXT_FG" "$TXT_BG" 0.75)
|
||||||
|
|
||||||
|
light_folder_base_fallback="$(darker "$SEL_BG" -10)"
|
||||||
|
medium_base_fallback="$(darker "$SEL_BG" 37)"
|
||||||
|
dark_stroke_fallback="$(darker "$SEL_BG" 50)"
|
||||||
|
|
||||||
|
ICONS_LIGHT_FOLDER="${ICONS_LIGHT_FOLDER-$light_folder_base_fallback}"
|
||||||
|
ICONS_LIGHT="${ICONS_LIGHT-$SEL_BG}"
|
||||||
|
ICONS_MEDIUM="${ICONS_MEDIUM-$medium_base_fallback}"
|
||||||
|
ICONS_DARK="${ICONS_DARK-$dark_stroke_fallback}"
|
||||||
|
|
||||||
|
CARET1_FG="${CARET1_FG-$TXT_FG}"
|
||||||
|
CARET2_FG="${CARET2_FG-$TXT_FG}"
|
||||||
|
CARET_SIZE="${CARET_SIZE-0.04}"
|
||||||
|
|
||||||
|
TERMINAL_BACKGROUND=${TERMINAL_BACKGROUND:-$SEL_FG}
|
||||||
|
TERMINAL_COLOR4=${TERMINAL_COLOR4:-3f51b5}
|
||||||
|
TERMINAL_COLOR9=${TERMINAL_COLOR9:-f44336}
|
||||||
|
TERMINAL_COLOR10=${TERMINAL_COLOR10:-4caf50}
|
||||||
|
TERMINAL_COLOR11=${TERMINAL_COLOR11:-ef6c00}
|
||||||
|
TERMINAL_COLOR12=${TERMINAL_COLOR12:-03a9f4}
|
||||||
|
|
||||||
|
OUTPUT_THEME_NAME="${OUTPUT_THEME_NAME-oomox-$THEME}"
|
||||||
|
|
||||||
|
DEST_PATH_ROOT="${DEST_PATH_ROOT-$HOME/.themes}"
|
||||||
|
DEST_PATH="$DEST_PATH_ROOT/${OUTPUT_THEME_NAME/\//-}"
|
||||||
|
|
||||||
|
test "$SRC_PATH" = "$DEST_PATH" && echo "can't do that" && exit 1
|
||||||
|
|
||||||
|
|
||||||
|
rm -fr "$DEST_PATH"
|
||||||
|
mkdir -p "$DEST_PATH"
|
||||||
|
echo -e "\nBuilding theme at $DEST_PATH\n"
|
||||||
|
cp -r "$SRC_PATH/src/index.theme" "$DEST_PATH"
|
||||||
|
for FILEPATH in "${PATHLIST[@]}"; do
|
||||||
|
cp -r "$SRC_PATH/$FILEPATH" "$DEST_PATH"
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
cd "$DEST_PATH"
|
||||||
|
for FILEPATH in "${PATHLIST[@]}"; do
|
||||||
|
find "$(echo "${FILEPATH}" | sed -e 's/src\///g' )" -type f -exec sed -i'' \
|
||||||
|
-e 's/%BG%/'"$BG"'/g' \
|
||||||
|
-e 's/%FG%/'"$FG"'/g' \
|
||||||
|
-e 's/%SEL_BG%/'"$SEL_BG"'/g' \
|
||||||
|
-e 's/%SEL_FG%/'"$SEL_FG"'/g' \
|
||||||
|
-e 's/%ACCENT_BG%/'"$ACCENT_BG"'/g' \
|
||||||
|
-e 's/%TXT_BG%/'"$TXT_BG"'/g' \
|
||||||
|
-e 's/%TXT_FG%/'"$TXT_FG"'/g' \
|
||||||
|
-e 's/%HDR_BG%/'"$HDR_BG"'/g' \
|
||||||
|
-e 's/%HDR_FG%/'"$HDR_FG"'/g' \
|
||||||
|
-e 's/%BTN_BG%/'"$BTN_BG"'/g' \
|
||||||
|
-e 's/%BTN_FG%/'"$BTN_FG"'/g' \
|
||||||
|
-e 's/%HDR_BTN_BG%/'"$HDR_BTN_BG"'/g' \
|
||||||
|
-e 's/%HDR_BTN_FG%/'"$HDR_BTN_FG"'/g' \
|
||||||
|
-e 's/%WM_BORDER_FOCUS%/'"$WM_BORDER_FOCUS"'/g' \
|
||||||
|
-e 's/%WM_BORDER_UNFOCUS%/'"$WM_BORDER_UNFOCUS"'/g' \
|
||||||
|
-e 's/%ROUNDNESS%/'"$ROUNDNESS"'/g' \
|
||||||
|
-e 's/%ROUNDNESS_GTK2_HIDPI%/'"$ROUNDNESS_GTK2_HIDPI"'/g' \
|
||||||
|
-e 's/%OUTLINE_WIDTH%/'"$OUTLINE_WIDTH"'/g' \
|
||||||
|
-e 's/%BTN_OUTLINE_WIDTH%/'"$BTN_OUTLINE_WIDTH"'/g' \
|
||||||
|
-e 's/%BTN_OUTLINE_OFFSET%/'"$BTN_OUTLINE_OFFSET"'/g' \
|
||||||
|
-e 's/%SPACING%/'"$SPACING"'/g' \
|
||||||
|
-e 's/%GRADIENT%/'"$GRADIENT"'/g' \
|
||||||
|
-e 's/%GTK2_GRAD_TOP%/'"$GTK2_GRAD_TOP"'/g' \
|
||||||
|
-e 's/%GTK2_GRAD_BOTTOM%/'"$GTK2_GRAD_BOTTOM"'/g' \
|
||||||
|
-e 's/%CINNAMON_OPACITY%/'"$CINNAMON_OPACITY"'/g' \
|
||||||
|
-e 's/%INACTIVE_FG%/'"$INACTIVE_FG"'/g' \
|
||||||
|
-e 's/%INACTIVE_TXT_FG%/'"$INACTIVE_TXT_FG"'/g' \
|
||||||
|
-e 's/%INACTIVE_HDR_FG%/'"$INACTIVE_HDR_FG"'/g' \
|
||||||
|
-e 's/%ICONS_DARK%/'"$ICONS_DARK"'/g' \
|
||||||
|
-e 's/%ICONS_MEDIUM%/'"$ICONS_MEDIUM"'/g' \
|
||||||
|
-e 's/%ICONS_LIGHT%/'"$ICONS_LIGHT"'/g' \
|
||||||
|
-e 's/%ICONS_LIGHT_FOLDER%/'"$ICONS_LIGHT_FOLDER"'/g' \
|
||||||
|
-e 's/%OUTPUT_THEME_NAME%/'"$OUTPUT_THEME_NAME"'/g' \
|
||||||
|
-e 's/%CARET1_FG%/'"$CARET1_FG"'/g' \
|
||||||
|
-e 's/%CARET2_FG%/'"$CARET2_FG"'/g' \
|
||||||
|
-e 's/%CARET_SIZE%/'"$CARET_SIZE"'/g' \
|
||||||
|
-e 's/%TERMINAL_BACKGROUND%/'"$TERMINAL_BACKGROUND"'/g' \
|
||||||
|
-e 's/%TERMINAL_COLOR4%/'"$TERMINAL_COLOR4"'/g' \
|
||||||
|
-e 's/%TERMINAL_COLOR9%/'"$TERMINAL_COLOR9"'/g' \
|
||||||
|
-e 's/%TERMINAL_COLOR10%/'"$TERMINAL_COLOR10"'/g' \
|
||||||
|
-e 's/%TERMINAL_COLOR11%/'"$TERMINAL_COLOR11"'/g' \
|
||||||
|
-e 's/%TERMINAL_COLOR12%/'"$TERMINAL_COLOR12"'/g' \
|
||||||
|
{} \; ;
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ ${GTK3_GENERATE_DARK} != "true" ]] ; then
|
||||||
|
if [[ -f ./gtk-3.0/scss/gtk-dark.scss ]] ; then
|
||||||
|
rm ./gtk-3.0/scss/gtk-dark.scss
|
||||||
|
fi
|
||||||
|
if [[ -f ./gtk-3.20/scss/gtk-dark.scss ]] ; then
|
||||||
|
rm ./gtk-3.20/scss/gtk-dark.scss
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
if [[ ${OPTION_GTK2_HIDPI} == "true" ]] ; then
|
||||||
|
mv ./gtk-2.0/gtkrc.hidpi ./gtk-2.0/gtkrc
|
||||||
|
fi
|
||||||
|
if [[ ${UNITY_DEFAULT_LAUNCHER_STYLE} == "true" ]] ; then
|
||||||
|
rm ./unity/launcher*.svg
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ${MAKE_GTK3} = 1 ]]; then
|
||||||
|
# shellcheck disable=SC2086
|
||||||
|
env MAKEFLAGS= make --jobs="$(nproc)" ${MAKE_OPTS}
|
||||||
|
fi
|
||||||
|
|
||||||
|
config_home=${XDG_CONFIG_HOME:-}
|
||||||
|
if [[ -z "${config_home}" ]] ; then
|
||||||
|
config_home="${HOME}/.config"
|
||||||
|
fi
|
||||||
|
if [[ ${EXPORT_QT5CT} = 1 ]] ; then
|
||||||
|
qt5ct_colors_dir="${config_home}/qt5ct/colors/"
|
||||||
|
test -d "${qt5ct_colors_dir}" || mkdir -p "${qt5ct_colors_dir}"
|
||||||
|
mv ./qt5ct_palette.conf "${qt5ct_colors_dir}/${OUTPUT_THEME_NAME}.conf"
|
||||||
|
fi
|
||||||
|
if [[ ${EXPORT_QT6CT} = 1 ]] ; then
|
||||||
|
qt6ct_colors_dir="${config_home}/qt6ct/colors/"
|
||||||
|
test -d "${qt6ct_colors_dir}" || mkdir -p "${qt6ct_colors_dir}"
|
||||||
|
mv ./qt6ct_palette.conf "${qt6ct_colors_dir}/${OUTPUT_THEME_NAME}.conf"
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -fr ./Makefile gtk-3.*/scss
|
||||||
|
|
||||||
|
for FILEPATH in "${SVG_PREVIEWS[@]}"; do
|
||||||
|
# shellcheck disable=SC2001
|
||||||
|
rsvg-convert --format=png -o "$(sed -e 's/svg$/png/' <<< "${FILEPATH}")" "${FILEPATH}"
|
||||||
|
rm "${FILEPATH}"
|
||||||
|
done
|
||||||
|
|
||||||
|
exit 0
|
||||||
@@ -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:#%TXT_BG%;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:#%BG%;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:#%FG%;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:#%ACCENT_BG%;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 |
4851
home-modules/theme/theme_oomox/gtk_preview_css/theme.css
Normal file
8823
home-modules/theme/theme_oomox/gtk_preview_css/theme20.css
Normal file
219
home-modules/theme/theme_oomox/oomox_plugin.py
Normal file
@@ -0,0 +1,219 @@
|
|||||||
|
import os
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
|
from gi.repository import Gtk
|
||||||
|
|
||||||
|
from oomox_gui.export_common import CommonGtkThemeExportDialog, CommonGtkThemeExportDialogOptions
|
||||||
|
from oomox_gui.i18n import translate
|
||||||
|
from oomox_gui.plugin_api import OomoxThemePlugin
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from typing import Any, Final
|
||||||
|
|
||||||
|
from oomox_gui.preview import ThemePreview
|
||||||
|
from oomox_gui.theme_file import ThemeT
|
||||||
|
|
||||||
|
|
||||||
|
PLUGIN_DIR: "Final" = os.path.dirname(os.path.realpath(__file__))
|
||||||
|
GTK_THEME_DIR: "Final" = PLUGIN_DIR
|
||||||
|
|
||||||
|
|
||||||
|
class OomoxThemeExportDialogOptions(CommonGtkThemeExportDialogOptions):
|
||||||
|
GTK3_CURRENT_VERSION_ONLY = "self.OPTIONS.GTK3_CURRENT_VERSION_ONLY"
|
||||||
|
EXPORT_CINNAMON_THEME = "self.OPTIONS.EXPORT_CINNAMON_THEME"
|
||||||
|
|
||||||
|
|
||||||
|
class OomoxThemeExportDialog(CommonGtkThemeExportDialog):
|
||||||
|
OPTIONS = OomoxThemeExportDialogOptions()
|
||||||
|
timeout = 100
|
||||||
|
config_name = "gtk_theme_oomox"
|
||||||
|
|
||||||
|
def do_export(self) -> None:
|
||||||
|
export_path = os.path.expanduser(
|
||||||
|
self.option_widgets[self.OPTIONS.DEFAULT_PATH].get_text(),
|
||||||
|
)
|
||||||
|
new_destination_dir, theme_name = export_path.rsplit("/", 1)
|
||||||
|
|
||||||
|
self.command = [
|
||||||
|
"bash",
|
||||||
|
os.path.join(GTK_THEME_DIR, "change_color.sh"),
|
||||||
|
"--hidpi", str(self.export_config[self.OPTIONS.GTK2_HIDPI]),
|
||||||
|
"--target-dir", new_destination_dir,
|
||||||
|
"--output", theme_name,
|
||||||
|
self.temp_theme_path,
|
||||||
|
]
|
||||||
|
make_opts = []
|
||||||
|
if self.export_config[self.OPTIONS.GTK3_CURRENT_VERSION_ONLY]:
|
||||||
|
if Gtk.get_minor_version() >= 20: # noqa: PLR2004
|
||||||
|
make_opts += ["gtk320"]
|
||||||
|
else:
|
||||||
|
make_opts += ["gtk3"]
|
||||||
|
else:
|
||||||
|
make_opts += ["gtk3", "gtk320"]
|
||||||
|
if self.export_config[self.OPTIONS.EXPORT_CINNAMON_THEME]:
|
||||||
|
make_opts += ["css_cinnamon"]
|
||||||
|
if make_opts:
|
||||||
|
self.command += [
|
||||||
|
"--make-opts", " ".join(make_opts),
|
||||||
|
]
|
||||||
|
super().do_export()
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
transient_for: Gtk.Window,
|
||||||
|
colorscheme: "ThemeT",
|
||||||
|
theme_name: str,
|
||||||
|
**kwargs: "Any",
|
||||||
|
) -> None:
|
||||||
|
super().__init__(
|
||||||
|
transient_for=transient_for,
|
||||||
|
colorscheme=colorscheme,
|
||||||
|
theme_name=theme_name,
|
||||||
|
add_options={
|
||||||
|
self.OPTIONS.GTK3_CURRENT_VERSION_ONLY: {
|
||||||
|
"default": False,
|
||||||
|
"display_name": translate(
|
||||||
|
"Generate theme only for the current _GTK+3 version\n"
|
||||||
|
"instead of both 3.18 and 3.20+",
|
||||||
|
),
|
||||||
|
},
|
||||||
|
self.OPTIONS.EXPORT_CINNAMON_THEME: {
|
||||||
|
"default": False,
|
||||||
|
"display_name": translate("Generate theme for _Cinnamon"),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
**kwargs,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class Plugin(OomoxThemePlugin):
|
||||||
|
|
||||||
|
name = "oomox"
|
||||||
|
display_name = "Oomox"
|
||||||
|
description = (
|
||||||
|
"GTK+2, GTK+3, Qt5ct, Qt6ct\n"
|
||||||
|
"Cinnamon, Metacity, Openbox, Unity, Xfwm"
|
||||||
|
)
|
||||||
|
about_text = translate("The default theme, originally based on Numix GTK theme.")
|
||||||
|
about_links = [
|
||||||
|
{
|
||||||
|
"name": translate("Homepage"),
|
||||||
|
"url": "https://github.com/themix-project/oomox-gtk-theme/",
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
export_dialog = OomoxThemeExportDialog
|
||||||
|
gtk_preview_dir = os.path.join(PLUGIN_DIR, "gtk_preview_css/")
|
||||||
|
|
||||||
|
enabled_keys_gtk = [
|
||||||
|
"BG",
|
||||||
|
"FG",
|
||||||
|
"HDR_BG",
|
||||||
|
"HDR_FG",
|
||||||
|
"SEL_BG",
|
||||||
|
"SEL_FG",
|
||||||
|
"ACCENT_BG",
|
||||||
|
"TXT_BG",
|
||||||
|
"TXT_FG",
|
||||||
|
"BTN_BG",
|
||||||
|
"BTN_FG",
|
||||||
|
"HDR_BTN_BG",
|
||||||
|
"HDR_BTN_FG",
|
||||||
|
"WM_BORDER_FOCUS",
|
||||||
|
"WM_BORDER_UNFOCUS",
|
||||||
|
]
|
||||||
|
|
||||||
|
enabled_keys_options = [
|
||||||
|
"ROUNDNESS",
|
||||||
|
"SPACING",
|
||||||
|
"GRADIENT",
|
||||||
|
"GTK3_GENERATE_DARK",
|
||||||
|
]
|
||||||
|
|
||||||
|
theme_model_gtk = [
|
||||||
|
{
|
||||||
|
"key": "CARET1_FG",
|
||||||
|
"type": "color",
|
||||||
|
"fallback_key": "TXT_FG",
|
||||||
|
"display_name": translate("Textbox Caret"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "CARET2_FG",
|
||||||
|
"type": "color",
|
||||||
|
"fallback_key": "TXT_FG",
|
||||||
|
"display_name": translate("BiDi Textbox Caret"),
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
theme_model_options = [
|
||||||
|
{
|
||||||
|
"key": "CARET_SIZE",
|
||||||
|
"type": "float",
|
||||||
|
"fallback_value": 0.04, # GTK's default
|
||||||
|
"display_name": translate("Textbox Caret Aspect Ratio"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "separator",
|
||||||
|
"display_name": translate("GTK3 Theme Options"),
|
||||||
|
"value_filter": {
|
||||||
|
"THEME_STYLE": "oomox",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "SPACING",
|
||||||
|
"type": "int",
|
||||||
|
"fallback_value": 3,
|
||||||
|
"display_name": translate("Spacing"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "OUTLINE_WIDTH",
|
||||||
|
"type": "int",
|
||||||
|
"fallback_value": 1,
|
||||||
|
"display_name": translate("Focused Outline Width"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "BTN_OUTLINE_WIDTH",
|
||||||
|
"type": "int",
|
||||||
|
"fallback_value": 1,
|
||||||
|
"display_name": translate("Focused Button Outline Width"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "BTN_OUTLINE_OFFSET",
|
||||||
|
"type": "int",
|
||||||
|
"fallback_value": -3,
|
||||||
|
"min_value": -20,
|
||||||
|
"display_name": translate("Focused Button Outline Offset"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "GTK3_GENERATE_DARK",
|
||||||
|
"type": "bool",
|
||||||
|
"fallback_value": True,
|
||||||
|
"display_name": translate("Add Dark Variant"),
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"type": "separator",
|
||||||
|
"display_name": translate("Desktop Environments"),
|
||||||
|
"value_filter": {
|
||||||
|
"THEME_STYLE": "oomox",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "CINNAMON_OPACITY",
|
||||||
|
"type": "float",
|
||||||
|
"fallback_value": 1.0,
|
||||||
|
"max_value": 1.0,
|
||||||
|
"display_name": translate("Cinnamon: Opacity"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "UNITY_DEFAULT_LAUNCHER_STYLE",
|
||||||
|
"type": "bool",
|
||||||
|
"fallback_value": False,
|
||||||
|
"display_name": translate("Unity: Use Default Launcher Style"),
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
def preview_before_load_callback(
|
||||||
|
self, preview_object: "ThemePreview", colorscheme: "ThemeT", # noqa: ARG002
|
||||||
|
) -> None:
|
||||||
|
preview_object.WM_BORDER_WIDTH = 2
|
||||||
34
home-modules/theme/theme_oomox/scripts/darker.sh
Executable file
@@ -0,0 +1,34 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -ueo pipefail
|
||||||
|
#set -x
|
||||||
|
|
||||||
|
darker_channel() {
|
||||||
|
value="$1"
|
||||||
|
light_delta="$2"
|
||||||
|
value_int="$(bc <<< "ibase=16; $value")"
|
||||||
|
result="$(bc <<< "$value_int - $light_delta")"
|
||||||
|
if [[ "$result" -lt 0 ]]; then
|
||||||
|
result=0
|
||||||
|
fi
|
||||||
|
if [[ "$result" -gt 255 ]]; then
|
||||||
|
result=255
|
||||||
|
fi
|
||||||
|
echo "$result"
|
||||||
|
}
|
||||||
|
|
||||||
|
darker() {
|
||||||
|
hexinput="$(tr '[:lower:]' '[:upper:]' <<< "$1")"
|
||||||
|
light_delta="${2-10}"
|
||||||
|
|
||||||
|
a="$(cut -c-2 <<< "$hexinput")"
|
||||||
|
b="$(cut -c3-4 <<< "$hexinput")"
|
||||||
|
c="$(cut -c5-6 <<< "$hexinput")"
|
||||||
|
|
||||||
|
r="$(darker_channel "$a" "$light_delta")"
|
||||||
|
g="$(darker_channel "$b" "$light_delta")"
|
||||||
|
b="$(darker_channel "$c" "$light_delta")"
|
||||||
|
|
||||||
|
printf '%02x%02x%02x\n' "$r" "$g" "$b"
|
||||||
|
}
|
||||||
|
|
||||||
|
darker "$@"
|
||||||
16
home-modules/theme/theme_oomox/scripts/is_dark.sh
Executable file
@@ -0,0 +1,16 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
script_dir="$(readlink -f "$(dirname "${0}")")"
|
||||||
|
|
||||||
|
is_dark() {
|
||||||
|
hexinput=$(echo "${1}" | tr '[:lower:]' '[:upper:]')
|
||||||
|
half_darker=$("${script_dir}/darker.sh" "${hexinput}" 88)
|
||||||
|
if [[ "${half_darker}" = "000000" ]] ; then
|
||||||
|
return 0;
|
||||||
|
else
|
||||||
|
return 1;
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
is_dark "$@"
|
||||||
37
home-modules/theme/theme_oomox/scripts/mix.sh
Executable file
@@ -0,0 +1,37 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -ueo pipefail
|
||||||
|
#set -x
|
||||||
|
|
||||||
|
mix_channel() {
|
||||||
|
value1="$(printf '%03d' "0x$1")"
|
||||||
|
value2="$(printf '%03d' "0x$2")"
|
||||||
|
ratio="$3"
|
||||||
|
result="$(bc <<< "scale=0; ($value1 * 100 * $ratio + $value2 * 100 * (1 - $ratio)) / 100")"
|
||||||
|
if [[ "$result" -lt 0 ]]; then
|
||||||
|
result=0
|
||||||
|
elif [[ "$result" -gt 255 ]]; then
|
||||||
|
result=255
|
||||||
|
fi
|
||||||
|
echo "$result"
|
||||||
|
}
|
||||||
|
|
||||||
|
mix() {
|
||||||
|
hexinput1="$(tr '[:lower:]' '[:upper:]' <<< "$1")"
|
||||||
|
hexinput2="$(tr '[:lower:]' '[:upper:]' <<< "$2")"
|
||||||
|
ratio="${3-0.5}"
|
||||||
|
|
||||||
|
a="$(cut -c-2 <<< "$hexinput1")"
|
||||||
|
b="$(cut -c3-4 <<< "$hexinput1")"
|
||||||
|
c="$(cut -c5-6 <<< "$hexinput1")"
|
||||||
|
d="$(cut -c-2 <<< "$hexinput2")"
|
||||||
|
e="$(cut -c3-4 <<< "$hexinput2")"
|
||||||
|
f="$(cut -c5-6 <<< "$hexinput2")"
|
||||||
|
|
||||||
|
r="$(mix_channel "$a" "$d" "$ratio")"
|
||||||
|
g="$(mix_channel "$b" "$e" "$ratio")"
|
||||||
|
b="$(mix_channel "$c" "$f" "$ratio")"
|
||||||
|
|
||||||
|
printf '%02x%02x%02x\n' "$r" "$g" "$b"
|
||||||
|
}
|
||||||
|
|
||||||
|
mix "$@"
|
||||||
4456
home-modules/theme/theme_oomox/src/assets/all-assets.svg
Normal file
|
After Width: | Height: | Size: 154 KiB |
38
home-modules/theme/theme_oomox/src/assets/all-assets.txt
Normal 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
|
||||||
4
home-modules/theme/theme_oomox/src/assets/change_dpi.sh
Executable 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
|
||||||
@@ -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:#%FG%;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: 849 B |
@@ -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:#%ACCENT_BG%;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: 854 B |
@@ -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:#%FG%;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: 385 B |
@@ -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:#%ACCENT_BG%;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: 390 B |
@@ -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:#%TXT_BG%;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:#%BG%;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:#%FG%;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:#%SEL_BG%;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 |
@@ -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:#%TXT_BG%;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:#%BG%;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:#%FG%;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 |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%SEL_FG%;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 |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%HDR_FG%;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 |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%SEL_BG%;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 |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%SEL_FG%;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 |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%HDR_FG%;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.8 KiB |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%SEL_BG%;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 |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%HDR_FG%;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 |
@@ -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:#%HDR_FG%;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: 921 B |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%SEL_FG%;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 |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%HDR_FG%;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 |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%SEL_BG%;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 |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%SEL_FG%;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 |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%HDR_FG%;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 |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%SEL_BG%;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 |
@@ -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:#%HDR_FG%;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:#%HDR_FG%;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:#%HDR_FG%;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 |
@@ -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:#%HDR_FG%;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: 779 B |
@@ -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:#%BG%;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:#%BG%;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:#%BG%;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 |
BIN
home-modules/theme/theme_oomox/src/assets/pane-handle.png
Normal file
|
After Width: | Height: | Size: 150 B |
49
home-modules/theme/theme_oomox/src/assets/pane-handle.svg
Normal 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:#%BG%;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:#%BG%;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:#%BG%;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 |
BIN
home-modules/theme/theme_oomox/src/assets/pane-handle@2.png
Normal file
|
After Width: | Height: | Size: 161 B |
@@ -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:#%FG%;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: 589 B |
@@ -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:#%ACCENT_BG%;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: 594 B |
@@ -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:#%FG%;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: 385 B |
@@ -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:#%ACCENT_BG%;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: 390 B |
@@ -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:#%FG%;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: 589 B |
@@ -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:#%ACCENT_BG%;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: 594 B |
@@ -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:#%FG%;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: 776 B |
@@ -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:#%FG%;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: 776 B |
9
home-modules/theme/theme_oomox/src/assets/sed.sh
Executable file
@@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
sed -i \
|
||||||
|
-e 's/#%BG%/rgb(0%,0%,0%)/g' \
|
||||||
|
-e 's/#%FG%/rgb(100%,100%,100%)/g' \
|
||||||
|
-e 's/#%HDR_BG%/rgb(50%,0%,0%)/g' \
|
||||||
|
-e 's/#%ACCENT_BG%/rgb(0%,50%,0%)/g' \
|
||||||
|
-e 's/#%TXT_BG%/rgb(50%,0%,50%)/g' \
|
||||||
|
-e 's/#%TXT_FG%/rgb(0%,0%,50%)/g' \
|
||||||
|
"$@"
|
||||||
11
home-modules/theme/theme_oomox/src/assets/unsed.sh
Executable file
@@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
sed -i \
|
||||||
|
-e 's/rgb(0%,0%,0%)/#%BG%/g' \
|
||||||
|
-e 's/rgb(100%,100%,100%)/#%FG%/g' \
|
||||||
|
-e 's/rgb(50%,0%,0%)/#%HDR_BG%/g' \
|
||||||
|
-e 's/rgb(0%,50%,0%)/#%ACCENT_BG%/g' \
|
||||||
|
-e 's/rgb(0%,50.196078%,0%)/#%ACCENT_BG%/g' \
|
||||||
|
-e 's/rgb(50%,0%,50%)/#%TXT_BG%/g' \
|
||||||
|
-e 's/rgb(50.196078%,0%,50.196078%)/#%TXT_BG%/g' \
|
||||||
|
-e 's/rgb(0%,0%,50%)/#%TXT_FG%/g' \
|
||||||
|
"$@"
|
||||||
|
After Width: | Height: | Size: 806 B |
|
After Width: | Height: | Size: 713 B |
@@ -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:#%HDR_FG%;fill-opacity:1;stroke:#%HDR_FG%;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 |
@@ -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:#%HDR_FG%;fill-opacity:1;stroke:#%HDR_FG%;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 |
@@ -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:#%HDR_BG%;stop-opacity:1"
|
||||||
|
offset="0"
|
||||||
|
id="stop4142" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#%BG%;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:#%HDR_FG%;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 |
104
home-modules/theme/theme_oomox/src/cinnamon/assets/checkbox.svg
Normal 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:#%HDR_BG%;stop-opacity:1"
|
||||||
|
offset="0"
|
||||||
|
id="stop4142" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#%BG%;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:#%HDR_FG%;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:#%ACCENT_BG%;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 |
@@ -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:#%HDR_FG%;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3175" /><stop
|
||||||
|
style="stop-color:#%HDR_FG%;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:#%BG%;stop-opacity:1"
|
||||||
|
offset="0"
|
||||||
|
id="stop16500-8" /><stop
|
||||||
|
style="stop-color:#%HDR_BG%;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:#%HDR_FG%;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:#%HDR_FG%;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 |
|
After Width: | Height: | Size: 8.8 KiB |
@@ -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:#%HDR_BG%;stop-opacity:1"
|
||||||
|
offset="0"
|
||||||
|
id="stop4694" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#%BG%;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:#%HDR_FG%;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 |
@@ -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:#%HDR_BG%;stop-opacity:1"
|
||||||
|
offset="0"
|
||||||
|
id="stop4694" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#%BG%;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:#%HDR_FG%;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:#%ACCENT_BG%;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 |
@@ -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:#%HDR_BG%;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3887"
|
||||||
|
style="stop-color:#%HDR_BG%;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:#%HDR_FG%;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3994-0-8-2"
|
||||||
|
style="stop-color:#%HDR_FG%;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:#%HDR_BG%;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3940-9-2" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#%BG%;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:#%HDR_FG%;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:#%HDR_FG%;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 |
@@ -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:#%HDR_BG%;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3887"
|
||||||
|
style="stop-color:#%HDR_BG%;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:#%HDR_FG%;stop-opacity:1"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3994-0-8-2"
|
||||||
|
style="stop-color:#%HDR_FG%;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:#%HDR_BG%;stop-opacity:1;"
|
||||||
|
offset="0"
|
||||||
|
id="stop3940-9-2" />
|
||||||
|
<stop
|
||||||
|
style="stop-color:#%BG%;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:#%HDR_FG%;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:#%HDR_FG%;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 |
|
After Width: | Height: | Size: 46 KiB |
1537
home-modules/theme/theme_oomox/src/cinnamon/assets/toggle-on-us.svg
Normal file
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
372
home-modules/theme/theme_oomox/src/cinnamon/scss/_extends.scss
Normal 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;
|
||||||
|
}
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
// scss-lint:disable ColorVariable
|
||||||
|
|
||||||
|
// main colors used in theme
|
||||||
|
// %CINNAMON_OPACITY% < 1 will result in most cinnamon surfaces being transparent
|
||||||
|
$button_bg_color: #%BTN_BG%;
|
||||||
|
$button_fg_color: #%BTN_FG%;
|
||||||
|
$selected_bg_color: #%SEL_BG%;
|
||||||
|
$selected_fg_color: #%SEL_FG%;
|
||||||
|
$tooltip_bg_color: #%BG%;
|
||||||
|
$tooltip_fg_color: #%FG%;
|
||||||
|
$dark_bg_color: fade-out(#%HDR_BG%, 1 - %CINNAMON_OPACITY%);
|
||||||
|
$dark_fg_color: #%HDR_FG%;
|
||||||
|
|
||||||
|
// 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(#%HDR_BG%, 1 - (%CINNAMON_OPACITY% / 2));
|
||||||
|
|
||||||
|
// used to calculate gradients for gradient values > 0
|
||||||
|
$lighten_amount: 1 + (%GRADIENT% / 2);
|
||||||
|
$darken_amount: 1 - (%GRADIENT% / 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: #%CARET1_FG%;
|
||||||
|
|
||||||
|
// other colors used in the theme
|
||||||
|
$link_color: #%TERMINAL_COLOR4%;
|
||||||
|
$success_color: #%TERMINAL_COLOR10%;
|
||||||
|
$warning_color: #%TERMINAL_COLOR11%;
|
||||||
|
$error_color: #%TERMINAL_COLOR9%;
|
||||||
|
$info_fg_color: #%TERMINAL_BACKGROUND%;
|
||||||
|
$info_bg_color: #%TERMINAL_COLOR12%;
|
||||||
|
|
||||||
|
// used for border-radius throughout theme
|
||||||
|
$roundness: %ROUNDNESS%px;
|
||||||
|
|
||||||
|
// used for buttons, entrys, panel spacing, and menu item spacing.
|
||||||
|
$spacing: %SPACING%px;
|
||||||
|
$spacing_plus2: (%SPACING% + 2) + px;
|
||||||
|
|
||||||
@@ -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";
|
||||||
@@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -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);
|
||||||
|
}
|
||||||
@@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -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 {
|
||||||
|
}
|
||||||
@@ -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, .overview-empty-placeholder {
|
||||||
|
@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: 0.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;
|
||||||
|
}
|
||||||
@@ -0,0 +1,238 @@
|
|||||||
|
.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;
|
||||||
|
}
|
||||||
|
.popup-menu-content {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
// individual menu entries are themed here
|
||||||
|
.popup-menu-item {
|
||||||
|
@extend %menu-buttons-shared;
|
||||||
|
|
||||||
|
color: $dark_fg_color;
|
||||||
|
spacing: .5em;
|
||||||
|
&:active {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
&:insensitive {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
.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: 0.8em;
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
transition-duration: 150;
|
||||||
|
spacing: 1em;
|
||||||
|
}
|
||||||
|
// This is for the stock menu in Cinnamon 4.0.2 and later - adds more vfade to the scrollable favorites box and fakes a seperator from the system buttons with a bottom border.
|
||||||
|
.menu-favorites-scrollbox {
|
||||||
|
padding-bottom: 1em;
|
||||||
|
border-bottom: 1px solid;
|
||||||
|
border-color: $interior_border;
|
||||||
|
&.vfade {
|
||||||
|
-st-vfade-offset: 136px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.menu-favorites-button {
|
||||||
|
@extend %menu-buttons-shared;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.menu-categories-box {
|
||||||
|
padding: 0.8em;
|
||||||
|
}
|
||||||
|
.menu-applications-inner-box {
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
padding: 0.8em;
|
||||||
|
border-radius: $roundness;
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
StScrollView {
|
||||||
|
@extend %menu-context-shared;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.menu-applications-outer-box {
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
padding: 0.8em;
|
||||||
|
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: 2px 8px;
|
||||||
|
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-bottom: 0.5em;
|
||||||
|
&:focus {
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.menu-search-entry-icon {
|
||||||
|
icon-size: 1em;
|
||||||
|
color: $tooltip_fg_color;
|
||||||
|
}
|
||||||
|
// new styleclasses for the Cinnamon 4.0.0 stock menu - note this menu was dropped in Cinnamon 4.0.1 but retain styling in case it's revived.
|
||||||
|
.menu-top-box {
|
||||||
|
spacing: 10px; }
|
||||||
|
.menu-systembuttons-box {
|
||||||
|
padding-bottom: 12px;
|
||||||
|
padding-top: 12px;
|
||||||
|
margin-bottom: 0.5em; }
|
||||||
|
// cinnVIIstark menu right click favourites context menu
|
||||||
|
.starkmenu-favorites-box .menu-context-menu, .menu-context-menu {
|
||||||
|
@extend %menu-context-shared;
|
||||||
|
}
|
||||||
@@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,119 @@
|
|||||||
|
// 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;
|
||||||
|
&:focus, &#selected {
|
||||||
|
@extend %selected-bg-grad-to-bottom;
|
||||||
|
|
||||||
|
color: $selected_fg_color;
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.window-border {
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
.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;
|
||||||
|
}
|
||||||
@@ -0,0 +1,573 @@
|
|||||||
|
// 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;
|
||||||
|
|
||||||
|
box-shadow: 0 -1px 0 0 $exterior_border inset;
|
||||||
|
.window-list-item-box {
|
||||||
|
@extend %bg-grad-to-top;
|
||||||
|
margin-bottom: 1px;
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-bg-grad-to-top;
|
||||||
|
}
|
||||||
|
&:active, &:checked, &:focus, &:running {
|
||||||
|
@extend %panel-top-shared;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-selected-grad-to-top;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.grouped-window-list-item-box {
|
||||||
|
&:active, &:checked {
|
||||||
|
box-shadow: 0 2px 0 0 $dark_fg_color inset;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
box-shadow: 0 2px 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
box-shadow: 0 4px 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.workspace-switcher, .workspace-graph {
|
||||||
|
padding: 1px $spacing;
|
||||||
|
}
|
||||||
|
.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;
|
||||||
|
|
||||||
|
box-shadow: 0 1px 0 0 $exterior_border inset;
|
||||||
|
.window-list-item-box {
|
||||||
|
@extend %bg-grad-to-bottom;
|
||||||
|
margin-top: 1px;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-bg-grad-to-bottom;
|
||||||
|
}
|
||||||
|
&:active, &:checked, &:focus, &:running {
|
||||||
|
@extend %panel-bottom-shared;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-selected-grad-to-bottom;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.grouped-window-list-item-box {
|
||||||
|
&:active, &:checked {
|
||||||
|
box-shadow: 0 -2px 0 0 $dark_fg_color inset;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
box-shadow: 0 -2px 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
box-shadow: 0 -4px 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.workspace-switcher, .workspace-graph {
|
||||||
|
padding: 1px $spacing;
|
||||||
|
}
|
||||||
|
.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;
|
||||||
|
|
||||||
|
box-shadow: -1px 0 0 0 $exterior_border inset;
|
||||||
|
.window-list-item-box {
|
||||||
|
margin-right: 1px;
|
||||||
|
@extend %bg-grad-to-left;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-bg-grad-to-left;
|
||||||
|
}
|
||||||
|
&:active, &:checked, &:focus, &:running {
|
||||||
|
@extend %panel-left-shared;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-selected-grad-to-left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.grouped-window-list-item-box {
|
||||||
|
&:active, &:checked {
|
||||||
|
box-shadow: 2px 0 0 0 $dark_fg_color inset;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
box-shadow: 2px 0 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
box-shadow: 4px 0 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.workspace-switcher, .workspace-graph {
|
||||||
|
padding: $spacing 1px;
|
||||||
|
}
|
||||||
|
.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;
|
||||||
|
|
||||||
|
box-shadow: 1px 0 0 0 $exterior_border inset;
|
||||||
|
.window-list-item-box {
|
||||||
|
margin-left: 1px;
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-bg-grad-to-right;
|
||||||
|
}
|
||||||
|
&:active, &:checked, &:focus, &:running {
|
||||||
|
@extend %panel-right-shared;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %hover-selected-grad-to-right;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.grouped-window-list-item-box {
|
||||||
|
&:active, &:checked {
|
||||||
|
box-shadow: -2px 0 0 0 $dark_fg_color inset;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
box-shadow: -2px 0 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
box-shadow: -4px 0 0 0 $selected_border inset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.workspace-switcher, .workspace-graph {
|
||||||
|
padding: $spacing 1px;
|
||||||
|
}
|
||||||
|
.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 {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
.applet-box {
|
||||||
|
color: $dark_fg_color;
|
||||||
|
transition-duration: 150;
|
||||||
|
border-radius: $roundness;
|
||||||
|
padding: 0 $spacing;
|
||||||
|
&.vertical {
|
||||||
|
padding: $spacing 0;
|
||||||
|
}
|
||||||
|
&:checked {
|
||||||
|
color: $selected_bg_color;
|
||||||
|
.applet-label {
|
||||||
|
color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
color: $selected_bg_color;
|
||||||
|
.applet-label {
|
||||||
|
color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:highlight {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
color: $selected_fg_color;
|
||||||
|
.applet-label {
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.applet-label {
|
||||||
|
font-weight: bold;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
padding-left: 3px;
|
||||||
|
}
|
||||||
|
// 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;
|
||||||
|
border-radius: $roundness;
|
||||||
|
&.vertical {
|
||||||
|
spacing: $spacing;
|
||||||
|
padding: 3px 1px;
|
||||||
|
}
|
||||||
|
&:highlight {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
#appMenuIcon {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 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;
|
||||||
|
}
|
||||||
|
&.top StLabel, &.bottom StLabel {
|
||||||
|
padding-left: 3px;
|
||||||
|
}
|
||||||
|
.progress {
|
||||||
|
background-color: $success_color;
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
border-radius: $roundness;
|
||||||
|
color: $info_fg_color;
|
||||||
|
}
|
||||||
|
#appMenuIcon {
|
||||||
|
padding-right: 0.2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&-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: 6px 12px;
|
||||||
|
spacing: $spacing;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
}
|
||||||
|
// Cinnamon 4.0 has a new grouped window list applet with it's own selectors.
|
||||||
|
// Initial theme support is defined here.
|
||||||
|
|
||||||
|
.grouped-window-list {
|
||||||
|
&-thumbnail-label {
|
||||||
|
padding-left: 3px;
|
||||||
|
}
|
||||||
|
&-number-label {
|
||||||
|
z-index: 99;
|
||||||
|
font-size: 0.8em;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
}
|
||||||
|
// May need to revise depending on upstream GWL developments
|
||||||
|
&-button-label {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
&-badge {
|
||||||
|
border-radius: 256px;
|
||||||
|
background-color: $dark_bg_color;
|
||||||
|
}
|
||||||
|
&-thumbnail-alert {
|
||||||
|
background: $warning_color;
|
||||||
|
}
|
||||||
|
&-item-box {
|
||||||
|
transition-duration: 150;
|
||||||
|
spacing: 1em;
|
||||||
|
background-color: rgba(0, 0, 0, 0.01);
|
||||||
|
&:hover, &:focus, {
|
||||||
|
color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
&:focus {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.progress {
|
||||||
|
background-color: $success_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&-demands-attention {
|
||||||
|
background-color: $info_bg_color;
|
||||||
|
color: $info_fg_color;
|
||||||
|
}
|
||||||
|
&-thumbnail-menu {
|
||||||
|
@extend %bg-grad-to-right;
|
||||||
|
|
||||||
|
border-radius: $roundness;
|
||||||
|
padding: 10px 15px;
|
||||||
|
spacing: $spacing;
|
||||||
|
color: $dark_fg_color;
|
||||||
|
.item-box {
|
||||||
|
padding: 8px;
|
||||||
|
border-radius: $roundness;
|
||||||
|
border: 1px solid $interior_border;
|
||||||
|
&:outlined {
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
}
|
||||||
|
&:selected {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
border: 1px solid $selected_border;
|
||||||
|
color: $selected_fg_color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.thumbnail-box {
|
||||||
|
padding: 2px;
|
||||||
|
spacing: $spacing;
|
||||||
|
}
|
||||||
|
.thumbnail {
|
||||||
|
width: 256px;
|
||||||
|
}
|
||||||
|
.separator {
|
||||||
|
width: 1px;
|
||||||
|
background: $selected_bg_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;
|
||||||
|
&.vertical {
|
||||||
|
height: 1.5em;
|
||||||
|
}
|
||||||
|
&: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 $spacing;
|
||||||
|
spacing: $spacing;
|
||||||
|
.launcher {
|
||||||
|
background-color:rgba(0, 0, 0, 0.01);
|
||||||
|
}
|
||||||
|
&.vertical {
|
||||||
|
padding: $spacing 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.notification-applet-padding {
|
||||||
|
padding: .5em 1em;
|
||||||
|
}
|
||||||
|
.notification-applet-container {
|
||||||
|
max-height: 100px;
|
||||||
|
}
|
||||||
|
.systray {
|
||||||
|
spacing: $spacing;
|
||||||
|
}
|
||||||
|
.flashspot {
|
||||||
|
background-color: $selected_bg_color;
|
||||||
|
}
|
||||||
|
|
||||||
@@ -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;
|
||||||
|
}
|
||||||
@@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
home-modules/theme/theme_oomox/src/cinnamon/thumbnail.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
894
home-modules/theme/theme_oomox/src/gtk-2.0/gtkrc
Normal file
@@ -0,0 +1,894 @@
|
|||||||
|
# Oomox GTK Theme (Numix Fork)
|
||||||
|
|
||||||
|
gtk-color-scheme =
|
||||||
|
"base_color:#%TXT_BG%\nbg_color:#%BG%\ntooltip_bg_color:#%BG%\nselected_bg_color:#%SEL_BG%\ntext_color:#%TXT_FG%\nfg_color:#%FG%\ntooltip_fg_color:#%FG%\nselected_fg_color:#%SEL_FG%\nmenubar_bg_color:#%HDR_BG%\nmenubar_fg_color:#%HDR_FG%\ntoolbar_bg_color:#%BG%\ntoolbar_fg_color:#%FG%\nmenu_bg_color:#%HDR_BG%\nmenu_fg_color:#%HDR_FG%\npanel_bg_color:#%BG%\npanel_fg_color:#%FG%\nlink_color:#%TERMINAL_COLOR4%\nbtn_bg_color:#%BTN_BG%\nbtn_fg_color:#%BTN_FG%\ntitlebar_bg_color:#%HDR_BG%\ntitlebar_fg_color:#%HDR_FG%\nprimary_caret_color:#%CARET1_FG%\nsecondary_caret_color:#%CARET2_FG%\naccent_bg_color:#%ACCENT_BG%\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 = %CARET_SIZE%
|
||||||
|
|
||||||
|
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 = %ROUNDNESS% # 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 = %ROUNDNESS%
|
||||||
|
gradient_shades = { %GTK2_GRAD_TOP%, 1.0, 1.0, %GTK2_GRAD_BOTTOM% }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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 = %ROUNDNESS%
|
||||||
|
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 = %ROUNDNESS%
|
||||||
|
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 = %ROUNDNESS%
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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"
|
||||||
995
home-modules/theme/theme_oomox/src/gtk-2.0/gtkrc.hidpi
Normal file
@@ -0,0 +1,995 @@
|
|||||||
|
# Oomox GTK Theme (Numix Fork)
|
||||||
|
|
||||||
|
gtk-color-scheme =
|
||||||
|
"base_color:#%TXT_BG%\nbg_color:#%BG%\ntooltip_bg_color:#%BG%\nselected_bg_color:#%SEL_BG%\ntext_color:#%TXT_FG%\nfg_color:#%FG%\ntooltip_fg_color:#%FG%\nselected_fg_color:#%SEL_FG%\nmenubar_bg_color:#%HDR_BG%\nmenubar_fg_color:#%HDR_FG%\ntoolbar_bg_color:#%BG%\ntoolbar_fg_color:#%FG%\nmenu_bg_color:#%HDR_BG%\nmenu_fg_color:#%HDR_FG%\npanel_bg_color:#%BG%\npanel_fg_color:#%FG%\nlink_color:#%TERMINAL_COLOR4%\nbtn_bg_color:#%BTN_BG%\nbtn_fg_color:#%BTN_FG%\ntitlebar_bg_color:#%HDR_BG%\ntitlebar_fg_color:#%HDR_FG%\nprimary_caret_color:#%CARET1_FG%\nsecondary_caret_color:#%CARET2_FG%\naccent_bg_color:#%ACCENT_BG%\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 = %ROUNDNESS_GTK2_HIDPI%# 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 = %ROUNDNESS_GTK2_HIDPI%
|
||||||
|
gradient_shades = { %GTK2_GRAD_TOP%, 1.0, 1.0, %GTK2_GRAD_BOTTOM% }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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 = %ROUNDNESS_GTK2_HIDPI%
|
||||||
|
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 = %ROUNDNESS_GTK2_HIDPI%
|
||||||
|
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 = %ROUNDNESS_GTK2_HIDPI%
|
||||||
|
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 = %ROUNDNESS_GTK2_HIDPI%
|
||||||
|
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 = %ROUNDNESS_GTK2_HIDPI%.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 = %ROUNDNESS_GTK2_HIDPI%
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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 = %ROUNDNESS_GTK2_HIDPI%
|
||||||
|
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"
|
||||||
4456
home-modules/theme/theme_oomox/src/gtk-3.0/assets/all-assets.svg
Normal file
|
After Width: | Height: | Size: 154 KiB |
@@ -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
|
||||||
4
home-modules/theme/theme_oomox/src/gtk-3.0/assets/change_dpi.sh
Executable 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
|
||||||
@@ -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:#%TXT_BG%;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:#%BG%;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:#%FG%;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:#%FG%;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:#%ACCENT_BG%;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 |
@@ -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:#%BG%;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:#%BG%;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:#%FG%;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:#%FG%;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 |
@@ -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:#%BG%;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:#%BG%;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:#%FG%;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:#%FG%;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 |
@@ -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:#%TXT_BG%;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:#%BG%;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:#%FG%;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:#%ACCENT_BG%;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 |
@@ -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:#%TXT_BG%;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:#%BG%;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:#%FG%;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:#%ACCENT_BG%;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.2 KiB |
@@ -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:#%BG%;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:#%BG%;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:#%FG%;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:#%FG%;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 |
@@ -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:#%BG%;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:#%BG%;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:#%FG%;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:#%FG%;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 |
@@ -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:#%TXT_BG%;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:#%BG%;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:#%FG%;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:#%ACCENT_BG%;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.2 KiB |
@@ -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:#%TXT_BG%;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:#%BG%;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:#%FG%;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.0 KiB |
@@ -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:#%BG%;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:#%BG%;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:#%FG%;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.0 KiB |
@@ -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:#%BG%;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:#%BG%;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:#%FG%;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.0 KiB |
@@ -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:#%TXT_BG%;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:#%BG%;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:#%FG%;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.0 KiB |