Reset old config

master
mark 2021-08-01 07:24:26 -07:00
commit 7cc3903efe
144 changed files with 16466 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
conf.lua
*.note

78
README.md Normal file
View File

@ -0,0 +1,78 @@
# Awesomewm configuration
Core configuration for awesomewm.
The PACKAGES file contains information on dependencies and desktop setup
Rofi config in bin/rofi is set to use the papirus theme. Edit the configs there
to change it.
Copy conf-example.lua into conf.lua, then configure your system.
## Project structure
All directories are ``require``d from the root project dir.
Most directories contain an init.lua.
That file initializes the module, it is run when the module is required.
bin: various non-awesome scripts and configs
binds: keyboard and mouse binds
errors.lua: manages errors in rc.lua
clients:
Manages applications.
Awesome keybinds for applications are in clients/binds.
desktop:
Manages tags, wallpapers, and the bar (with its widgets).
theme:
Theming. Everything there compiles into a ton of awesome.beautiful.*
variables that are used throughout this project.
wrapper:
Scripts that provide an interface to system functions.
rc.lua:
The main script, axwesomewm only looks for this file.
Everything else in this project is pulled in by it.
## Dependencies
rofi
Launcher. Config is in bin/rofi
Fish shell
All scripts in bin/scripts are written for the fish shell.
upower, xbacklight
Used for battery and backlight management.
flameshot, scrot, xclip, tesseract
Scrot is used for quick screenshots. Script is bin/scripts/capture.
Tesseract is used for OCR screenshots. Make sure to install language packs!
(e.g. tesseract-data-eng, tesseract-data-rus)
It is also used in bin/scripts/capture.
Flameshot is used for regular screenshots.
pamixer
Used to control pulseaudio in wrapper/volume
sox
provides the play command used to play system sounds.
It may need some extra packages for certain file types (mp3).
See the documentation.
ibus
This configuration does not rely on ibus default keybinds. Instead, it uses
ibus cli commands (see wrapper.ibus) to make language switching work.
If you do not need multilanguage input, you may remove wrapper.ibus,
desktop.popups.language, and the language binds in binds.system.input.
redshift
Used to tint the screen.
MPC
Used in keybinds.

79
bin/configs/compton.conf Executable file
View File

@ -0,0 +1,79 @@
backend = "glx";
mark-wmwin-focused = true;
mark-ovredir-focused = true;
detect-rounded-corners = true;
detect-client-opacity = true;
refresh-rate = 0;
vsync = "none";
dbe = false;
paint-on-overlay = true;
focus-exclude = [
"class_g = 'Firefox Developer Edition'",
"class_g = 'Firefox-esr'"
];
detect-transient = true;
detect-client-leader = true;
invert-color-include = [ ];
glx-copy-from-front = false;
glx-swap-method = "undefined";
wintypes:
{
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; };
};
shadow = true;
no-dnd-shadow = true;
no-dock-shadow = false;
clear-shadow = true;
shadow-radius = 10;
shadow-offset-x = -7;
shadow-offset-y = -7;
shadow-opacity = 0.3;
shadow-exclude = [
#"!(class_g = 'kitty-noblur')"
];
fading = true;
fade-in-step=0.02;
fade-out-step=0.03;
fade-delta=5;
fade-exclude = [
"(!class_g = 'awesome') && (!class_g = 'Rofi')"
]
opacity = false
active-opacity = 1;
inactive-opacity = 1;
frame-opacity = 1;
opacity-rule = [
# Kitty already has a transparent background.
# 99% opacity to make text opaque
"99:class_g = 'kitty'"
];
## blur
blur-background = true;
blur-background-frame = false;
blur-background-fixed = false;
blur-kern = "3x3box";
blur-method = "kawase";
blur-strength = 16;
blur-background-exclude = [
"window_type = 'desktop'",
"name = 'awesome'",
"name = 'Zoom Meeting'",
#"(class_g = 'awesome') && !(window_type = 'normal')",
"class_g = 'kitty-noblur'"
];

81
bin/init.lua Executable file
View File

@ -0,0 +1,81 @@
dir = configuration_dir .. "bin/"
local script_dir = dir .. "scripts/"
return {
system = {
shutdown = function(confirm_prompt)
if (string.lower(confirm_prompt) == "y") or (string.lower(confirm_prompt) == "yes") then
awful.spawn("shutdown now", false)
elseif (string.lower(confirm_prompt) == "r") or (string.lower(confirm_prompt) == "reset") then
awful.spawn("shutdown -r now", false)
end
end
},
backlight = {
watch = function(timeout, callback, widget)
awful.widget.watch(script_dir .. "backlight get", timeout, callback, widget)
end,
get = function(callback)
awful.spawn.easy_async(script_dir .. "backlight get", callback)
end,
set = function(value)
awful.spawn(script_dir .. "backlight set " .. value, false)
end,
up = function()
awful.spawn(script_dir .. "backlight up", false)
end,
down = function()
awful.spawn(script_dir .. "backlight down", false)
end,
redshift = function(temp)
awful.spawn("redshift -O " .. tostring(temp), false)
end,
redshift_reset = function()
awful.spawn("redshift -x", false)
end,
},
battery = {
watch = function(timeout, callback, widget)
awful.widget.watch(script_dir .. "battery", timeout, callback, widget)
end,
status = function(callback)
awful.spawn.easy_async(script_dir .. "battery", callback)
end,
},
rofi = {
launcher = function()
awful.spawn("rofi -show drun -theme \"" .. dir .. "/rofi/launcher.rasi\"")
end
},
capture = function(source, target)
awful.spawn(script_dir .. "capture " .. source .. " " .. target, false)
end,
flameshot = {
gui = function()
awful.spawn("flameshot gui -p \"" .. conf.screenshot_dir .. "\"", false)
end
},
mpc = {
watch = function(command, timeout, callback, widget)
awful.widget.watch("mpc --host " .. conf.mpd_host .. " " .. command, timeout, callback, widget)
end,
command = function(command, callback)
awful.spawn.easy_async("mpc --host " .. conf.mpd_host .. " " .. command, callback)
end
}
}

155
bin/rofi/launcher.rasi Executable file
View File

@ -0,0 +1,155 @@
configuration {
font: "Inter Regular 10";
show-icons: true;
icon-theme: "Papirus";
drun-display-format: "{name}";
fullscreen: false;
threads: 0;
matching: "fuzzy";
scroll-method: 1;
disable-history: false;
fullscreen: false;
window-thumbnail: true;
}
* {
transparent: #00000000;
background: #000000FF;
foreground: #F2F2F2EE;
background-selected: #F2F2F245;
background-active: #F2F2F230;
background-white: #F2F2F211;
background-black: #00000066;
urgent: #E91E6366;
urgent-selected: #E91E6377;
}
window {
transparency: "real";
background-color: @background;
location: southwest;
anchor: southwest;
x-offset: 4px;
y-offset: -50px;
height: 500px;
width: 400px;
orientation: vertical;
border-radius: 5px;
}
prompt {
enabled: false;
}
button {
action: "ok";
str: " ";
font: "FantasqueSansMono Nerd Font 11";
expand: false;
text-color: @foreground;
background-color: @transparent;
vertical-align: 0.7;
horizontal-align: 0.5;
}
entry {
font: "Inter Regular 11";
background-color: @transparent;
text-color: @foreground;
expand: true;
vertical-align: 0.5;
horizontal-align: 0.5;
placeholder: "Search";
placeholder-color: @foreground;
blink: true;
}
case-indicator {
background-color: @transparent;
text-color: @foreground;
vertical-align: 0.5;
horizontal-align: 0.5;
}
entry-wrapper {
orientation: horizontal;
vertical-align: 0.5;
spacing: 4px;
background-color: @transparent;
children: [ button, entry, case-indicator ];
}
inputbar {
background-color: @background-white;
text-color: @foreground;
expand: false;
border-radius: 24px;
margin: 0px 0px 0px 0px;
padding: 10px 10px 10px 10px;
position: north;
children: [ entry-wrapper ];
}
listview {
background-color: @transparent;
columns: 1;
spacing: 5px;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-black;
children: [listview, inputbar ];
spacing: 25px;
padding: 40px 25px 25px 25px;
}
element {
background-color: @transparent;
text-color: @foreground;
orientation: horizontal;
border-radius: 6px;
padding: 5px 10px 5px 10px;
}
element-icon {
size: 36px;
border: 0;
}
element-text {
expand: true;
horizontal-align: 0;
vertical-align: 0.5;
margin: 0 10px 0 10px;
}
element normal.urgent,
element alternate.urgent {
background-color: @urgent;
text-color: @foreground;
border-radius: 9px;
}
element normal.active,
element alternate.active {
background-color: @background-active;
text-color: @foreground;
}
element selected {
background-color: @background-selected;
text-color: @foreground;
}
element selected.urgent {
background-color: @urgent-selected;
text-color: @foreground;
}
element selected.active {
background-color: @background-active;
color: @foreground-selected;
}

37
bin/scripts/backlight Executable file
View File

@ -0,0 +1,37 @@
#!/usr/bin/fish
#
# Usage:
# backlight get
# backlight set [value]
# backlight max
#
# Returns:
# Set - nothing
# Get, max - Number between 0 and 100 (eg: 0, 25.445283, 100)
#
function backlight
switch $argv[1]
case "get"
xbacklight -get
case "max"
echo 100
case "set"
xbacklight -set $argv[2]
case "up"
xbacklight -inc 10
case "down"
xbacklight -dec 10
case "*"
echo "Unknown function \"$argv[1]\""
echo ""
echo "Usage:"
echo " backlight get"
echo " backlight set [value]"
echo " backlight max"
return 0
end
return 1
end
backlight $argv

8
bin/scripts/battery Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/fish
# returns battery percentage and status
# 45%, discharging
# second parameter returns "fully" when fully charged. Since awesome only checks for "discharging," fixing that isn't necessary.
echo \
(upower --show-info /org/freedesktop/UPower/devices/battery_BAT1 | grep percentage | grep -Po "(\d\d?\d?)%"), \
(upower --show-info /org/freedesktop/UPower/devices/battery_BAT1 | grep state | grep -Po "(?<=state:)\s*(\w*)" | xargs) \

74
bin/scripts/capture Executable file
View File

@ -0,0 +1,74 @@
#!/usr/bin/fish
#
# Screenshot wrapper
#
# Take a screenshot of a
# region, window, or screen
# and
# save it to $dest
# copy it to the clipboard
# pipe it through tesseract and xclip the result
function capture
# Screenshot save location
set dest $HOME/Screenshots/
#set tmp_file (mktemp --tmpdir "scrot-tmp-XXX.png")
set tmp_file "/tmp/scrot-tmp.png"
# Capture the desired portion of the screen
switch $argv[1]
case window
scrot --overwrite --silent --focused $tmp_file
case screen
scrot --overwrite --silent $tmp_file
case region
scrot --overwrite --silent --select --freeze --line style=dash,width=2 $tmp_file
case "*"
echo "Unknown source \"$argv[1]\""
echo ""
echo "Usage: capture [source] [target]"
echo " Valid sources: window, screen, region"
echo " Valid targets: save, copy, ocr"
return 0
end
# Output to the desired location
switch $argv[2]
case save
set fname (md5sum $tmp_file | cut -c 1-32)
mv $tmp_file "$dest$fname.png"
case copy
# Don't use the mktmp file here, since we can't clean
# it away immediately. Use the fixed /tmp/scrot-clip insead.
# (Only applicable when a mktemp file is being used)
#rm $tmp_file
#set tmp_file /tmp/scrot-clip.png
xclip -i -selection clipboard -t "image/png" $tmp_file
case ocr
# Recognize text
set ocr (tesseract --dpi 96 -l eng $tmp_file stdout)
# Trim whitespace and copy to clipboard
echo $ocr | sed -e "s/^[ \t]*//" | xclip -i -rmlastnl -selection clipboard
rm $tmp_file
case "*"
echo "Unknown target \"$argv[2]\""
echo ""
echo "Usage: capture [source] [target]"
echo " Valid sources: window, screen, region"
echo " Valid targets: save, copy, ocr"
return 0
end
return 1
end
# Awesomewm refuses to execute this without a sleep.
sleep 0.1
capture $argv

19
binds/desktop/awesome.lua Executable file
View File

@ -0,0 +1,19 @@
local hotkeys = require("awful.hotkeys_popup")
return gears.table.join(
awful.key( {"Mod4"}, "s",
hotkeys.show_help,
{
description = "Show help",
group = "Desktop"
}
),
awful.key( {"Mod4", "Control", "Shift"}, "r",
awesome.restart,
{
description = "Restart awesome",
group = "Desktop"
}
)
)

76
binds/desktop/launcher.lua Executable file
View File

@ -0,0 +1,76 @@
return gears.table.join(
awful.key( {"Mod4"}, "r",
function ()
awful.screen.focused().mypromptbox:run()
end,
{
description = "Run prompt",
group = "Launcher"
}
),
awful.key( {"Mod4"}, "x",
function ()
awful.screen.focused().mypromptbox:run()
end,
{
description = "Run prompt",
group = "Launcher"
}
),
awful.key( {"Mod4"}, "Tab",
function ()
bin.rofi.launcher()
end,
{
description = "Open Launcher",
group = "Launcher"
}
),
awful.key( {"Mod4"}, "Return",
function ()
awful.spawn(terminal)
end,
{
description = "Open a terminal",
group = "Launcher"
}
),
awful.key( {"Mod4"}, "]",
function ()
awful.spawn(terminal .. " ranger /home/mark")
end,
{
description = "Launch ranger in kitty",
group = "Launcher"
}
),
awful.key( {"Mod4", "Control"}, "Return",
function ()
awful.spawn("kitty --class \"kitty-noblur\" --override background_opacity=0.5 --override hide_window_decorations=yes")
end,
{
description = "Open a floating kitty terminal",
group = "Launcher"
}
),
awful.key( {"Mod4"}, "\\",
function ()
awful.spawn(conf.browser)
end,
{
description = "Open a browser tab",
group = "Launcher"
}
)
)

24
binds/desktop/screenshot.lua Executable file
View File

@ -0,0 +1,24 @@
return gears.table.join(
awful.key( {"Control"}, "Print",
function ()
bin.capture("region", "ocr")
end,
{
description = "OCR a region to the clipboard",
group = "Desktop"
}
),
awful.key( {}, "Print",
function ()
bin.flameshot.gui()
end,
{
description = "Take a screenshot",
group = "Desktop"
}
)
)

19
binds/init.lua Executable file
View File

@ -0,0 +1,19 @@
return {
keys = gears.table.join(
require("binds.system.backlight"),
require("binds.system.mpd"),
require("binds.system.volume"),
require("binds.system.system"),
require("binds.system.input"),
require("binds.window.client"),
require("binds.window.layout"),
require("binds.window.tags"),
require("binds.desktop.awesome"),
require("binds.desktop.launcher"),
require("binds.desktop.screenshot")
),
buttons = {}
}

56
binds/system/backlight.lua Executable file
View File

@ -0,0 +1,56 @@
return gears.table.join(
awful.key( {}, "XF86MonBrightnessUp",
function ()
wrapper.backlight.up()
end,
{
description = "Raise brightness",
group = "System"
}
),
awful.key( {}, "XF86MonBrightnessDown",
function ()
wrapper.backlight.down()
end,
{
description = "Lower brightness",
group = "System"
}
),
awful.key( { "Mod4" }, "o",
function ()
bin.backlight.redshift(5600)
end,
{
description = "Default redshift",
group = "System"
}
),
awful.key( { "Mod4", "Shift" }, "o",
function ()
bin.backlight.redshift_reset()
end,
{
description = "Reset redshift",
group = "System"
}
),
awful.key( { "Mod4", "Shift", "Control" }, "o",
function ()
bin.backlight.redshift_reset()
awful.prompt.run {
prompt = "<b>Color temperature: </b>",
textbox = awful.screen.focused().mypromptbox.widget,
exe_callback = bin.backlight.redshift
}
end,
{
description = "Set redshift",
group = "System"
}
)
)

11
binds/system/input.lua Normal file
View File

@ -0,0 +1,11 @@
return gears.table.join(
awful.key( {"Mod4"}, "space",
function()
desktop.popup.language.next()
end,
{
description = "Change input language",
group = "System"
}
)
)

51
binds/system/mpd.lua Executable file
View File

@ -0,0 +1,51 @@
return gears.table.join(
awful.key( {}, "XF86AudioPrev",
function ()
bin.mpc.command("prev")
end,
{
description = "Previous track",
group = "MPD"
}
),
awful.key( {}, "XF86AudioPlay",
function ()
bin.mpc.command("toggle")
end,
{
description = "Play/Pause",
group = "MPD"
}
),
awful.key( {}, "XF86AudioNext",
function ()
bin.mpc.command("next")
end,
{
description = "Next track",
group = "MPD"
}
),
awful.key( {"Mod4"}, "XF86AudioRaiseVolume",
function ()
bin.mpc.command("vol +5")
end,
{
description = "Volume up",
group = "MPD"
}
),
awful.key( {"Mod4"}, "XF86AudioLowerVolume",
function ()
bin.mpc.command("vol -5")
end,
{
description = "Volume down",
group = "MPD"
}
)
)

15
binds/system/system.lua Normal file
View File

@ -0,0 +1,15 @@
return gears.table.join(
awful.key( {"Mod4"}, "p",
function ()
awful.prompt.run {
prompt = "<b>Really shutdown? (y/n/r) </b>",
textbox = awful.screen.focused().mypromptbox.widget,
exe_callback = bin.system.shutdown
}
end,
{
description = "Shutdown",
group = "System"
}
)
)

31
binds/system/volume.lua Executable file
View File

@ -0,0 +1,31 @@
return gears.table.join(
awful.key( {}, "XF86AudioRaiseVolume",
function ()
wrapper.volume.up()
end,
{
description = "Volume up",
group = "System"
}
),
awful.key( {}, "XF86AudioLowerVolume",
function ()
wrapper.volume.down()
end,
{
description = "Volume down",
group = "System"
}
),
awful.key( {}, "XF86AudioMute",
function ()
wrapper.volume.togglemute()
end,
{
description = "Mute",
group = "System"
}
)
)

83
binds/unused.lua Executable file
View File

@ -0,0 +1,83 @@
--[[
awful.key({"Mod4", "Control"}, "j",
function ()
awful.screen.focus_relative( 1)
end,
{
description = "focus the next screen",
group = "screen"
}
),
awful.key({"Mod4", "Control"}, "k",
function ()
awful.screen.focus_relative(-1)
end,
{
description = "focus the previous screen",
group = "screen"
}
)
-- Bind all key numbers to tags.
-- Be careful: we use keycodes to make it work on any keyboard layout.
-- This should map on the top row of your keyboard, usually 1 to 9.
for i = 1, 9 do
globalkeys = gears.table.join(globalkeys,
-- View tag only.
awful.key({ "Mod4" }, "#" .. i + 9,
function ()
local screen = awful.screen.focused()
local tag = screen.tags[i]
if tag then
tag:view_only()
end
end,
{description = "view tag #"..i, group = "tag"}),
-- Toggle tag display.
awful.key({ "Mod4", "Control" }, "#" .. i + 9,
function ()
local screen = awful.screen.focused()
local tag = screen.tags[i]
if tag then
awful.tag.viewtoggle(tag)
end
end,
{description = "toggle tag #" .. i, group = "tag"}),
-- Move client to tag.
awful.key({ "Mod4", "Shift" }, "#" .. i + 9,
function ()
if client.focus then
local tag = client.focus.screen.tags[i]
if tag then
client.focus:move_to_tag(tag)
end
end
end,
{description = "move focused client to tag #"..i, group = "tag"}),
-- Toggle tag on focused client.
awful.key({ "Mod4", "Control", "Shift" }, "#" .. i + 9,
function ()
if client.focus then
local tag = client.focus.screen.tags[i]
if tag then
client.focus:toggle_tag(tag)
end
end
end,
{description = "toggle focused client on tag #" .. i, group = "tag"})
)
end
--]]

78
binds/window/client.lua Executable file
View File

@ -0,0 +1,78 @@
return gears.table.join(
awful.key( {"Mod4"}, "Left",
function ()
awful.client.focus.byidx( 1)
end,
{
description = "Focus next",
group = "Client"
}
),
awful.key( {"Mod4"}, "Right",
function ()
awful.client.focus.byidx(-1)
end,
{
description = "Focus previous",
group = "Client"
}
),
awful.key( {"Mod4", "Shift"}, "j",
function ()
awful.client.swap.byidx(1)
end,
{
description = "Swap with next window",
group = "Client"
}
),
awful.key( {"Mod4", "Shift"}, "k",
function ()
awful.client.swap.byidx(-1)
end,
{
description = "Swap with previous window",
group = "Client"
}
),
awful.key( {"Mod4"}, "u",
awful.client.urgent.jumpto,
{
description = "Jump to urgent window",
group = "Client"
}
),
awful.key( {"Mod4"}, "b",
function ()
awful.client.focus.history.previous()
if client.focus then
client.focus:raise()
end
end,
{
description = "Go back",
group = "Client"
}
),
awful.key( {"Mod4", "Control"}, "n",
function ()
local c = awful.client.restore()
-- Focus restored client
if c then
c:emit_signal(
"request::activate", "key.unminimize", {raise = true}
)
end
end,
{
description = "Restore minimized",
group = "Client"
}
)
)

81
binds/window/layout.lua Executable file
View File

@ -0,0 +1,81 @@
return gears.table.join(
awful.key( {"Mod4"}, "j",
function ()
awful.tag.incmwfact( 0.05)
end,
{
description = "increase master width factor",
group = "Layout"
}
),
awful.key({"Mod4"}, "h",
function ()
awful.tag.incmwfact(-0.05)
end,
{
description = "decrease master width factor",
group = "Layout"
}
),
awful.key( {"Mod4", "Shift"}, "h",
function ()
awful.tag.incnmaster(1, nil, true)
end,
{
description = "increase the number of master clients",
group = "Layout"
}
),
awful.key( {"Mod4", "Shift"}, "l",
function ()
awful.tag.incnmaster(-1, nil, true)
end,
{
description = "decrease the number of master clients",
group = "Layout"
}
),
awful.key( {"Mod4", "Control"}, "h",
function ()
awful.tag.incncol(1, nil, true)
end,
{
description = "increase the number of columns",
group = "Layout"
}
),
awful.key( {"Mod4", "Control"}, "l",
function ()
awful.tag.incncol(-1, nil, true)
end,
{
description = "decrease the number of columns",
group = "Layout"
}
),
awful.key( {"Mod4"}, "l",
function ()
layoutmanager:next()
end,
{
description = "select layouts",
group = "Layout"
}
),
awful.key( {"Mod4"}, "k",
function ()
layoutmanager:next_alt()
end,
{
description = "cycle alt layouts",
group = "Layout"
}
)
)

41
binds/window/tags.lua Executable file
View File

@ -0,0 +1,41 @@
return gears.table.join(
awful.key( {"Mod1", "Control"}, "Left",
function ()
awful.screen.focused().tagger:left()
end,
{
description = "Left",
group = "Tags"
}
),
awful.key( {"Mod1", "Control"}, "Right",
function ()
awful.screen.focused().tagger:right()
end,
{
description = "Right",
group = "Tags"
}
),
awful.key( {"Mod1", "Control"}, "Up",
function ()
awful.screen.focused().tagger:up()
end,
{
description = "Up",
group = "Tags"
}
),
awful.key( {"Mod1", "Control"}, "Down",
function ()
awful.screen.focused().tagger:down()
end,
{
description = "Down",
group = "Tags"
}
)
)

31
clients/binds/buttons.lua Executable file
View File

@ -0,0 +1,31 @@
-- Make sure clients and titlebars don't share bids. Both will trigger,
-- and that will cause problems. See titlebar.lua
return gears.table.join(
awful.button( {}, 1,
function(client)
client:emit_signal("request::activate", "mouse_click", {raise = true})
end
),
awful.button( {"Mod4"}, 1,
function(client)
client:emit_signal("request::activate", "mouse_click", {raise = true})
awful.mouse.client.move(client)
end
),
awful.button( {"Mod4", "Control"}, 1,
function(client)
client:emit_signal("request::activate", "mouse_click", {raise = true})
awful.mouse.client.resize(client)
end
),
awful.button( {"Mod4"}, 3,
function(client)
client:emit_signal("request::activate", "mouse_click", {raise = true})
awful.mouse.client.resize(client)
end
)
)

129
clients/binds/keys.lua Executable file
View File

@ -0,0 +1,129 @@
return gears.table.join(
awful.key( {"Mod4", "Control"}, "Left",
function (c)
c.screen.tagger:move_client(c, "left")
end,
{
description = "move client left",
group = "client"
}
),
awful.key( {"Mod4", "Control"}, "Right",
function (c)
c.screen.tagger:move_client(c, "right")
end,
{
description = "move client right",
group = "client"
}
),
awful.key( {"Mod4", "Control"}, "Down",
function (c)
c.screen.tagger:move_client(c, "down")
end,
{
description = "move client down",
group = "client"
}
),
awful.key( {"Mod4", "Control"}, "Up",
function (c)
c.screen.tagger:move_client(c, "up")
end,
{
description = "move client up",
group = "client"
}
),
awful.key( {"Mod4"}, "f",
function (c)
c.fullscreen = not c.fullscreen
c:raise()
end,
{
description = "toggle fullscreen",
group = "client"
}
),
awful.key( {"Mod4", "Shift"}, "c",
function (c)
c:kill()
end,
{
description = "close",
group = "client"
}
),
awful.key( {"Mod4", "Control"}, "space",
awful.client.floating.toggle,
{
description = "toggle floating",
group = "client"
}
),
awful.key( {"Mod4", "Control"}, "Return",
function (c)
c:swap(awful.client.getmaster())
end,
{
description = "move to master",
group = "client"
}
),
awful.key( {"Mod4"}, "t",
function (c)
c.ontop = not c.ontop
end,
{
description = "toggle keep on top",
group = "client"
}
),
awful.key( {"Mod4"}, "n",
function (c)
c.minimized = true
end,
{
description = "minimize",
group = "client"
}
),
awful.key( {"Mod4"}, "m",
function (c)
c.maximized = not c.maximized
c:raise()
end,
{
description = "(un)maximize", group = "client"
}
),
awful.key( {"Mod4", "Control"}, "m",
function (c)
c.maximized_vertical = not c.maximized_vertical
c:raise()
end,
{
description = "(un)maximize vertically",
group = "client"
}
),
awful.key( {"Mod4", "Shift"}, "m",
function (c)
c.maximized_horizontal = not c.maximized_horizontal
c:raise()
end,
{
description = "(un)maximize horizontally",
group = "client"
}
)
)

20
clients/binds/titlebar.lua Executable file
View File

@ -0,0 +1,20 @@
-- Make sure clients and titlebars don't share bids. Both will trigger,
-- and that will cause problems. See buttons.lua
return function(client)
return gears.table.join(
awful.button( {}, 1,
function()
client:emit_signal("request::activate", "titlebar", {raise = true})
awful.mouse.client.move(client)
end
),
awful.button( {}, 3,
function()
client:emit_signal("request::activate", "titlebar", {raise = true})
awful.mouse.client.resize(client)
end
)
)
end

24
clients/render.lua Executable file
View File

@ -0,0 +1,24 @@
local render = {}
render.renderClient = function(client)
if not beautiful.rounded_corners then
return
end
if (not beautiful.disable_rounded_corners) and (
client.first_tag.layout == awful.layout.suit.floating or
client.floating
) then
client.shape = function(cr, w, h)
gears.shape.rounded_rect(cr, w, h, beautiful.corner_radius, beautiful.corner_radius)
end
else
client.shape = function(cr, w, h)
gears.shape.rectangle(cr, w, h)
end
end
end
return render

78
clients/rules.lua Executable file
View File

@ -0,0 +1,78 @@
local client_buttons = require("clients.binds.buttons")
local client_keys = require("clients.binds.keys")
-- Use xprop to get client properties.
return {
-- All clients will match this rule.
{
rule = {},
properties = {
border_width = beautiful.border_width,
border_color = beautiful.border_normal,
focus = awful.client.focus.filter,
raise = true,
placement = awful.placement.no_overlap + awful.placement.no_offscreen,
screen = awful.screen.preferred,
buttons = client_buttons,
keys = client_keys,
}
},
-- Designate floating clients.
{
rule_any = {
class = {
"feh",
"Tor Browser", -- Needs a fixed window size to avoid fingerprinting by screen size.
"zoom",
"flameshot"
},
role = {
"AlarmWindow", -- Thunderbird's calendar.
"ConfigManager", -- Thunderbird's about:config.
"pop-up", "Popup"
}
},
properties = { floating = true }
},
-- Keep passwordsafe on top
{
rule_any = { class={"pwsafe","Pwsafe"} },
properties = {
floating = true,
ontop = true
}
},
-- Custom rules for a floating, transparent terminal
{
rule = { class="kitty-noblur" },
properties = {
floating = true,
ontop = true,
sticky = true,
border_color = beautiful.titlebar_fg_normal,
border_width = 0
}
},
-- Set Firefox to always map on the tag named "2" on screen 1.
--[[
{
rule = { class="Firefox" },
properties = {
screen = 1,
tag = "2"
}
},
--]]
}

55
clients/signals.lua Executable file
View File

@ -0,0 +1,55 @@
-- Signal function to execute when a new client appears.
-- Run in rc.lua
local titlebar = require("clients.titlebar")
local render = require("clients.render")
-- Add a titlebar
client.connect_signal("request::titlebars", titlebar.add)
-- Update titlebars when a screen is arranged
screen.connect_signal("arrange",
function(screen)
for _, client in pairs(screen.clients) do
titlebar.update(client)
render.renderClient(client)
end
end
)
client.connect_signal("manage",
function (client)
-- Update titlebar status
titlebar.update(client)
render.renderClient(client)
-- Set the windows at the slave,
-- i.e. put it at the end of others instead of setting it master.
-- if not awesome.startup then awful.client.setslave(c) end
-- Prevent clients from being unreachable after screen count changes.
if awesome.startup and not (
client.size_hints.user_position or client.size_hints.program_position
) then
awful.placement.no_offscreen(client)
end
end
)
--[[ Enable sloppy focus, so that focus follows mouse.
client.connect_signal("mouse::enter",
function(c)
c:emit_signal(
"request::activate",
"mouse_enter",
{
raise = true
}
)
end
)
]]--
client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)

72
clients/titlebar.lua Executable file
View File

@ -0,0 +1,72 @@
-- Per-client titlebar setup
-- Required in rc.lua
local titlebar = {}
-- bar_buttons is a function. Whenever a title bar is created, its button binds
-- must be specific to the client it's attached to!
local bar_buttons = require("clients.binds.titlebar")
titlebar.add = function(client)
local bar = awful.titlebar(client, {
position = "left",
size = beautiful.dpi(25)
})
bar : setup {
-- Top segment
{
{
--awful.titlebar.widget.iconwidget(client),
awful.titlebar.widget.closebutton(client),
awful.titlebar.widget.minimizebutton(client),
awful.titlebar.widget.maximizedbutton(client),
spacing = beautiful.titlebar_spacing,
layout = wibox.layout.fixed.vertical
},
margins = beautiful.titlebar_margins,
widget = wibox.container.margin
},
-- Middle segment
{
--[[{} Title
align = "center",
widget = awful.titlebar.widget.titlewidget(client)
},]]
buttons = bar_buttons(client),
layout = wibox.layout.flex.vertical
},
-- Bottom segment
{
{
awful.titlebar.widget.floatingbutton(client),
awful.titlebar.widget.stickybutton(client),
awful.titlebar.widget.ontopbutton(client),
spacing = beautiful.titlebar_spacing,
layout = wibox.layout.fixed.vertical
},
margins = beautiful.titlebar_margins,
widget = wibox.container.margin
},
layout = wibox.layout.align.vertical
}
end
titlebar.update = function(client)
if (
(client.first_tag.layout == awful.layout.suit.floating or client.floating) and
--not (client.maximized) and
not (client.requests_no_titlebar)
) then
awful.titlebar.show(client, "left")
else
awful.titlebar.hide(client, "left")
end
end
return titlebar

156
conf-example.lua Executable file
View File

@ -0,0 +1,156 @@
-- Per-machine config file
-- Make a copy of this file named "conf.lua"
-- and set options there.
local conf = {}
conf.screenshot_dir = "screenshot_target_dir"
-- See bar.shortcuts
conf.app_icon_dir = "theme_icon_dir"
-- Mount root dir for system mount keybind.
-- Must end with a /.
conf.user_mount_root = "user_mount_path"
-- Should tag indicators be updated continuously?
-- Once every two seconds. The timer is in desktop.init
conf.continuous_tag_updates = true
-- Wallpaper configuration
-- Wallpapers are managed by the desktop module.
-- Static walls will be set in desktop/init.lua; dynamic, time-based
-- walls will be managed by desktop/wallpaper.lua
--
-- Static: a path to an image file
conf.wallpaper = "path-to-wallpaper.png.png"
--
-- Dynamic: a table of files and times
-- {file = "path", start_time = {hour, minute}}
--[[
conf.wallpaper = {
{ file = "morning-file.png", start_time = {04, 00} },
{ file = "noon-file.png", start_time = {11, 00} },
{ file = "night-file.png", start_time = {19, 00} },
}
]]--
-- Enable/disable the battery and backlight control and widgets
conf.battery_enabled = false
conf.backlight_enabled = false
-- The position of the bar on each screen
conf.bar_position = "bottom"
-- Bar size in dpi
conf.bar_height = 44
-- Size of bar widget margins
conf.bar_margin = 3
-- A list of shortcuts in the bar.
--[[ defined as follows:
conf.bar_shortcuts = {
{
"command-to-run",
"icon-file" (relative to conf.app_icon_dir)
},
}
]]--
conf.bar_shortcuts = {}
-- Enable/Disable the MPC widget
conf.mpc_enabled = true
-- MPC server. Usually localhost.
-- If your MPC server has a password, use the following format: "passwd@host"
conf.mpd_host = "localhost"
-- Fixed width of the mpc widget
conf.mpc_width = 250
-- Preferred terminal.
conf.terminal = "kitty"
-- Preferred browser.
conf.browser = "firefox-developer-edition --new-tab"
-- The pulse sink volume widgets and keybinds should use.
-- To use the default, keep this value an empty string.
-- Applies the --sink option to pamixer in wrapper.volume
conf.pamixer_sink = ""
-- Table of layouts.
-- This is not handled by the regular awesomewm facility.
-- It's handled by layoutmanager, to add extra features.
--
-- This table is a table of tables.
-- (see the example)
-- the tables it contains are groups, switched through using the main
-- layout keybind.
--
-- groups contain one or more layouts. The first layout is selected by default,
-- and is used whenever that group is seleced.
-- Likewise, the first group is the default, and is applied to all tags at the start.
conf.layouts = {
{
awful.layout.suit.tile.left,
awful.layout.suit.tile,
},
{
awful.layout.suit.fair,
awful.layout.suit.fair.horizontal,
},
{
awful.layout.suit.floating,
}
--awful.layout.suit.tile.bottom,
--awful.layout.suit.tile.top,
--awful.layout.suit.spiral,
--awful.layout.suit.spiral.dwindle,
--awful.layout.suit.max,
--awful.layout.suit.max.fullscreen,
--awful.layout.suit.magnifier,
--awful.layout.suit.corner.nw,
--awful.layout.suit.corner.ne,
--awful.layout.suit.corner.sw,
--awful.layout.suit.corner.se,
}
-- Order matters!
-- The first entry will be activated at startup.
-- Use ibus engine to get the current engine name.
-- DUPLICATE IBUS_ENGINE VALUES WILL BREAK THE SWITCHER!
--
-- Some overlay layours require a switch to en:us first.
-- For example, switching from russian (xkb remap) to pinyin (ibus overlay on en:us)
-- will not work.
--
conf.ibus_language_list = {
{
title = "English",
indicator_code = "en",
ibus_engine = "xkb:us::eng",
},
{
title = "Russian",
indicator_code = "ru",
ibus_engine = "xkb:ru::rus"
},
{
title = "Mathwriter",
indicator_code = "∫x",
ibus_engine = "table:mathwriter-ibus",
requires_engine = "xkb:us::eng"
}
}
return conf

232
desktop/init.lua Executable file
View File

@ -0,0 +1,232 @@
local desktop = {
Tagger = require("desktop.tagger"),
popup = {
language = require("desktop.popups.language")
},
widgets = {
tasklist = require("desktop.widgets.tasklist"),
textclock = require("desktop.widgets.textclock"),
layoutbox = require("desktop.widgets.layoutbox"),
keymap = require("desktop.widgets.keymap"),
volume = require("desktop.widgets.volume"),
tagindicator = require("desktop.widgets.tagindicator"),
launcher = require("desktop.widgets.launcher"),
shortcut = require("desktop.widgets.shortcut"),
mdadm = require("desktop.widgets.mdadm"),
space = function(size)
return wibox.widget {
{
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(size)
},
layout = wibox.container.background,
}
end,
separator = function(size, margin_h, margin_v)
return wibox.widget {
{
widget = wibox.widget.separator,
color = "#FFFFFF55",
forced_width = beautiful.dpi(size),
thickness = beautiful.dpi(size)
},
layout = wibox.container.margin,
top = beautiful.dpi(margin_v),
bottom = beautiful.dpi(margin_v),
left = beautiful.dpi(margin_h),
right = beautiful.dpi(margin_h)
}
end
}
}
-- Load conditional modules
if conf.backlight_enabled then
desktop.widgets.backlight = require("desktop.widgets.backlight")
end
if conf.battery_enabled then
desktop.widgets.battery = require("desktop.widgets.battery")
end
if conf.mpc_enabled then
desktop.widgets.mpc = require("desktop.widgets.mpc")
end
-- If timed wallpaper is enabled, load timed manager
if (type(beautiful.wallpaper) == "table") then
desktop.wallpaper = require("desktop.wallpaper")
screen.connect_signal("property::geometry", desktop.wallpaper.update)
desktop.wallpaper.update()
desktop.wallpaper.start()
else
-- Otherwise, set static wallpaper on each screen
-- We loop over screens to prevent the wallpaper from being stretched over
-- all displays. If, for some reason, you want that to happen, use a single
-- call of "gears.wallpaper.maximized(beautiful.wallpaper)" instead of
-- this loop.
for s in screen do
gears.wallpaper.maximized(beautiful.wallpaper, s)
end
end
-- Set a timer that will update the tag indicators of all screens.
-- Even if we do not want continuous updates, we still need a timer:
-- there must be a significant delay (1ish second) before awesome prepares
-- all clients
desktop.screen_timer = gears.timer {
timeout = 2,
call_now = false,
autostart = true,
single_shot = not conf.continuous_tag_updates,
callback = function()
for s in screen do
s.tagger:update_widget()
end
end
}
-- Prepare each screen
awful.screen.connect_for_each_screen(
function(s)
-- s: the screen this function is being called for
-- Create tag table
s.tagger = desktop.Tagger:new(s)
desktop.widgets.tagindicator(s)
-- Create a promptbox for each s
s.mypromptbox = awful.widget.prompt()
-- Create the bar
s.bar = awful.wibar({
position = conf.bar_position,
screen = s,
--bg = "#00000000",
bg = beautiful.color.bar.color,
border_width = 0,
height = beautiful.dpi(conf.bar_height),
type = "desktop"
})
s.systray = wibox.widget.systray()
s.systraysep = desktop.widgets.separator(2, 5, 3)
s.bar:connect_signal("button::press",
function(_, _, _, button, mods)
-- Middle-click
if (button == 2) then
s.systray.visible = not s.systray.visible
s.systraysep.visible = s.systray.visible
end
end)
-- Create shortcut list from config value
if (#conf.bar_shortcuts > 0) then
s.shortcuts = {
layout = wibox.layout.fixed.horizontal,
desktop.widgets.separator(2, 5, 3),
desktop.widgets.space(6)
}
for k, v in pairs(conf.bar_shortcuts) do
s.shortcuts[#s.shortcuts + 1] = desktop.widgets.shortcut:new(v[1], v[2])
end
end
-- Assemble left bar widgets
rightside = {
layout = wibox.layout.fixed.horizontal,
spacing = 0
}
rightside = gears.table.join(rightside, {
desktop.widgets.space(10),
s.systraysep,
desktop.widgets.space(10),
{
s.systray,
top = beautiful.dpi(3),
bottom = beautiful.dpi(3),
left = 0, right = 0,
layout = wibox.container.margin,
},
desktop.widgets.separator(2, 5, 3),
desktop.widgets.space(10),
})
if (conf.mpc_enabled) then
rightside = gears.table.join(rightside, {
desktop.widgets.mpc,
desktop.widgets.space(5),
desktop.widgets.separator(2, 5, 3),
desktop.widgets.space(15),
})
end
rightside = gears.table.join(rightside, {
desktop.widgets.textclock,
desktop.widgets.space(8),
desktop.widgets.battery,
desktop.widgets.backlight,
desktop.widgets.volume,
desktop.widgets.space(8),
desktop.widgets.keymap,
desktop.widgets.space(8),
desktop.widgets.mdadm,
desktop.widgets.space(8)
})
s.bar:setup {
layout = wibox.container.margin,
margins = beautiful.dpi(conf.bar_margin),
{
layout = wibox.layout.align.horizontal,
{
layout = wibox.layout.fixed.horizontal,
desktop.widgets.space(8),
desktop.widgets.launcher,
desktop.widgets.space(18),
s.tagindicator,
desktop.widgets.layoutbox(s),
s.shortcuts,
desktop.widgets.space(6),
desktop.widgets.separator(2, 5, 3),
desktop.widgets.space(18),
desktop.widgets.tasklist(s),
},
s.mypromptbox,
rightside
}
}
end
)
return desktop

110
desktop/popups/language.lua Normal file
View File

@ -0,0 +1,110 @@
local language = {}
language.language_list = conf.ibus_language_list
language.widget = wibox.widget {
homogeneous = false,
vertical_homogeneous = true,
horizontal_homogeneous = false,
vertical_spacing = beautiful.dpi(10),
horizontal_spacing = beautiful.dpi(0),
min_cols_size = beautiful.dpi(20),
min_rows_size = beautiful.dpi(20),
layout = wibox.layout.grid
}
for k, l in pairs(language.language_list) do
l["widget_checkbox"] = wibox.widget {
checked = false,
border_width = beautiful.dpi(3),
paddings = beautiful.dpi(4),
margins = beautiful.dpi(5),
color = beautiful.color.bar.active,
border_color = beautiful.color.bar.inactive,
widget = wibox.widget.checkbox,
forced_height = beautiful.dpi(30),
forced_width = beautiful.dpi(30),
shape = gears.shape.circle,
}
language.widget:add_widget_at(l["widget_checkbox"], k, 1, 1, 1)
language.widget:add_widget_at(wibox.widget {
markup = "<b>" .. l["title"] .. "</b>",
align = "left",
valign = "center",
font = "Comfortaa 23",
widget = wibox.widget.textbox
}, k, 2, 0, 1)
end
language.next = function()
if (language.popup.visible) then
wrapper.ibus.next(function()
language.update_checks()
end)
else
language.update_checks()
end
language.show_popup()
end
language.update_checks = function()
for _, l in pairs(language.language_list) do
l["widget_checkbox"].checked = (wrapper.ibus.current_engine == l["ibus_engine"])
end
end
language.show_popup = function()
language.popup.screen = awful.screen.focused()
language.popup.visible = true
language.popup_timer:again()
end
language.popup = awful.popup {
widget = {
{
language.widget,
margins = 10,
widget = wibox.container.margin
},
bg = "#000000",
opacity = 1,
widget = wibox.container.background
},
border_color = "#000000",
border_width = 0,
opacity = 1,
type = "menu",
ontop = true,
visible = false,
hide_on_right_click = true,
shape = gears.shape.rounded_rect,
placement = function(d)
return awful.placement.centered(d, {
honor_workarea = true
})
end,
}
language.popup_timer = gears.timer {
timeout = 1,
autostart = false,
call_now = false,
single_shot = true,
callback = function()
language.popup.visible = false
end
}
return language

141
desktop/tagger.lua Executable file
View File

@ -0,0 +1,141 @@
-- Tag grid manager
local Tagger = {
screen = nil, rows = 2, cols = 3
}
Tagger.__index = Tagger
function Tagger:new(screen)
local t = {}
setmetatable(t, Tagger)
t.screen = screen
-- Create tags on this Tagger's screen
for r=1, t.rows do
for c=1, t.cols do
awful.tag.add("(" .. tostring(r) .. ", " .. tostring(c) .. ")", {
layout = layoutmanager:default_layout(),
screen = t.screen,
gap_single_client = false,
gap = beautiful.useless_gap,
volatile = false,
-- Only select the first tag
selected = ((r == 1) and (c == 1))
})
end
end
return t
end
function Tagger:get_tag()
return self.screen.selected_tag.index
end
-- Return current column
function Tagger:get_col()
return ( (self:get_tag() - 1) % self.cols ) + 1
end
-- Return current row
function Tagger:get_row()
return math.floor( (self:get_tag() - self:get_col()) / self.cols ) + 1
end
-- Select a tag by position
function Tagger:setpos(row, col)
local target_absolute = (self.cols * (row - 1)) + col
local target_relative = target_absolute - self.screen.selected_tag.index
awful.tag.viewidx(target_relative)
self:update_widget()
end
-- Update this tagger's screen's tagindicator
function Tagger:update_widget()
local clients
local tgs = self.screen.tags
for i=1, #tgs do
clients = tgs[i]:clients()
-- Each tag indicator is a "checkbox" widget.
-- Make that the currently active tag is checked and that all
-- others are not.
if (tgs[i].index == self.screen.selected_tag.index) then
self.screen.tagindicators[i].checked = true
else
self.screen.tagindicators[i].checked = false
end
-- Highlight tags that are not empty
if (#clients == 0) then
self.screen.tagindicators[i].border_color = beautiful.color.bar.inactive
else
self.screen.tagindicators[i].border_color = beautiful.color.bar.active
end
end
end
-- Navigation
function Tagger:up()
local row = self:get_row() - 1
local col = self:get_col()
if (row >= 1) then
self:setpos(row, col)
end
end
function Tagger:down()
local row = self:get_row() + 1
local col = self:get_col()
if (row <= self.rows) then
self:setpos(row, col)
end
end
function Tagger:right()
local row = self:get_row()
local col = self:get_col() + 1
if (col <= self.cols) then
self:setpos(row, col)
end
end
function Tagger:left()
local row = self:get_row()
local col = self:get_col() - 1
if (col >= 1) then
self:setpos(row, col)
end
end
-- Moving clients
function Tagger:move_client(client, direction)
if direction == "up" then
self:up()
elseif direction == "down" then
self:down()
elseif direction == "left" then
self:left()
elseif direction == "right" then
self:right()
end
if client.first_tag.layout == awful.layout.suit.floating then
client.floating = true
end
client:move_to_tag(self.screen.selected_tag)
self:update_widget()
end
return Tagger

62
desktop/wallpaper.lua Executable file
View File

@ -0,0 +1,62 @@
local wallpaper = {}
wallpaper.active = -1
-- How many minutes have passed since 00:00
wallpaper.timenow = function()
local time = {}
local t
for t in string.gmatch(os.date("%H:%M"), "[^:]+") do
table.insert(time, t)
end
return (tonumber(time[1]) * 60) + tonumber(time[2])
end
-- Return wallpaper's start time in minutes since 00:00
wallpaper.get_start_time = function(entry)
return (entry.start_time[1] * 60) + entry.start_time[2]
end
-- Set the ith wallpaper
wallpaper.set = function(i)
local path = beautiful.wallpaper[i].file
wallpaper.active = i
-- Set wallpaper maximized on each display
for s in screen do
gears.wallpaper.maximized(path, s)
end
end
-- Which image should be scheduled now?
wallpaper.current = function()
local i
for i = #beautiful.wallpaper, 1, -1 do
if wallpaper.get_start_time(beautiful.wallpaper[i]) <= wallpaper.timenow() then
return i
end
end
end
wallpaper.update = function()
local current = wallpaper.current()
if current ~= wallpaper.active then
wallpaper.set(current)
end
return true
end
wallpaper.start = function()
window.timer = gears.timer.start_new(10, wallpaper.update)
end
return wallpaper

101
desktop/widgets/backlight.lua Executable file
View File

@ -0,0 +1,101 @@
local backlight = {}
backlight.icon = wibox.widget {
id = "icon",
image = beautiful.icons.brightness.i,
resize = true,
widget = wibox.widget.imagebox,
}
backlight.arc = wibox.widget {
{
backlight.icon,
top = beautiful.dpi(1),
bottom = beautiful.dpi(1),
layout = wibox.container.margin,
},
max_value = 100,
thickness = beautiful.dpi(4),
start_angle = 4.71238898, -- 2pi*3/4
--forced_height = beautiful.dpi(16),
--forced_width = beautiful.dpi(16),
colors = {"#27D4CC", "#00446B"},
bg = "#FFFFFF30",
paddings = beautiful.dpi(2),
widget = wibox.container.arcchart
}
backlight.widget = wibox.widget {
{
{ -- Right space
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
{ -- Main indicator. Can be replaced with backlight.arc
backlight.arc,
top = beautiful.dpi(2),
bottom = beautiful.dpi(2),
layout = wibox.container.margin,
},
{ -- Left space
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
layout = wibox.layout.align.horizontal,
},
layout = wibox.container.background,
}
backlight.widget:connect_signal("mouse::enter", function(result)
backlight.widget.bg = beautiful.color.bar.hover_bg
end)
backlight.widget:connect_signal("mouse::leave", function(result)
backlight.widget.bg = beautiful.color.transparent
end)
backlight.widget:connect_signal("button::press",
function(_, _, _, button, mods)
-- Scroll up
if (button == 4) then
wrapper.backlight.up()
-- Scroll down
elseif (button == 5) then
wrapper.backlight.down()
end
end
)
backlight.update = function(value)
backlight.arc.value = value
--[[if value > 90 then backlight.icon.image = beautiful.icons.brightness.i
elseif value > 80 then backlight.icon.image = beautiful.icons.brightness.h
elseif value > 70 then backlight.icon.image = beautiful.icons.brightness.g
elseif value > 60 then backlight.icon.image = beautiful.icons.brightness.f
elseif value > 50 then backlight.icon.image = beautiful.icons.brightness.e
elseif value > 40 then backlight.icon.image = beautiful.icons.brightness.d
elseif value > 30 then backlight.icon.image = beautiful.icons.brightness.c
elseif value > 20 then backlight.icon.image = beautiful.icons.brightness.b
elseif value <= 10 then backlight.icon.image = beautiful.icons.brightness.a end
--]]
end
-- Add various hooks
wrapper.backlight.add_hook(backlight.update)
bin.backlight.watch(
5,
function()
wrapper.backlight.read(backlight.update)
end,
backlight.widget
)
return backlight.widget

214
desktop/widgets/battery.lua Executable file
View File

@ -0,0 +1,214 @@
local battery = {}
-- Percentages to warn at
-- (must be in order least -> greatest)
battery.warnings = {
5, 10, 25, 50
}
battery.warninglog = {}
for i=1, #battery.warnings do
battery.warninglog[i] = false
end
battery.image_path = beautiful.icons.battery.missing
battery.icon = wibox.widget {
image = beautiful.icons.battery.missing,
resize = true,
widget = wibox.widget.imagebox,
}
battery.progressbar = wibox.widget {
max_value = 100,
widget = wibox.widget.progressbar,
paddings = beautiful.dpi(2),
color = beautiful.color.bar.active,
background_color = beautiful.color.transparent,
border_color = beautiful.color.bar.active,
border_width = beautiful.dpi(1),
margins = beautiful.dpi(3)
}
battery.arc = wibox.widget {
{
battery.icon,
top = beautiful.dpi(1),
bottom = beautiful.dpi(1),
layout = wibox.container.margin,
},
max_value = 100,
thickness = beautiful.dpi(4),
start_angle = 4.71238898, -- 2pi*3/4
--forced_height = beautiful.dpi(16),
--forced_width = beautiful.dpi(16),
colors = {"#27D4CC", "#00446B"},
bg = "#FFFFFF30",
paddings = beautiful.dpi(2),
widget = wibox.container.arcchart
}
battery.rotator = wibox.widget {
battery.progressbar,
forced_width = beautiful.dpi(15),
direction = "east",
layout = wibox.container.rotate,
}
battery.widget = wibox.widget {
{
{ -- Right space
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
{
battery.arc,
top = beautiful.dpi(2),
bottom = beautiful.dpi(2),
layout = wibox.container.margin,
},
{ -- Left space
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
layout = wibox.layout.align.horizontal,
},
layout = wibox.container.background,
}
battery.widget:connect_signal("mouse::enter", function(result)
battery.widget.bg = beautiful.color.bar.hover_bg
end)
battery.widget:connect_signal("mouse::leave", function(result)
battery.widget.bg = beautiful.color.transparent
end)
battery.update = function(stdout)
local batpec = string.match(stdout, "(%d?%d?%d)%%")
batpec = tonumber(string.format("% 3d", batpec))
local discharging = string.match(stdout, "discharging") or false
-- Handle low power notifications
if discharging then
for i=1, #battery.warnings do
v = battery.warnings[i]
if (batpec <= v) and (not battery.warninglog[i]) then
battery.warninglog[i] = true
naughty.notify({
title = "Low power",
text = "Battery is at " .. tostring(batpec) .. "%",
icon = beautiful.icons.battery.caution,
timeout = 5,
ignore_suspend = true,
border_color = beautiful.color.battery.danger,
preset = beautiful.notification_templates.bottom_right
})
break
end
end
else
for i=1, #battery.warnings do
if (batpec >= battery.warnings[i]) then
battery.warninglog[i] = false
end
end
end
battery.progressbar.value = batpec
battery.arc.value = batpec
if batpec > 60 then
battery.progressbar.color = beautiful.color.battery.good
elseif batpec > 40 then
battery.progressbar.color = beautiful.color.battery.low
elseif batpec <= 40 then
battery.progressbar.color = beautiful.color.battery.danger
end
battery.image_path = beautiful.icons.battery.missing
-- Set current battery icon
if (not discharging) then
if batpec > 80 then battery.image_path = beautiful.icons.battery.charging.full
elseif batpec > 60 then battery.image_path = beautiful.icons.battery.charging.good
elseif batpec > 40 then battery.image_path = beautiful.icons.battery.charging.low
elseif batpec > 20 then battery.image_path = beautiful.icons.battery.charging.caution
elseif batpec <= 20 then battery.image_path = beautiful.icons.battery.charging.empty end
else
if batpec > 80 then battery.image_path = beautiful.icons.battery.full
elseif batpec > 60 then battery.image_path = beautiful.icons.battery.good
elseif batpec > 40 then battery.image_path = beautiful.icons.battery.low
elseif batpec > 20 then battery.image_path = beautiful.icons.battery.caution
elseif batpec <= 20 then battery.image_path = beautiful.icons.battery.empty end
end
battery.icon.image = battery.image_path
if (not discharging) and (batpec > 90) then
battery.progressbar.border_color = beautiful.color.battery.good
elseif (discharging) and (batpec <= 25) then
battery.progressbar.border_color = beautiful.color.battery.danger
else
battery.progressbar.border_color = beautiful.color.bar.active
end
if discharging then
battery.rotator.direction = "east"
else
battery.rotator.direction = "west"
end
end
battery.readupdate = function()
bin.battery.status(
function(stdout, stderr, exitreason, exitcode)
battery.update(stdout)
end
)
end
battery.widget:connect_signal("button::press",
function(_, _, _, button, mods)
if (button == 1) then
bin.battery.status(
function(stdout, stderr, exitreason, exitcode)
local batpec = string.match(stdout, "(%d?%d?%d)%%") -- (\d?\d?\d)\%)
local batstat = string.match(stdout, "discharging") or false
if batstat then
batstat = "Discharging, "
else
batstat = "Charging, "
end
local out = naughty.notify({
title = "Battery:",
text = batstat .. batpec .. "%",
icon = battery.image_path,
replaces_id = battery.notid,
ignore_suspend = true,
preset = beautiful.notification_templates.bottom_right
})
battery.notid = out.id
end
)
end
end
)
bin.battery.watch(10, function(_, stdout) battery.update(stdout) end, battery.widget)
return battery.widget

41
desktop/widgets/keymap.lua Executable file
View File

@ -0,0 +1,41 @@
local keymap = {}
keymap.widget = wibox.widget {
{
{ -- Right spacer
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
wibox.widget {
wrapper.ibus.ibus_indicator_text,
wrapper.ibus.xkb_indicator_text,
forced_num_cols = 1,
forced_num_rows = 2,
homogeneous = true,
expand = true,
layout = wibox.layout.grid
},
{ -- Left spacer
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
layout = wibox.layout.align.horizontal,
},
layout = wibox.container.background,
}
-- Change background when mouse is over widget
keymap.widget:connect_signal("mouse::enter", function(result)
keymap.widget.bg = beautiful.color.bar.hover_bg
end)
keymap.widget:connect_signal("mouse::leave", function(result)
keymap.widget.bg = beautiful.color.transparent
end)
return keymap.widget

View File

@ -0,0 +1,52 @@
local widget = {}
widget.icon = wibox.widget {
resize = true,
image = beautiful.icons.launcher,
widget = wibox.widget.imagebox
}
widget.widget = wibox.widget {
{
{ -- Right space
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
{
widget.icon,
top = beautiful.dpi(2),
bottom = beautiful.dpi(2),
layout = wibox.container.margin,
},
{ -- Left space
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
layout = wibox.layout.align.horizontal,
},
layout = wibox.container.background,
}
widget.widget:connect_signal("mouse::enter", function(result)
widget.widget.bg = beautiful.color.bar.hover_bg
end)
widget.widget:connect_signal("mouse::leave", function(result)
widget.widget.bg = beautiful.color.transparent
end)
widget.widget:connect_signal("button::press",
function(_, _, _, button, mods)
if (button == 1) then
bin.rofi.launcher()
end
end
)
wrapper.volume.commands:get(widget.update)
return widget.widget

38
desktop/widgets/layoutbox.lua Executable file
View File

@ -0,0 +1,38 @@
local layoutbox = {}
layoutbox.make = function(screen)
local widget
widget = wibox.widget {
{
awful.widget.layoutbox(screen),
margins = beautiful.dpi(3),
layout = wibox.container.margin,
},
layout = wibox.container.background,
}
-- Setup buttons
widget:buttons(
gears.table.join(
awful.button({ }, 1, function () layoutmanager:next_alt() end),
awful.button({ }, 3, function () layoutmanager:prev_alt() end),
awful.button({ }, 4, function () layoutmanager:next() end),
awful.button({ }, 5, function () layoutmanager:prev() end)
)
)
-- Change background when mouse is over widget
widget:connect_signal("mouse::enter", function(result)
widget.bg = beautiful.color.bar.hover_bg
end)
widget:connect_signal("mouse::leave", function(result)
widget.bg = beautiful.color.transparent
end)
return widget
end
return layoutbox.make

49
desktop/widgets/mdadm.lua Normal file
View File

@ -0,0 +1,49 @@
local raidw = {}
raidw.title_text = wibox.widget.textbox("Raid")
raidw.title_text.valign = "center"
raidw.title_text.align = "center"
raidw.title_text.font = "Hack NF 10"
raidw.widget = wibox.widget {
{
{ -- Right spacer
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
wibox.widget {
raidw.title_text,
wrapper.mdadm.indicator_text,
forced_num_cols = 1,
forced_num_rows = 2,
homogeneous = true,
expand = true,
layout = wibox.layout.grid
},
{ -- Left spacer
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
layout = wibox.layout.align.horizontal,
},
layout = wibox.container.background,
}
-- Change background when mouse is over widget
raidw.widget:connect_signal("mouse::enter", function(result)
raidw.widget.bg = beautiful.color.bar.hover_bg
end)
raidw.widget:connect_signal("mouse::leave", function(result)
raidw.widget.bg = beautiful.color.transparent
end)
return raidw.widget

193
desktop/widgets/mpc.lua Normal file
View File

@ -0,0 +1,193 @@
local mpc_widget = {}
mpc_widget.title = wibox.widget.textbox("MPD is not")
mpc_widget.title.valign = "center"
mpc_widget.title.align = "left"
mpc_widget.title.font = "Hack NF 12"
mpc_widget.title.ellipsize = "end"
mpc_widget.title.forced_width = beautiful.dpi(conf.mpc_width)
mpc_widget.artist = wibox.widget.textbox("connected")
mpc_widget.artist.valign = "center"
mpc_widget.artist.align = "left"
mpc_widget.artist.font = "Hack NF 12"
mpc_widget.artist.ellipsize = "end"
mpc_widget.artist.forced_width = beautiful.dpi(conf.mpc_width)
mpc_widget.volume = wibox.widget.textbox("??")
mpc_widget.volume.valign = "center"
mpc_widget.volume.align = "left"
mpc_widget.volume.font = "Hack NF 10"
mpc_widget.volume.ellipsize = "end"
mpc_widget.volume.forced_width = beautiful.dpi(10)
mpc_widget.icon_play = wibox.widget {
resize = true,
image = beautiful.icons.music.blue.play,
widget = wibox.widget.imagebox
}
mpc_widget.left = wibox.widget {
wibox.widget {
{
mpc_widget.icon_play,
top = beautiful.dpi(2),
bottom = beautiful.dpi(2),
left = 0, right = 0,
layout = wibox.container.margin,
},
mpc_widget.volume,
forced_num_cols = 1,
forced_num_rows = 2,
homogeneous = true,
expand = true,
layout = wibox.layout.grid
},
layout = wibox.container.background
}
mpc_widget.right = wibox.widget {
wibox.widget {
mpc_widget.title,
mpc_widget.artist,
forced_num_cols = 1,
forced_num_rows = 2,
homogeneous = true,
expand = true,
layout = wibox.layout.grid
},
layout = wibox.container.background,
}
mpc_widget.widget = wibox.widget {
{
{ -- Right spacer
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
mpc_widget.left,
mpc_widget.right,
{ -- Left spacer
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
layout = wibox.layout.align.horizontal,
},
layout = wibox.container.background,
}
mpc_widget.widget:connect_signal("mouse::enter", function(result)
mpc_widget.widget.bg = beautiful.color.bar.hover_bg
end)
mpc_widget.widget:connect_signal("mouse::leave", function(result)
mpc_widget.widget.bg = beautiful.color.transparent
end)
mpc_widget.widget:connect_signal("button::press",
function(_, _, _, button, mods)
if (button == 3) or (button == 1)then
bin.mpc.command("toggle")
end
mpc_widget.readupdate()
end
)
mpc_widget.right:connect_signal("button::press",
function(_, _, _, button, mods)
if (button == 4) then -- Scroll up
bin.mpc.command("prev")
elseif (button == 5) then -- Scroll down
bin.mpc.command("next")
end
mpc_widget.readupdate()
end
)
mpc_widget.left:connect_signal("button::press",
function(_, _, _, button, mods)
if (button == 4) then -- Scroll up
bin.mpc.command("volume +5")
elseif (button == 5) then -- Scroll down
bin.mpc.command("volume -5")
end
mpc_widget.readupdate()
end
)
mpc_widget.update = function(stdout)
if (stdout == "") then
return
end
mpc_widget.title.markup = string.match(stdout, "title=(.*)artist=")
mpc_widget.artist.markup = string.match(stdout, "artist=(.*)")
end
mpc_widget.update_status = function(stdout)
play = string.match(stdout, "(%[playing)") or false
pause = string.match(stdout, "(%[paused)") or false
stop = not (play or pause)
if (play) then
mpc_widget.icon_play.image = beautiful.icons.music.blue.play
elseif (pause) then
mpc_widget.icon_play.image = beautiful.icons.music.blue.pause
elseif (stop) then
mpc_widget.icon_play.image = beautiful.icons.music.blue.stop
end
volume = string.match(stdout, "volume: (%d?%d?%d)%%")
if (volume) then
mpc_widget.volume.markup = volume .. "%"
else
mpc_widget.volume.markup = ""
end
end
mpc_widget.readupdate = function()
bin.mpc.command("current --format \"title=%title% artist=%artist%\"",
function(stdout, stderr, exitreason, exitcode)
mpc_widget.update(stdout)
end
)
bin.mpc.command("status",
function(stdout, stderr, exitreason, exitcode)
mpc_widget.update_status(stdout)
end
)
end
-- The time here is super short because the --wait option is used in mpc.
-- It will not return a response until changes are seen.
bin.mpc.watch("current --wait", 0.01, function(_, stdout) mpc_widget.readupdate() end, mpc_widget.widget)
bin.mpc.watch("current", 1, function(_, stdout) mpc_widget.readupdate() end, mpc_widget.widget)
-- Make sure you do an initial read, though, otherwise the widget will
-- not update until a change occurs.
mpc_widget.readupdate()
return mpc_widget.widget

View File

@ -0,0 +1,51 @@
local shortcuts = {}
function shortcuts:new(command, icon)
widget = wibox.widget {
{
{ -- Right space
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
{
wibox.widget {
resize = true,
image = conf.app_icon_dir .. icon,
widget = wibox.widget.imagebox
},
top = beautiful.dpi(3),
bottom = beautiful.dpi(3),
layout = wibox.container.margin,
},
{ -- Left space
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
layout = wibox.layout.align.horizontal,
},
layout = wibox.container.background
}
widget:connect_signal("mouse::enter", function(result)
result.bg = beautiful.color.bar.hover_bg
end)
widget:connect_signal("mouse::leave", function(result)
result.bg = beautiful.color.transparent
end)
widget:connect_signal("button::press",
function(_, _, _, button, mods)
if (button == 1) then
awful.spawn(command, false)
end
end
)
return widget
end
return shortcuts

View File

@ -0,0 +1,68 @@
local tagindicator = {}
tagindicator.make = function(screen)
local widget
-- Create tag tagindicators
-- We're using flex.vertical and flex.horizontal layouts because the grid
-- layout doesn't expand things properly.
screen.tagindicators = {}
screen.tagindicator = wibox.widget {
homogeneous = true,
spacing = beautiful.dpi(2),
min_cols_size = 10,
min_rows_size = 10,
layout = wibox.layout.grid
}
local tmp_row
for r=1, screen.tagger.rows do
for c=1, screen.tagger.cols do
screen.tagindicators[(c + (screen.tagger.cols * (r - 1)))] = wibox.widget {
checked = false,
border_width = beautiful.dpi(2),
paddings = beautiful.dpi(3),
color = beautiful.color.bar.active,
border_color = beautiful.color.bar.inactive,
widget = wibox.widget.checkbox
}
-- Calculate checkbox size limit
local cbox_maxsize = beautiful.dpi(conf.bar_height)
cbox_maxsize = cbox_maxsize - (2 * beautiful.dpi(conf.bar_margin))
cbox_maxsize = cbox_maxsize - (screen.tagger.rows - 1)*(beautiful.dpi(screen.tagindicator.spacing))
if ((conf.bar_position == "bottom") or (conf.bar_position == "top")) then
cbox_maxsize = cbox_maxsize / screen.tagger.rows
else
cbox_maxsize = cbox_maxsize / screen.tagger.cols
end
screen.tagindicator:add_widget_at(
-- The constraint container is VERY necessary here!
-- Otherwise, the checkboxes will fill all the height that is available to them.
wibox.container.constraint(
screen.tagindicators[(c + (screen.tagger.cols * (r - 1)))],
"exact", cbox_maxsize, cbox_maxsize
), r, c)
end
end
widget = wibox.widget {
screen.tagindicator,
layout = wibox.container.background
}
-- Change background when mouse is over widget
widget:connect_signal("mouse::enter", function(result)
widget.bg = beautiful.color.bar.hover_bg
end)
widget:connect_signal("mouse::leave", function(result)
widget.bg = beautiful.color.transparent
end)
return widget
end
return tagindicator.make

119
desktop/widgets/tasklist.lua Executable file
View File

@ -0,0 +1,119 @@
local tasklist = {}
--[[ Create a tasklist widget
s.mytasklist = awful.widget.tasklist {
screen = s,
filter = awful.widget.tasklist.filter.currenttags,
buttons = tasklist_buttons
} ]]--
local buttons = gears.table.join(
awful.button( {}, 1,
function (c)
if c == client.focus then
c.minimized = true
else
c:emit_signal(
"request::activate",
"tasklist",
{raise = true}
)
end
end
)
)
tasklist.make = function(screen)
return awful.widget.tasklist({
screen = screen,
filter = awful.widget.tasklist.filter.currenttags,
buttons = buttons,
layout = {
spacing_widget = {
{
forced_width = beautiful.dpi(2),
forced_height = beautiful.dpi(12),
thickness = beautiful.dpi(1),
color = "#000000FF", --beautiful.color.bar.spacer,
widget = wibox.widget.separator
},
valign = "center",
halign = "center",
widget = wibox.container.place,
},
spacing = 1,
layout = wibox.layout.fixed.horizontal
},
-- Notice that there is *NO* wibox.wibox prefix, it is a template,
-- not a widget instance.
widget_template = {
{
wibox.widget.base.make_widget(),
forced_height = beautiful.dpi(3),
id = "top_tab",
widget = wibox.container.background,
},
{
{
{
id = "clienticon",
widget = awful.widget.clienticon,
},
margins = beautiful.dpi(3),
widget = wibox.container.margin
},
id = "background",
widget = wibox.container.background,
},
nil,
-- The create callback is only called once, when the task indicator
-- is created.
create_callback = function(self, c, index, objects)
-- Set indicator icon
self:get_children_by_id("clienticon")[1].client = c
-- Change background when mouse is over widget
self:connect_signal("mouse::enter", function(result)
self:get_children_by_id("top_tab")[1].bg = "#2DA0DA"
self:get_children_by_id("background")[1].bg = beautiful.color.bar.hover_bg
end)
self:connect_signal("mouse::leave", function(result)
self:get_children_by_id("background")[1].bg = beautiful.color.transparent
if c == client.focus then
self:get_children_by_id("top_tab")[1].bg = "#2DA0FF"
elseif c.minimized then
self:get_children_by_id("top_tab")[1].bg = "#2DA0DA77"
else
self:get_children_by_id("top_tab")[1].bg = beautiful.color.transparent
end
end)
end,
-- The update callback is called every time the icon needs updating.
update_callback = function(self, c, index, objects)
-- Update indicator icon
self:get_children_by_id("clienticon")[1].client = c
-- Update top color
if c == client.focus then
self:get_children_by_id("top_tab")[1].bg = "#2DA0DA"
elseif c.minimized then
self:get_children_by_id("top_tab")[1].bg = "#2DA0DA77"
else
self:get_children_by_id("top_tab")[1].bg = beautiful.color.transparent
end
end,
layout = wibox.layout.align.vertical,
},
})
end
return tasklist.make

49
desktop/widgets/textclock.lua Executable file
View File

@ -0,0 +1,49 @@
local textclock = {}
textclock.widget = wibox.widget {
{
{ -- Right spacer
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
wibox.widget {
wibox.widget.textclock("%m/%d"),
wibox.widget.textclock("%I:%M", 60),
-- Long format:
-- wibox.widget.textclock("%m/%d/%y"),
-- wibox.widget.textclock("%I:%M:%S", 1),
-- %H - 24-hour time
-- %I - 12-hour time
forced_num_cols = 1,
forced_num_rows = 2,
homogeneous = true,
expand = true,
layout = wibox.layout.grid
},
{ -- Left spacer
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
layout = wibox.layout.align.horizontal,
},
layout = wibox.container.background,
}
-- Change background when mouse is over widget
textclock.widget:connect_signal("mouse::enter", function(result)
textclock.widget.bg = beautiful.color.bar.hover_bg
end)
textclock.widget:connect_signal("mouse::leave", function(result)
textclock.widget.bg = beautiful.color.transparent
end)
return textclock.widget

142
desktop/widgets/volume.lua Executable file
View File

@ -0,0 +1,142 @@
local widget = {}
widget.icon = wibox.widget {
resize = true,
image = beautiful.icons.volume.mute,
widget = wibox.widget.imagebox
}
widget.arc = wibox.widget {
{
widget.icon,
top = beautiful.dpi(1),
bottom = beautiful.dpi(1),
layout = wibox.container.margin,
},
max_value = 1,
thickness = beautiful.dpi(4),
start_angle = 4.71238898, -- 2pi*3/4
--forced_height = beautiful.dpi(16),
--forced_width = beautiful.dpi(16),
colors = {"#27D4CC", "#00446B"},
bg = "#FFFFFF30",
paddings = beautiful.dpi(2),
widget = wibox.container.arcchart
}
widget.bar = wibox.widget {
max_value = 100,
value = 0,
--forced_height = 20,
forced_width = beautiful.dpi(50),
paddings = 0,
border_width = 0,
color = {
type = "linear",
from = {0, 0}, to = {beautiful.dpi(50), 0},
stops = { { 0, "#27D4CC" }, { 1, "#00446B" }}
},
background_color = "#FFFFFF30",
widget = wibox.widget.progressbar,
shape = gears.shape.rounded_bar,
}
widget.widget = wibox.widget {
{
{ -- Right space
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
{
widget.arc,
top = beautiful.dpi(2),
bottom = beautiful.dpi(2),
layout = wibox.container.margin,
},
{ -- Left space
widget = wibox.widget.separator,
color = beautiful.color.transparent,
forced_width = beautiful.dpi(3)
},
layout = wibox.layout.align.horizontal,
},
layout = wibox.container.background,
}
widget.widget:connect_signal("mouse::enter", function(result)
widget.widget.bg = beautiful.color.bar.hover_bg
end)
widget.widget:connect_signal("mouse::leave", function(result)
widget.widget.bg = beautiful.color.transparent
end)
widget.widget:connect_signal("button::press",
function(_, _, _, button, mods)
-- Right-click
if (button == 3) then
wrapper.volume.togglemute()
-- Scroll up
elseif (button == 4) then
wrapper.volume.up()
-- Scroll down
elseif (button == 5) then
wrapper.volume.down()
end
end
)
widget.update = function(status)
if (status.value == false) then
widget.icon.image = beautiful.icons.volume.error
widget.arc.value = 100;
widget.bar.value = 100;
return
end
widget.arc.value = status.value / 100;
widget.bar.value = status.value;
if (status.mute) then
-- Set muted icon
widget.icon.image = beautiful.icons.volume.mute
else
-- Set icon by value
if status.value > 70 then
widget.icon.image = beautiful.icons.volume.high
elseif status.value > 40 then
widget.icon.image = beautiful.icons.volume.medium
elseif status.value > 0 then
widget.icon.image = beautiful.icons.volume.low
elseif status.value == 0 then
widget.icon.image = beautiful.icons.volume.off
end
end
end
-- Add various hooks
wrapper.volume.add_hook(widget.update)
wrapper.volume.commands:watch(
5,
function()
wrapper.volume.commands:get(widget.update)
end,
widget.widget
)
-- Update volume widget at start
wrapper.volume.commands:get(widget.update)
return widget.widget

30
errors.lua Executable file
View File

@ -0,0 +1,30 @@
-- Check if awesome encountered an error during startup and fell back to
-- another config (This code will only ever execute for the fallback config)
if awesome.startup_errors then
naughty.notify({
preset = naughty.config.presets.critical,
title = "Oops, there were errors during startup!",
text = awesome.startup_errors
})
end
-- Handle runtime errors after startup
do
local in_error = false
awesome.connect_signal(
"debug::error",
function (err)
-- Make sure we don't go into an endless error loop
if in_error then return end
in_error = true
naughty.notify({
preset = naughty.config.presets.critical,
title = "Oops, an error happened!",
text = tostring(err)
})
in_error = false
end
)
end

86
layoutmanager.lua Normal file
View File

@ -0,0 +1,86 @@
-- Client layout manager
local LayoutManager = {
layouts = nil, -- Table of groups
-- current state is kept in each tag, as tag.layout.
}
-- screen.layouts, awful.layouts, and tag.layouts are all ignored.
-- This module replaces the standard layout functions.
-- Get group from layout
-- We assume that this layout is in LayoutManager.layouts
function LayoutManager:get_group(layout)
for k, v in pairs(self.layouts) do
for l, m in pairs(v) do
if (layout == m) then
return k
end
end
end
end
function LayoutManager:get_alt(layout)
for k, v in pairs(self.layouts) do
for l, m in pairs(v) do
if (layout == m) then
return l
end
end
end
end
function LayoutManager:default_layout()
return self.layouts[1][1]
end
-- Change layout group
function LayoutManager:group(step)
local s = awful.screen.focused()
local tag = s.selected_tag -- Multiple selected tags are NOT supported!
local layout = tag.layout
-- Subtract 1, 'cuz lua doesn't start at 0
local group = self:get_group(layout) - 1
group = ((group + step) % #self.layouts) + 1
awful.layout.set(self.layouts[group][1], tag)
end
-- Change layout alternate
function LayoutManager:alt(step)
local s = awful.screen.focused()
local tag = s.selected_tag -- Multiple selected tags are NOT supported!
local layout = tag.layout
-- Subtract 1, 'cuz lua doesn't start at 0
local alt = self:get_alt(layout) - 1
local group = self:get_group(layout)
alt = ((alt + step) % #self.layouts[group]) + 1
awful.layout.set(self.layouts[group][alt], tag)
end
function LayoutManager:next()
self:group(1)
end
function LayoutManager:prev()
self:group(-1)
end
function LayoutManager:next_alt()
self:alt(1)
end
function LayoutManager:prev_alt()
self:alt(-1)
end
return LayoutManager

79
rc.lua Executable file
View File

@ -0,0 +1,79 @@
-- Load libaries.
-- We only need to load these once.
-- These are global variables, all scripts can access them
gears = require("gears")
awful = require("awful")
naughty = require("naughty")
beautiful = require("beautiful")
menubar = require("menubar")
wibox = require("wibox")
configuration_dir = gears.filesystem.get_configuration_dir()
require("awful.autofocus")
-- Quick debug function
debug_message = function(msg)
naughty.notify({title = "Debug message:", text = tostring(msg)})
end
-- These must be loaded in order.
-- Make sure you've created conf.lua!
conf = require("conf")
conf.sound_dir = configuration_dir .. "theme/resources/sounds/"
conf.icon_dir = configuration_dir .. "theme/resources/icons/"
layoutmanager = require("layoutmanager")
layoutmanager.layouts = conf.layouts
bin = require("bin")
wrapper = require("wrapper")
wrapper.ibus.set(1)
beautiful.init(require("theme"))
desktop = require("desktop")
--------------
-- Autostart--
--------------
bin.backlight.redshift_reset()
-- Start compositor (compton tryone fork)
--awful.spawn("killall compton", false)
--awful.spawn("compton --daemon --config " .. configuration_dir .. "/bin/configs/compton.conf", false)
-- Start ibus (advanced multilanguage input manager)
awful.spawn("ibus-daemon --daemonize --replace --xim", false)
-- Redshift
bin.backlight.redshift(5600)
-- Enable hotkeys help widget for VIM and other apps
-- when client with a matching name is opened:
--require("awful.hotkeys_popup.keys")
-- Check for errors
dofile(configuration_dir .. "errors.lua")
terminal = conf.terminal
menubar.utils.terminal = terminal
------------------
-- Load Modules --
------------------
-- Load key bindings
local binds = require("binds")
root.keys(binds.keys)
root.buttons(binds.buttons)
-- Load client methods
awful.rules.rules = require("clients.rules")
dofile(configuration_dir .. "clients/signals.lua")
require("clients.render")

36
theme/bar.lua Executable file
View File

@ -0,0 +1,36 @@
local overrides = function(theme)
theme.tasklist_fg_normal = theme.color.bar.active
theme.tasklist_bg_normal = theme.color.bar.color
theme.tasklist_fg_focus = theme.color.white
theme.tasklist_bg_focus = theme.color.bar.color
theme.tasklist_fg_urgent = theme.color.white
theme.tasklist_bg_urgent = theme.color.bar.color
theme.tasklist_fg_occupied = theme.color.white
theme.tasklist_bg_occupied = theme.color.bar.color
theme.tasklist_fg_empty = theme.color.white .. "00"
theme.tasklist_bg_empty = theme.color.bar.color
theme.tasklist_fg_volatile = theme.color.white
theme.tasklist_bg_volatile = theme.color.bar.color
theme.prompt_font = "Comfortaa 14"
theme.prompt_fg = theme.color.white
theme.prompt_bg = "#00000000"
theme.prompt_fg_cursor = theme.color.black
theme.prompt_bg_cursor = "#EC5250"
-- Tags are managed with a custom script, so awesome
-- tag theming is unnecessary.
-- taglist_[bg|fg]_[focus|urgent|occupied|empty|volatile]
return theme
end
return overrides

16
theme/clients.lua Executable file
View File

@ -0,0 +1,16 @@
local overrides = function(theme)
theme.rounded_corners = false
theme.corner_radius = theme.dpi(3)
theme.titlebar_spacing = theme.dpi(5)
theme.titlebar_margins = theme.dpi(5)
theme.titlebar_bg_normal = theme.color.bar.color --.. "BB"
theme.titlebar_fg_normal = theme.color.bar.active
theme.titlebar_bg_focus = theme.color.bar.color -- .. "BB"
theme.titlebar_fg_focus = theme.color.bar.active
return theme
end
return overrides

46
theme/color.lua Executable file
View File

@ -0,0 +1,46 @@
local color = {
black = "#050505",
lblack = "#1D1F21",
dgrey = "#555555",
grey = "#D0D0D0",
white = "#F8F8F2",
red1 = "#FF6600",
red2 = "#FFAA00",
green1 = "#B4EC85",
green2 = "#A8FF60",
yellow1 = "#FFFFB6",
yellow2 = "#F1FF52",
blue1 = "#0087AF",
blue2 = "#87DFFF",
magenta1 = "#BD99FF",
magenta2 = "#985EFF",
cyan1 = "#87DFEB",
cyan2 = "#24D1E7",
transparent = "#00000000",
}
return gears.table.join({
bar = {
color = color.black,
hover_bg = "#FFFFFF10",
spacer = color.dgrey,
active = color.white,
inactive = color.white .. "AA",
},
battery = {
good = "#53E2AE",
warn = "#F1FF52",
danger = "#EE4F84"
}
}, color)

59
theme/init.lua Executable file
View File

@ -0,0 +1,59 @@
---------------------------
-- Default awesome theme --
---------------------------
local bar = require("theme.bar")
local clients = require("theme.clients")
local resources = require("theme.resources")
local notifications = require("theme.notifications")
local theme = {}
theme.dpi = beautiful.xresources.apply_dpi
theme.color = require("theme.color")
-- Execute overrides
local theme = resources(theme) -- Must be first!
local theme = bar(theme)
local theme = clients(theme)
local theme = notifications(theme)
theme.font = "Hack NF 12"
theme.wallpaper = conf.wallpaper
theme.bg_normal = theme.color.lblack
theme.bg_focus = theme.color.black
theme.bg_urgent = theme.color.red1
theme.bg_minimize = "#444444"
theme.bg_systray = theme.color.bar.color
theme.fg_focus = theme.color.white
theme.fg_normal = theme.color.white .. "AA"
theme.fg_urgent = theme.color.white
theme.fg_minimize = theme.color.white
theme.useless_gap = theme.dpi(0)
theme.border_width = theme.dpi(0)
theme.border_normal = theme.color.black
theme.border_focus = theme.color.dgrey
theme.border_marked = theme.color.red
-- Additional variable sets:
-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
-- mouse_finder_[color|timeout|animate_timeout|radius|factor]
-- Menu theming
theme.menu_bg_focus = theme.color.lblack
theme.menu_bg_normal = theme.color.lblack
theme.menu_fg_focus = theme.color.white
theme.menu_fg_normal = theme.color.white
theme.menu_border_color = theme.color.lblack
theme.menu_border_width = theme.dpi(0)
theme.menu_width = theme.dpi(120)
theme.menu_height = theme.dpi(15)
return theme

66
theme/notifications.lua Executable file
View File

@ -0,0 +1,66 @@
local overrides = function(theme)
-- Keyhelpmenu theming
theme.hotkeys_description_font = "Comfortaa"
--theme.hotkeys_font = "sans"
theme.hotkeys_border_width = 0
-- theme.hotkeys_border_color =
theme.hotkeys_bg = theme.color.black .. "AA"
theme.hotkeys_fg = theme.color.white
theme.hotkeys_label_bg = theme.color.blue1
theme.hotkeys_label_fg = theme.color.white
theme.hotkeys_modifiers_fg = theme.color.green1 .. "AA"
theme.hotkeys_opacity = 1
--theme.hotkeys_group_magin = 5
-- Notification theming
theme.notification_font = "Comfortaa 8"
theme.notification_bg = theme.color.black
theme.notification_fg = theme.color.white
--theme.notification_width =
--theme.notification_height =
theme.notification_margin = 0
theme.notification_padding = theme.dpi(8)
theme.notification_border_color = theme.color.white
theme.notification_border_width = 2
theme.notification_opacity = 1
theme.notification_corner_radius = theme.dpi(25)
-- Generate notification shape
theme.notification_shape = function(cr, w, h)
gears.shape.rounded_rect(cr, w, h, theme.notification_corner_radius, theme.notification_corner_radius)
end
-- Notification presets
theme.notification_templates = {
bottom_right = {
icon_size = theme.dpi(25),
timeout = 5,
max_height = theme.dpi(80),
max_width = theme.dpi(200),
position = "bottom_right",
}
}
-- Default notification
naughty.config.defaults = {
timeout = 5,
text = 5,
ontop = true,
margin = theme.dpi(5),
border_width = theme.dpi(1),
position = "top_middle"
--screen int Defaults to awful.screen.focused. (optional)
}
return theme
end
return overrides

176
theme/resources/icons.lua Executable file
View File

@ -0,0 +1,176 @@
local brightnessdir = conf.icon_dir .. "brightness/clockwise/"
local layoutdir = conf.icon_dir .. "layout/"
local batterydir = conf.icon_dir .. "battery/"
local volumedir = conf.icon_dir .. "volume/"
local tagdir = conf.icon_dir .. "tags/"
local titlebardir = conf.icon_dir .. "titlebar/"
return {
submenu = conf.icon_dir .. "submenu.svg",
launcher = conf.icon_dir .. "arch.svg",
music = {
grey = {
play = conf.icon_dir .. "music/play-grey.svg",
pause = conf.icon_dir .. "music/pause-grey.svg",
stop = conf.icon_dir .. "music/stop-grey.svg"
},
blue = {
play = conf.icon_dir .. "music/play-blue.svg",
pause = conf.icon_dir .. "music/pause-blue.svg",
stop = conf.icon_dir .. "music/stop-blue.svg"
}
},
-- Layout icons
layout = {
cornerne = layoutdir .. "cornerne.svg",
cornernw = layoutdir .. "cornernw.svg",
cornerse = layoutdir .. "cornerse.svg",
cornersw = layoutdir .. "cornersw.svg",
dwindle = layoutdir .. "dwindle.svg",
fairh = layoutdir .. "fairh.svg",
fairv = layoutdir .. "fairv.svg",
floating = layoutdir .. "floating.svg",
fullscreen = layoutdir .. "fullscreen.svg",
magnifier = layoutdir .. "magnifier.svg",
max = layoutdir .. "max.svg",
spiral = layoutdir .. "spiral.svg",
tile = layoutdir .. "tile.svg",
tilebottom = layoutdir .. "tilebottom.svg",
tileleft = layoutdir .. "tileleft.svg",
tiletop = layoutdir .. "tiletop.svg"
},
-- Battery icons
battery = {
missing = batterydir .. "missing.svg",
charging = {
full = batterydir .. "full-charging.svg",
good = batterydir .. "good-charging.svg",
low = batterydir .. "low-charging.svg",
caution = batterydir .. "caution-charging.svg",
empty = batterydir .. "empty-charging.svg"
},
full = batterydir .. "full.svg",
good = batterydir .. "good.svg",
low = batterydir .. "low.svg",
caution = batterydir .. "caution.svg",
empty = batterydir .. "empty.svg"
},
-- Volume indicator
volume = {
high = volumedir .. "high.svg",
medium = volumedir .. "medium.svg",
low = volumedir .. "low.svg",
off = volumedir .. "off.svg",
mute = volumedir .. "mute-red.svg",
error = volumedir .. "error.svg"
},
-- Brightness icons
brightness = {
a = brightnessdir .. "brightness-0.svg",
b = brightnessdir .. "brightness-1.svg",
c = brightnessdir .. "brightness-2.svg",
d = brightnessdir .. "brightness-3.svg",
e = brightnessdir .. "brightness-4.svg",
f = brightnessdir .. "brightness-5.svg",
g = brightnessdir .. "brightness-6.svg",
h = brightnessdir .. "brightness-7.svg",
i = brightnessdir .. "brightness-8.svg"
},
-- RAID status
raid = {
healthy = {
normal = conf.icon_dir .. "raid/healthy.svg",
recover = conf.icon_dir .. "raid/healthy-recover.svg"
},
degraded = {
normal = conf.icon_dir .. "raid/degraded.svg",
recover = conf.icon_dir .. "raid/degraded-recover.svg"
}
},
-- Icons shown on window bars
titlebar = {
close = {
focus_hover = titlebardir .. "hover/close.svg",
normal_hover = titlebardir .. "hover/close.svg",
focus = titlebardir .. "regular/close.svg",
normal = titlebardir .. "regular/close.svg"
},
floating = {
inactive = {
focus_hover = titlebardir .. "hover/float.svg",
normal_hover = titlebardir .. "hover/float.svg",
focus = titlebardir .. "regular/float.svg",
normal = titlebardir .. "regular/float.svg"
},
active = {
focus_hover = titlebardir .. "regular/float.svg",
normal_hover = titlebardir .. "regular/float.svg",
focus = titlebardir .. "hover/float.svg",
normal = titlebardir .. "hover/float.svg"
}
},
maximize = {
inactive = {
focus_hover = titlebardir .. "hover/maximize.svg",
normal_hover = titlebardir .. "hover/maximize.svg",
focus = titlebardir .. "regular/maximize.svg",
normal = titlebardir .. "regular/maximize.svg"
},
active = {
focus_hover = titlebardir .. "regular/maximize.svg",
normal_hover = titlebardir .. "regular/maximize.svg",
focus = titlebardir .. "hover/maximize.svg",
normal = titlebardir .. "hover/maximize.svg"
}
},
minimize = {
focus_hover = titlebardir .. "hover/minimize.svg",
normal_hover = titlebardir .. "hover/minimize.svg",
focus = titlebardir .. "regular/minimize.svg",
normal = titlebardir .. "regular/minimize.svg"
},
ontop = {
inactive = {
focus_hover = titlebardir .. "hover/ontop.svg",
normal_hover = titlebardir .. "hover/ontop.svg",
focus = titlebardir .. "regular/ontop.svg",
normal = titlebardir .. "regular/ontop.svg"
},
active = {
focus_hover = titlebardir .. "regular/ontop.svg",
normal_hover = titlebardir .. "regular/ontop.svg",
focus = titlebardir .. "hover/ontop.svg",
normal = titlebardir .. "hover/ontop.svg"
}
},
sticky = {
inactive = {
focus_hover = titlebardir .. "hover/stick.svg",
normal_hover = titlebardir .. "hover/stick.svg",
focus = titlebardir .. "regular/stick.svg",
normal = titlebardir .. "regular/stick.svg"
},
active = {
focus_hover = titlebardir .. "regular/stick.svg",
normal_hover = titlebardir .. "regular/stick.svg",
focus = titlebardir .. "hover/stick.svg",
normal = titlebardir .. "hover/stick.svg"
}
}
}
}

5
theme/resources/icons/arch.svg Executable file
View File

@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" version="1.1">
<path style="opacity:0.2;fill-rule:evenodd" d="M 31.995177,5.0013995 C 29.502112,11.112323 27.998486,15.109554 25.222845,21.038199 26.924609,22.841797 28.607531,24.627869 32,27 28.35282,25.499498 26.271095,24.307299 24.41194,22.744078 20.8597,30.155025 15.294132,40.711453 4.0000002,61 12.876822,55.876484 19.057757,52.717703 25.471058,51.512319 25.195678,50.328213 25.039098,49.04737 25.049741,47.710946 l 0.0098,-0.284337 C 25.200382,41.740721 28.921032,37.007676 32.362919,37 c 3.441888,-0.0077 6.788998,5.814788 6.648129,11.500678 -0.02646,1.070005 -0.147212,2.099133 -0.358095,3.05378 C 44.99624,52.795122 51.243325,55.945783 60,61 58.273309,57.821899 56.732158,54.956976 55.26046,52.228409 52.94215,50.431951 50.932361,48.531168 46,46 c 3.390226,0.880729 5.409397,1.459649 7.301462,2.595455 C 38.338028,20.741402 37.126783,17.03985 31.994742,4.9999995 Z"/>
<path style="fill:#1793d1;fill-rule:evenodd" d="M 31.995177,4.0013995 C 29.502112,10.112323 27.998486,14.109554 25.222845,20.038199 26.924609,21.841797 28.607531,23.627869 32,26 28.35282,24.499498 26.271095,23.307299 24.41194,21.744078 20.8597,29.155025 15.294132,39.711453 4.0000002,60 12.876822,54.876484 19.057757,51.717703 25.471058,50.512319 25.195678,49.328213 25.039098,48.04737 25.049741,46.710946 l 0.0098,-0.284337 C 25.200382,40.740721 28.921032,36.007676 32.362919,36 c 3.441888,-0.0077 6.788998,5.814788 6.648129,11.500678 -0.02646,1.070005 -0.147212,2.099133 -0.358095,3.05378 C 44.99624,51.795122 51.243325,54.945783 60,60 58.273309,56.821899 56.732158,53.956976 55.26046,51.228409 52.94215,49.431951 50.932361,47.531168 46,45 c 3.390226,0.880729 5.409397,1.459649 7.301462,2.595455 C 38.338028,19.741402 37.126783,16.03985 31.994742,3.9999995 Z"/>
<path style="fill:#ffffff;fill-rule:evenodd;opacity:0.2" d="M 31.996094 4.0039062 C 29.503492 10.113758 27.998009 14.111032 25.222656 20.039062 C 25.323 20.145411 25.42873 20.253025 25.529297 20.359375 C 28.094806 14.819153 29.605533 10.863636 31.996094 5.0039062 C 37.029258 16.812002 38.370111 20.737759 52.542969 47.173828 C 52.799752 47.306209 53.051272 47.445923 53.300781 47.595703 C 38.339229 19.745153 37.126504 16.040146 31.996094 4.0039062 z M 24.412109 21.744141 C 20.859869 29.155088 15.294132 39.711453 4 60 C 4.2790559 59.838935 4.5328222 59.696245 4.8066406 59.539062 C 15.496107 40.307372 20.956001 29.95453 24.412109 22.744141 C 26.271264 24.307362 28.35282 25.499498 32 27 C 30.744922 26.122406 29.773063 25.343432 28.898438 24.595703 C 27.047844 23.676699 25.658286 22.791955 24.412109 21.744141 z M 46 46 C 50.932361 48.531168 52.941456 50.432058 55.259766 52.228516 C 56.488953 54.507462 57.825027 56.982477 59.21875 59.554688 C 59.483717 59.706715 59.730349 59.844362 60 60 C 58.273309 56.821899 56.731464 53.957083 55.259766 51.228516 C 53.590647 49.935116 52.064892 48.584211 49.509766 46.986328 C 48.498719 46.669238 47.382852 46.359244 46 46 z M 25.064453 47.345703 C 25.063622 47.372706 25.059264 47.398735 25.058594 47.425781 L 25.048828 47.710938 C 25.040995 48.694489 25.125285 49.647751 25.279297 50.554688 C 25.343143 50.542292 25.406814 50.523727 25.470703 50.511719 C 25.239369 49.517004 25.099409 48.452553 25.064453 47.345703 z M 39 47.652344 C 38.966126 48.666573 38.852993 49.646368 38.652344 50.554688 C 38.705667 50.565117 38.759189 50.581098 38.8125 50.591797 C 38.915197 49.916489 38.99384 49.223001 39.011719 48.5 C 39.018717 48.217524 39.009803 47.934762 39 47.652344 z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
style="display:inline"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:docname="caution-charging.svg"
version="1.0"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:version="0.32"
id="svg2"
height="512"
width="512">
<defs
id="defs4" />
<sodipodi:namedview
inkscape:snap-global="true"
inkscape:snap-intersection-paths="true"
inkscape:object-paths="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-center="true"
inkscape:snap-grids="true"
inkscape:document-rotation="0"
inkscape:window-maximized="1"
inkscape:window-y="22"
inkscape:window-x="0"
inkscape:window-height="1030"
inkscape:window-width="1920"
inkscape:guide-bbox="true"
showguides="true"
inkscape:showpageshadow="false"
showgrid="false"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="148.52286"
inkscape:cx="195.76915"
inkscape:zoom="1.2268331"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1"
bordercolor="#fd0000"
pagecolor="#ffffff"
id="base">
<inkscape:grid
snapvisiblegridlinesonly="true"
empspacing="8"
enabled="true"
visible="true"
id="grid3672"
type="xygrid"
dotted="false"
spacingx="32"
spacingy="32" />
<sodipodi:guide
inkscape:color="rgb(0,0,255)"
inkscape:locked="false"
inkscape:label=""
id="guide1072"
orientation="-1,0"
position="1884,1184" />
</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
transform="translate(0,-6)"
style="display:inline"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Icon">
<path
sodipodi:nodetypes="sscsccssscsscsssssscsccssccscss"
d="m 208,37.999995 c -8.864,0 -16,7.136 -16,16 v 16 h -64 c -17.728,0 -32.000001,14.272 -32.000001,32.000005 0,117.33332 0,352 0,352 0,17.728 14.272001,32 32.000001,32 h 256 c 17.728,0 32,-14.272 32,-32 V 134 102 C 416,84.271995 401.728,69.999995 384,69.999995 h -64 v -16 c 0,-8.864 -7.136,-16 -16,-16 z m 9.6,32 h 76.8004 c 7.0912,0 12.7251,6.37004 12.7988,13.87695 V 102 h 51.2012 C 372.5828,102 384,114.08703 384,129.10156 c 0,99.26562 0,198.53125 0,297.79687 C 384,441.91296 372.5828,454 358.4004,454 H 153.5996 C 139.4172,454 128,441.91296 128,426.89843 c 0,-99.37434 0,-198.74869 0,-298.12304 0,-15.01453 11.4172,-26.74635 25.5996,-26.77539 h 51.2012 V 83.550775 c 0,-7.50727 5.708,-13.55078 12.7992,-13.55078 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:256;marker:none;enable-background:accumulate"
id="path3000-1-0" />
<path
sodipodi:nodetypes="cccsscccc"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ee4f84;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:197.553;marker:none;enable-background:accumulate"
d="m 160.082,344 c -13.296,5e-5 -23.96289,9.92392 -24,24 v 54 c 0,14.07612 10.622,24.00027 23.918,24.00027 h 192 c 13.296,0 24.082,-9.92415 24.082,-24.00027 v -54 c 0.0371,-14.07608 -10.704,-24 -24,-24 z"
id="path3000-1-7-3" />
<path
inkscape:connector-curvature="0"
id="rect3771"
d="M 231,137 331,287.00001 H 269.53809 L 281,387 181,237.00001 h 62.59009 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:200;marker:none;enable-background:accumulate" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg2"
sodipodi:version="0.32"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
version="1.0"
sodipodi:docname="caution.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
style="display:inline">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#fd0000"
borderopacity="1"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.81126498"
inkscape:cx="242.39896"
inkscape:cy="154.86562"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:showpageshadow="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1920"
inkscape:window-height="1030"
inkscape:window-x="0"
inkscape:window-y="22"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:snap-grids="true"
inkscape:snap-center="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-global="true">
<inkscape:grid
spacingy="32"
spacingx="32"
dotted="false"
type="xygrid"
id="grid3672"
visible="true"
enabled="true"
empspacing="8"
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="Icon"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(0,-6)">
<path
id="path3000-1-0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:256;marker:none;enable-background:accumulate"
d="m 208,37.999995 c -8.864,0 -16,7.136 -16,16 v 16 h -64 c -17.728,0 -32.000001,14.272 -32.000001,32.000005 0,117.33332 0,352 0,352 0,17.728 14.272001,32 32.000001,32 h 256 c 17.728,0 32,-14.272 32,-32 V 134 102 C 416,84.271995 401.728,69.999995 384,69.999995 h -64 v -16 c 0,-8.864 -7.136,-16 -16,-16 z m 9.6,32 h 76.8004 c 7.0912,0 12.7251,6.37004 12.7988,13.87695 V 102 h 51.2012 C 372.5828,102 384,114.08703 384,129.10156 c 0,99.26562 0,198.53125 0,297.79687 C 384,441.91296 372.5828,454 358.4004,454 H 153.5996 C 139.4172,454 128,441.91296 128,426.89843 c 0,-99.37434 0,-198.74869 0,-298.12304 0,-15.01453 11.4172,-26.74635 25.5996,-26.77539 h 51.2012 V 83.550775 c 0,-7.50727 5.708,-13.55078 12.7992,-13.55078 z"
sodipodi:nodetypes="sscsccssscsscsssssscsccssccscss" />
<path
id="path3000-1-7-3"
d="m 159.99995,344 c -13.296,5e-5 -23.96289,9.92392 -24,24 v 54.01602 c 0,14.07612 10.622,24.00027 23.918,24.00027 h 192 c 13.296,0 24.082,-9.92415 24.082,-24.00027 V 368 c 0.0371,-14.07608 -10.704,-24 -24,-24 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ee4f84;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:197.553;marker:none;enable-background:accumulate"
sodipodi:nodetypes="cccsscccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
style="display:inline"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:docname="empty-charging.svg"
version="1.0"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:version="0.32"
id="svg2"
height="512"
width="512">
<defs
id="defs4" />
<sodipodi:namedview
inkscape:snap-global="true"
inkscape:snap-intersection-paths="true"
inkscape:object-paths="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-center="true"
inkscape:snap-grids="true"
inkscape:document-rotation="0"
inkscape:window-maximized="1"
inkscape:window-y="22"
inkscape:window-x="0"
inkscape:window-height="1030"
inkscape:window-width="1920"
inkscape:guide-bbox="true"
showguides="true"
inkscape:showpageshadow="false"
showgrid="false"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="290.89125"
inkscape:cx="343.91898"
inkscape:zoom="0.86750198"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1"
bordercolor="#fd0000"
pagecolor="#ffffff"
id="base">
<inkscape:grid
snapvisiblegridlinesonly="true"
empspacing="8"
enabled="true"
visible="true"
id="grid3672"
type="xygrid"
dotted="false"
spacingx="32"
spacingy="32" />
<sodipodi:guide
inkscape:color="rgb(0,0,255)"
inkscape:locked="false"
inkscape:label=""
id="guide1072"
orientation="-1,0"
position="1884,1184" />
</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
transform="translate(0,-6)"
style="display:inline"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Icon">
<path
sodipodi:nodetypes="sscsccssscsscsssssscsccssccscss"
d="m 208,37.999995 c -8.864,0 -16,7.136 -16,16 v 16 h -64 c -17.728,0 -32.000001,14.272 -32.000001,32.000005 0,117.33332 0,352 0,352 0,17.728 14.272001,32 32.000001,32 h 256 c 17.728,0 32,-14.272 32,-32 V 134 102 C 416,84.271995 401.728,69.999995 384,69.999995 h -64 v -16 c 0,-8.864 -7.136,-16 -16,-16 z m 9.6,32 h 76.8004 c 7.0912,0 12.7251,6.37004 12.7988,13.87695 V 102 h 51.2012 C 372.5828,102 384,114.08703 384,129.10156 c 0,99.26562 0,198.53125 0,297.79687 C 384,441.91296 372.5828,454 358.4004,454 H 153.5996 C 139.4172,454 128,441.91296 128,426.89843 c 0,-99.37434 0,-198.74869 0,-298.12304 0,-15.01453 11.4172,-26.74635 25.5996,-26.77539 h 51.2012 V 83.550775 c 0,-7.50727 5.708,-13.55078 12.7992,-13.55078 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:256;marker:none;enable-background:accumulate"
id="path3000-1-0" />
<path
sodipodi:nodetypes="ccsscccc"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ee4f84;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:197.553;marker:none;enable-background:accumulate"
d="m 160.082,398 c -13.296,5e-5 -23.96289,9.92392 -23.98145,24.00002 -0.0186,14.0761 10.60345,24.00025 23.89945,24.00025 h 192 c 13.296,0 24.082,-9.92415 24.10055,-24.00025 C 376.1191,407.92392 365.378,398 352.082,398 H 239.6414 Z"
id="path3000-1-7-3" />
<path
inkscape:connector-curvature="0"
id="rect3771"
d="M 231,137 331,287.00001 H 269.53809 L 281,387 181,237.00001 h 62.59009 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:200;marker:none;enable-background:accumulate" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg2"
sodipodi:version="0.32"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
version="1.0"
sodipodi:docname="empty.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
style="display:inline">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#fd0000"
borderopacity="1"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.53160627"
inkscape:cx="-67.465665"
inkscape:cy="101.47208"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:showpageshadow="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1920"
inkscape:window-height="1030"
inkscape:window-x="0"
inkscape:window-y="22"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:snap-grids="true"
inkscape:snap-center="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-global="true">
<inkscape:grid
spacingy="32"
spacingx="32"
dotted="false"
type="xygrid"
id="grid3672"
visible="true"
enabled="true"
empspacing="8"
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="Icon"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(0,-6)">
<path
id="path3000-1-0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:256;marker:none;enable-background:accumulate"
d="m 208,37.999995 c -8.864,0 -16,7.136 -16,16 v 16 h -64 c -17.728,0 -32.000001,14.272 -32.000001,32.000005 0,117.33332 0,352 0,352 0,17.728 14.272001,32 32.000001,32 h 256 c 17.728,0 32,-14.272 32,-32 V 134 102 C 416,84.271995 401.728,69.999995 384,69.999995 h -64 v -16 c 0,-8.864 -7.136,-16 -16,-16 z m 9.6,32 h 76.8004 c 7.0912,0 12.7251,6.37004 12.7988,13.87695 V 102 h 51.2012 C 372.5828,102 384,114.08703 384,129.10156 c 0,99.26562 0,198.53125 0,297.79687 C 384,441.91296 372.5828,454 358.4004,454 H 153.5996 C 139.4172,454 128,441.91296 128,426.89843 c 0,-99.37434 0,-198.74869 0,-298.12304 0,-15.01453 11.4172,-26.74635 25.5996,-26.77539 h 51.2012 V 83.550775 c 0,-7.50727 5.708,-13.55078 12.7992,-13.55078 z"
sodipodi:nodetypes="sscsccssscsscsssssscsccssccscss" />
<path
id="path3000-1-7-3"
d="m 136.082,422 v 0 m 0,0 c 0,14.07612 10.622,24.00027 23.918,24.00027 h 192 c 13.296,0 24.082,-9.92415 24.10055,-24.00025 C 376.1191,407.92392 365.378,398 352.082,398 h -192 c -13.296,5e-5 -23.96289,9.92392 -24,24"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ee4f84;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:197.553;marker:none;enable-background:accumulate"
sodipodi:nodetypes="cccsscccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
style="display:inline"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:docname="full-charging.svg"
version="1.0"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:version="0.32"
id="svg2"
height="512"
width="512">
<defs
id="defs4" />
<sodipodi:namedview
inkscape:snap-global="true"
inkscape:snap-intersection-paths="true"
inkscape:object-paths="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-center="true"
inkscape:snap-grids="true"
inkscape:document-rotation="0"
inkscape:window-maximized="1"
inkscape:window-y="22"
inkscape:window-x="0"
inkscape:window-height="1030"
inkscape:window-width="1920"
inkscape:guide-bbox="true"
showguides="true"
inkscape:showpageshadow="false"
showgrid="false"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="157.70003"
inkscape:cx="-97.043112"
inkscape:zoom="0.3306338"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1"
bordercolor="#fd0000"
pagecolor="#ffffff"
id="base">
<inkscape:grid
snapvisiblegridlinesonly="true"
empspacing="8"
enabled="true"
visible="true"
id="grid3672"
type="xygrid"
dotted="false"
spacingx="32"
spacingy="32" />
<sodipodi:guide
inkscape:color="rgb(0,0,255)"
inkscape:locked="false"
inkscape:label=""
id="guide1072"
orientation="-1,0"
position="1884,1184" />
</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
transform="translate(0,-6)"
style="display:inline"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Icon">
<path
sodipodi:nodetypes="sscsccssscsscsssssscsccssccscss"
d="m 208,37.999995 c -8.864,0 -16,7.136 -16,16 v 16 h -64 c -17.728,0 -32.000001,14.272 -32.000001,32.000005 0,117.33332 0,352 0,352 0,17.728 14.272001,32 32.000001,32 h 256 c 17.728,0 32,-14.272 32,-32 V 134 102 C 416,84.271995 401.728,69.999995 384,69.999995 h -64 v -16 c 0,-8.864 -7.136,-16 -16,-16 z m 9.6,32 h 76.8004 c 7.0912,0 12.7251,6.37004 12.7988,13.87695 V 102 h 51.2012 C 372.5828,102 384,114.08703 384,129.10156 c 0,99.26562 0,198.53125 0,297.79687 C 384,441.91296 372.5828,454 358.4004,454 H 153.5996 C 139.4172,454 128,441.91296 128,426.89843 c 0,-99.37434 0,-198.74869 0,-298.12304 0,-15.01453 11.4172,-26.74635 25.5996,-26.77539 h 51.2012 V 83.550775 c 0,-7.50727 5.708,-13.55078 12.7992,-13.55078 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:256;marker:none;enable-background:accumulate"
id="path3000-1-0" />
<path
sodipodi:nodetypes="scccccssccsccss"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#53e2ae;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:197.553;marker:none;enable-background:accumulate"
d="m 224.8008,77.96769 c -6.64801,0 -12,5.66602 -12,12.70408 V 110 H 160.082 c -13.296,5e-5 -23.96289,9.92392 -24,24 v 288 c 0,14.07612 10.622,24.00027 23.918,24.00027 h 192 c 13.296,0 24.082,-9.92415 24.082,-24.00027 V 134 c 0.0371,-14.07608 -10.704,-24 -24,-24 h -52.88281 l -0.0583,-19.328229 c -0.0305,-7.037989 -5.35199,-12.704081 -12,-12.704081 z"
id="path3000-1-7-3" />
<path
inkscape:connector-curvature="0"
id="rect3771"
d="M 231,137 331,287.00001 H 269.53809 L 281,387 181,237.00001 h 62.59009 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:200;marker:none;enable-background:accumulate" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg2"
sodipodi:version="0.32"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
version="1.0"
sodipodi:docname="full.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
style="display:inline">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#fd0000"
borderopacity="1"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.30920001"
inkscape:cx="582.25722"
inkscape:cy="237.97744"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:showpageshadow="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1920"
inkscape:window-height="1030"
inkscape:window-x="0"
inkscape:window-y="22"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:snap-grids="true"
inkscape:snap-center="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-global="true">
<inkscape:grid
spacingy="32"
spacingx="32"
dotted="false"
type="xygrid"
id="grid3672"
visible="true"
enabled="true"
empspacing="8"
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="Icon"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(0,-6)">
<path
id="path3000-1-0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:256;marker:none;enable-background:accumulate"
d="m 208,37.999995 c -8.864,0 -16,7.136 -16,16 v 16 h -64 c -17.728,0 -32.000001,14.272 -32.000001,32.000005 0,117.33332 0,352 0,352 0,17.728 14.272001,32 32.000001,32 h 256 c 17.728,0 32,-14.272 32,-32 V 134 102 C 416,84.271995 401.728,69.999995 384,69.999995 h -64 v -16 c 0,-8.864 -7.136,-16 -16,-16 z m 9.6,32 h 76.8004 c 7.0912,0 12.7251,6.37004 12.7988,13.87695 V 102 h 51.2012 C 372.5828,102 384,114.08703 384,129.10156 c 0,99.26562 0,198.53125 0,297.79687 C 384,441.91296 372.5828,454 358.4004,454 H 153.5996 C 139.4172,454 128,441.91296 128,426.89843 c 0,-99.37434 0,-198.74869 0,-298.12304 0,-15.01453 11.4172,-26.74635 25.5996,-26.77539 h 51.2012 V 83.550775 c 0,-7.50727 5.708,-13.55078 12.7992,-13.55078 z"
sodipodi:nodetypes="sscsccssscsscsssssscsccssccscss" />
<path
id="path3000-1-7-3"
d="m 224.8008,77.96769 c -6.64801,0 -12,5.66602 -12,12.70408 V 110 H 160.082 c -13.296,5e-5 -23.96289,9.92392 -24,24 v 288 c 0,14.07612 10.622,24.00027 23.918,24.00027 h 192 c 13.296,0 24.082,-9.92415 24.082,-24.00027 V 134 c 0.0371,-14.07608 -10.704,-24 -24,-24 h -52.88281 l -0.0583,-19.328229 c -0.0305,-7.037989 -5.35199,-12.704081 -12,-12.704081 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#53e2ae;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:197.553;marker:none;enable-background:accumulate"
sodipodi:nodetypes="scccccssccsccss" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
style="display:inline"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:docname="good-charging.svg"
version="1.0"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:version="0.32"
id="svg2"
height="512"
width="512">
<defs
id="defs4" />
<sodipodi:namedview
inkscape:snap-global="true"
inkscape:snap-intersection-paths="true"
inkscape:object-paths="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-center="true"
inkscape:snap-grids="true"
inkscape:document-rotation="0"
inkscape:window-maximized="1"
inkscape:window-y="22"
inkscape:window-x="0"
inkscape:window-height="1030"
inkscape:window-width="1920"
inkscape:guide-bbox="true"
showguides="true"
inkscape:showpageshadow="false"
showgrid="false"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="213.22616"
inkscape:cx="223.12994"
inkscape:zoom="0.61341654"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1"
bordercolor="#fd0000"
pagecolor="#ffffff"
id="base">
<inkscape:grid
snapvisiblegridlinesonly="true"
empspacing="8"
enabled="true"
visible="true"
id="grid3672"
type="xygrid"
dotted="false"
spacingx="32"
spacingy="32" />
<sodipodi:guide
inkscape:color="rgb(0,0,255)"
inkscape:locked="false"
inkscape:label=""
id="guide1072"
orientation="-1,0"
position="1884,1184" />
</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
transform="translate(0,-6)"
style="display:inline"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Icon">
<path
sodipodi:nodetypes="sscsccssscsscsssssscsccssccscss"
d="m 208,37.999995 c -8.864,0 -16,7.136 -16,16 v 16 h -64 c -17.728,0 -32.000001,14.272 -32.000001,32.000005 0,117.33332 0,352 0,352 0,17.728 14.272001,32 32.000001,32 h 256 c 17.728,0 32,-14.272 32,-32 V 134 102 C 416,84.271995 401.728,69.999995 384,69.999995 h -64 v -16 c 0,-8.864 -7.136,-16 -16,-16 z m 9.6,32 h 76.8004 c 7.0912,0 12.7251,6.37004 12.7988,13.87695 V 102 h 51.2012 C 372.5828,102 384,114.08703 384,129.10156 c 0,99.26562 0,198.53125 0,297.79687 C 384,441.91296 372.5828,454 358.4004,454 H 153.5996 C 139.4172,454 128,441.91296 128,426.89843 c 0,-99.37434 0,-198.74869 0,-298.12304 0,-15.01453 11.4172,-26.74635 25.5996,-26.77539 h 51.2012 V 83.550775 c 0,-7.50727 5.708,-13.55078 12.7992,-13.55078 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:256;marker:none;enable-background:accumulate"
id="path3000-1-0" />
<path
sodipodi:nodetypes="cccsscccc"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#53e2ae;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:197.553;marker:none;enable-background:accumulate"
d="m 160.082,174 c -13.296,5e-5 -23.96289,9.92392 -24,24 v 224 c 0,14.07612 10.622,24.00027 23.918,24.00027 h 192 c 13.296,0 24.082,-9.92415 24.082,-24.00027 V 198 c 0.0371,-14.07608 -10.704,-24 -24,-24 z"
id="path3000-1-7-3" />
<path
inkscape:connector-curvature="0"
id="rect3771"
d="M 231,137 331,287.00001 H 269.53809 L 281,387 181,237.00001 h 62.59009 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:200;marker:none;enable-background:accumulate" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg2"
sodipodi:version="0.32"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
version="1.0"
sodipodi:docname="good.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
style="display:inline">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#fd0000"
borderopacity="1"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.1473019"
inkscape:cx="310.09619"
inkscape:cy="224.34834"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:showpageshadow="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1920"
inkscape:window-height="1030"
inkscape:window-x="0"
inkscape:window-y="22"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:snap-grids="true"
inkscape:snap-center="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-global="true">
<inkscape:grid
spacingy="32"
spacingx="32"
dotted="false"
type="xygrid"
id="grid3672"
visible="true"
enabled="true"
empspacing="8"
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="Icon"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(0,-6)">
<path
id="path3000-1-0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:256;marker:none;enable-background:accumulate"
d="m 208,37.999995 c -8.864,0 -16,7.136 -16,16 v 16 h -64 c -17.728,0 -32.000001,14.272 -32.000001,32.000005 0,117.33332 0,352 0,352 0,17.728 14.272001,32 32.000001,32 h 256 c 17.728,0 32,-14.272 32,-32 V 134 102 C 416,84.271995 401.728,69.999995 384,69.999995 h -64 v -16 c 0,-8.864 -7.136,-16 -16,-16 z m 9.6,32 h 76.8004 c 7.0912,0 12.7251,6.37004 12.7988,13.87695 V 102 h 51.2012 C 372.5828,102 384,114.08703 384,129.10156 c 0,99.26562 0,198.53125 0,297.79687 C 384,441.91296 372.5828,454 358.4004,454 H 153.5996 C 139.4172,454 128,441.91296 128,426.89843 c 0,-99.37434 0,-198.74869 0,-298.12304 0,-15.01453 11.4172,-26.74635 25.5996,-26.77539 h 51.2012 V 83.550775 c 0,-7.50727 5.708,-13.55078 12.7992,-13.55078 z"
sodipodi:nodetypes="sscsccssscsscsssssscsccssccscss" />
<path
id="path3000-1-7-3"
d="m 160.082,174 c -13.296,5e-5 -23.96289,9.92392 -24,24 v 224 c 0,14.07612 10.622,24.00027 23.918,24.00027 h 192 c 13.296,0 24.082,-9.92415 24.082,-24.00027 V 198 c 0.0371,-14.07608 -10.704,-24 -24,-24 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#53e2ae;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:197.553;marker:none;enable-background:accumulate"
sodipodi:nodetypes="cccsscccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
style="display:inline"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:docname="low-charging.svg"
version="1.0"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:version="0.32"
id="svg2"
height="512"
width="512">
<defs
id="defs4" />
<sodipodi:namedview
inkscape:snap-global="true"
inkscape:snap-intersection-paths="true"
inkscape:object-paths="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-center="true"
inkscape:snap-grids="true"
inkscape:document-rotation="0"
inkscape:window-maximized="1"
inkscape:window-y="22"
inkscape:window-x="0"
inkscape:window-height="1030"
inkscape:window-width="1920"
inkscape:guide-bbox="true"
showguides="true"
inkscape:showpageshadow="false"
showgrid="false"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="311.9877"
inkscape:cx="432.88915"
inkscape:zoom="0.61341654"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1"
bordercolor="#fd0000"
pagecolor="#ffffff"
id="base">
<inkscape:grid
snapvisiblegridlinesonly="true"
empspacing="8"
enabled="true"
visible="true"
id="grid3672"
type="xygrid"
dotted="false"
spacingx="32"
spacingy="32" />
<sodipodi:guide
inkscape:color="rgb(0,0,255)"
inkscape:locked="false"
inkscape:label=""
id="guide1072"
orientation="-1,0"
position="1884,1184" />
</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
transform="translate(0,-6)"
style="display:inline"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Icon">
<path
sodipodi:nodetypes="sscsccssscsscsssssscsccssccscss"
d="m 208,37.999995 c -8.864,0 -16,7.136 -16,16 v 16 h -64 c -17.728,0 -32.000001,14.272 -32.000001,32.000005 0,117.33332 0,352 0,352 0,17.728 14.272001,32 32.000001,32 h 256 c 17.728,0 32,-14.272 32,-32 V 134 102 C 416,84.271995 401.728,69.999995 384,69.999995 h -64 v -16 c 0,-8.864 -7.136,-16 -16,-16 z m 9.6,32 h 76.8004 c 7.0912,0 12.7251,6.37004 12.7988,13.87695 V 102 h 51.2012 C 372.5828,102 384,114.08703 384,129.10156 c 0,99.26562 0,198.53125 0,297.79687 C 384,441.91296 372.5828,454 358.4004,454 H 153.5996 C 139.4172,454 128,441.91296 128,426.89843 c 0,-99.37434 0,-198.74869 0,-298.12304 0,-15.01453 11.4172,-26.74635 25.5996,-26.77539 h 51.2012 V 83.550775 c 0,-7.50727 5.708,-13.55078 12.7992,-13.55078 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:256;marker:none;enable-background:accumulate"
id="path3000-1-0" />
<path
sodipodi:nodetypes="cccsscccc"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#f1ff52;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:197.553;marker:none;enable-background:accumulate"
d="m 160.082,278 c -13.296,5e-5 -23.96289,9.92392 -24,24 v 120 c 0,14.07612 10.622,24.00027 23.918,24.00027 h 192 c 13.296,0 24.082,-9.92415 24.082,-24.00027 V 302 c 0.0371,-14.07608 -10.704,-24 -24,-24 z"
id="path3000-1-7-3" />
<path
inkscape:connector-curvature="0"
id="rect3771"
d="M 231,137 331,287.00001 H 269.53809 L 281,387 181,237.00001 h 62.59009 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:200;marker:none;enable-background:accumulate" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg2"
sodipodi:version="0.32"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
version="1.0"
sodipodi:docname="low.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
style="display:inline">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#fd0000"
borderopacity="1"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="359.30722"
inkscape:cy="289.16362"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:showpageshadow="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1920"
inkscape:window-height="1030"
inkscape:window-x="0"
inkscape:window-y="22"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:snap-grids="true"
inkscape:snap-center="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:snap-global="true">
<inkscape:grid
spacingy="32"
spacingx="32"
dotted="false"
type="xygrid"
id="grid3672"
visible="true"
enabled="true"
empspacing="8"
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="Icon"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"
transform="translate(0,-6)">
<path
id="path3000-1-0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:256;marker:none;enable-background:accumulate"
d="m 208,37.999995 c -8.864,0 -16,7.136 -16,16 v 16 h -64 c -17.728,0 -32.000001,14.272 -32.000001,32.000005 0,117.33332 0,352 0,352 0,17.728 14.272001,32 32.000001,32 h 256 c 17.728,0 32,-14.272 32,-32 V 134 102 C 416,84.271995 401.728,69.999995 384,69.999995 h -64 v -16 c 0,-8.864 -7.136,-16 -16,-16 z m 9.6,32 h 76.8004 c 7.0912,0 12.7251,6.37004 12.7988,13.87695 V 102 h 51.2012 C 372.5828,102 384,114.08703 384,129.10156 c 0,99.26562 0,198.53125 0,297.79687 C 384,441.91296 372.5828,454 358.4004,454 H 153.5996 C 139.4172,454 128,441.91296 128,426.89843 c 0,-99.37434 0,-198.74869 0,-298.12304 0,-15.01453 11.4172,-26.74635 25.5996,-26.77539 h 51.2012 V 83.550775 c 0,-7.50727 5.708,-13.55078 12.7992,-13.55078 z"
sodipodi:nodetypes="sscsccssscsscsssssscsccssccscss" />
<path
id="path3000-1-7-3"
d="m 160.082,278 c -13.296,5e-5 -23.96289,9.92392 -24,24 v 120 c 0,14.07612 10.622,24.00027 23.918,24.00027 h 192 c 13.296,0 24.082,-9.92415 24.082,-24.00027 V 302 c 0.0371,-14.07608 -10.704,-24 -24,-24 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#f1ff52;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:197.553;marker:none;enable-background:accumulate"
sodipodi:nodetypes="cccsscccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,136 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
style="display:inline"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:docname="missing.svg"
version="1.0"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:version="0.32"
id="svg2"
height="512"
width="512">
<defs
id="defs4">
<linearGradient
inkscape:collect="always"
id="linearGradient851">
<stop
style="stop-color:#53e2ae;stop-opacity:1;"
offset="0"
id="stop847" />
<stop
style="stop-color:#ee4f84;stop-opacity:1"
offset="1"
id="stop849" />
</linearGradient>
<rect
x="-449.75083"
y="-274.65846"
width="979.68979"
height="155.1466"
id="rect843" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient851"
id="linearGradient853"
x1="253.50555"
y1="180.27705"
x2="254.76735"
y2="376.35596"
gradientUnits="userSpaceOnUse"
spreadMethod="pad" />
<rect
id="rect843-4"
height="155.14661"
width="979.68982"
y="-274.65845"
x="-449.75082" />
<rect
id="rect872"
height="155.14661"
width="979.68982"
y="-274.65845"
x="-449.75082" />
</defs>
<sodipodi:namedview
inkscape:snap-global="true"
inkscape:snap-intersection-paths="true"
inkscape:object-paths="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-center="true"
inkscape:snap-grids="true"
inkscape:document-rotation="0"
inkscape:window-maximized="1"
inkscape:window-y="22"
inkscape:window-x="0"
inkscape:window-height="1030"
inkscape:window-width="1920"
inkscape:guide-bbox="true"
showguides="true"
inkscape:showpageshadow="false"
showgrid="false"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="296.2802"
inkscape:cx="228.91118"
inkscape:zoom="1.580368"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1"
bordercolor="#fd0000"
pagecolor="#ffffff"
id="base">
<inkscape:grid
snapvisiblegridlinesonly="true"
empspacing="8"
enabled="true"
visible="true"
id="grid3672"
type="xygrid"
dotted="false"
spacingx="32"
spacingy="32" />
</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
transform="translate(0,-6)"
style="display:inline"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Icon">
<path
sodipodi:nodetypes="sscsccssscsscsssssscsccssccscss"
d="m 208,37.999995 c -8.864,0 -16,7.136 -16,16 v 16 h -64 c -17.728,0 -32.000001,14.272 -32.000001,32.000005 0,117.33332 0,352 0,352 0,17.728 14.272001,32 32.000001,32 h 256 c 17.728,0 32,-14.272 32,-32 V 134 102 C 416,84.271995 401.728,69.999995 384,69.999995 h -64 v -16 c 0,-8.864 -7.136,-16 -16,-16 z m 9.6,32 h 76.8004 c 7.0912,0 12.7251,6.37004 12.7988,13.87695 V 102 h 51.2012 C 372.5828,102 384,114.08703 384,129.10156 c 0,99.26562 0,198.53125 0,297.79687 C 384,441.91296 372.5828,454 358.4004,454 H 153.5996 C 139.4172,454 128,441.91296 128,426.89843 c 0,-99.37434 0,-198.74869 0,-298.12304 0,-15.01453 11.4172,-26.74635 25.5996,-26.77539 h 51.2012 V 83.550775 c 0,-7.50727 5.708,-13.55078 12.7992,-13.55078 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:256;marker:none;enable-background:accumulate"
id="path3000-1-0" />
<path
sodipodi:nodetypes="scccccssccsccss"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient853);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:197.553;marker:none;enable-background:accumulate"
d="m 224.8008,77.96769 c -6.64801,0 -12,5.66602 -12,12.70408 V 110 H 160.082 c -13.296,5e-5 -23.96289,9.92392 -24,24 v 288 c 0,14.07612 10.622,24.00027 23.918,24.00027 h 192 c 13.296,0 24.082,-9.92415 24.082,-24.00027 V 134 c 0.0371,-14.07608 -10.704,-24 -24,-24 h -52.88281 l -0.0583,-19.328229 c -0.0305,-7.037989 -5.35199,-12.704081 -12,-12.704081 z"
id="path3000-1-7-3" />
<path
d="m 232.42844,339.19861 h 30.97097 v 38.75191 h -30.97097 z m 30.05563,-22.42724 h -29.14021 v -23.49522 q 0,-15.40924 4.27183,-25.32606 4.2719,-9.91681 18.00286,-23.03754 l 13.73096,-13.57841 q 8.69628,-8.08605 12.51044,-15.25661 3.96678,-7.17063 3.96678,-14.64638 0,-13.57849 -10.06944,-21.96958 -9.91682,-8.39116 -26.39396,-8.39116 -12.05276,0 -25.78372,5.3398 -13.57841,5.33979 -28.37743,15.5618 v -28.68254 q 14.34127,-8.69628 28.98766,-12.9681 14.79893,-4.2719 30.51329,-4.2719 28.07223,0 45.00712,14.79893 17.08745,14.79894 17.08745,39.05702 0,11.5951 -5.49236,22.12213 -5.49243,10.37456 -19.22339,23.4953 l -13.42585,13.12066 q -7.17064,7.17063 -10.22201,11.28998 -2.89873,3.96671 -4.11926,7.78086 -0.91542,3.20392 -1.37309,7.78086 -0.45775,4.57701 -0.45775,12.51051 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;letter-spacing:0px;word-spacing:0px;white-space:pre;fill:#ededec;fill-opacity:1;stroke:none;stroke-width:7.8114"
id="path845" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-0.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.317647;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-1.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.317647;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-2.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.317647;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-3.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.317647;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-4.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.317647;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-5.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.317647;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-6.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.317647;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-7.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.52151294"
inkscape:cx="93.063614"
inkscape:cy="70.093897"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.317647;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-8.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.52151294"
inkscape:cx="-2.6310868"
inkscape:cy="47.422597"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-0.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.317647;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-c1.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.317647;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-c2.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-c3.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-c4.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-c5.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-c6.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-c7.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#efefec;fill-opacity:0.31764707;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,339 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
id="svg3173"
version="1.1"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="brightness-c8.svg">
<defs
id="defs3175">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect958"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect956"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect954"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect952"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect918"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect899"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect880"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="copy_rotate"
starting_point="0,0"
origin="256,256"
id="path-effect861"
is_visible="true"
lpeversion="1"
method="normal"
num_copies="8"
starting_angle="0"
rotation_angle="60"
gap="-0.01"
copies_to_360="true"
mirror_copies="false"
split_items="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="16"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
lpeversion="1"
is_visible="true"
id="path-effect859"
effect="fillet_chamfer" />
<inkscape:path-effect
split_items="false"
mirror_copies="false"
copies_to_360="true"
gap="-0.01"
rotation_angle="60"
starting_angle="0"
num_copies="8"
method="normal"
lpeversion="1"
is_visible="true"
id="path-effect1022"
origin="256,256"
starting_point="0,0"
effect="copy_rotate" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1020"
is_visible="true"
lpeversion="1"
satellites_param="C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1 @ C,0,0,1,0,16,0,1"
unit="px"
method="auto"
mode="F"
radius="16"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="32"
mode="F"
method="auto"
unit="px"
satellites_param="C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 @ C,0,1,1,0,32,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,32,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect900"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="6"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect904"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.73753067"
inkscape:cx="78.27392"
inkscape:cy="209.70823"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
inkscape:window-width="591"
inkscape:window-height="430"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
inkscape:snap-midpoints="true"
inkscape:snap-smooth-nodes="true" />
<metadata
id="metadata3178">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ededec;stroke-width:37.476;stroke-opacity:1;marker:none;enable-background:new"
d="m 256,143.572 c -62.09228,0 -112.428,50.33572 -112.428,112.428 0,62.09228 50.33572,112.428 112.428,112.428 62.09228,0 112.428,-50.33572 112.428,-112.428 0,-62.09228 -50.33572,-112.428 -112.428,-112.428 z"
id="path1114" />
<path
inkscape:path-effect="#path-effect859"
inkscape:original-d="m 511.99999,278.3825 h -97.92348 v -44.76502 h 97.92348 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 495.99999,278.3825 h -65.92348 l -16,-16 v -12.76502 l 16,-16 h 65.92348 l 16,16 v 12.76502 z"
id="rect2988-8-3-9-1-0"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9"
d="M 81.92348,278.3825 H 16 L -6.1201945e-8,262.3825 V 249.61748 L 16,233.61748 h 65.92348 l 16,16 v 12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="M 97.92348,278.3825 H -6.1201945e-8 V 233.61748 H 97.92348 Z"
inkscape:path-effect="#path-effect880" />
<path
inkscape:path-effect="#path-effect899"
inkscape:original-d="M 233.61748,97.92348 V -6.1201995e-8 H 278.3825 V 97.92348 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="M 233.61748,81.92348 V 16 l 16,-16.000000061201994 H 262.3825 L 278.3825,16 v 65.92348 l -16,16 h -12.76502 z"
id="rect2988-8-3-9-1-0-9-3"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-4"
d="m 233.61748,495.99999 0,-65.92348 16,-16 h 12.76502 l 16,16 v 65.92348 l -16,16 h -12.76502 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 233.61748,511.99999 v -97.92348 h 44.76502 v 97.92348 z"
inkscape:path-effect="#path-effect918" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-91"
d="m 410.4352,442.08885 -46.61494,-46.61494 0,-22.62742 9.02624,-9.02623 22.62742,0 46.61494,46.61494 0,22.62742 -9.02624,9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 421.74891,453.40256 -69.24236,-69.24236 31.65366,-31.65365 69.24236,69.24236 z"
inkscape:path-effect="#path-effect958" />
<path
inkscape:path-effect="#path-effect956"
inkscape:original-d="M 128.95261,160.60624 59.710255,91.363891 91.3639,59.710243 160.60625,128.95259 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 117.6389,149.29253 -46.614936,-46.61493 -1e-6,-22.627418 9.026229,-9.02623 22.627418,-10e-7 46.61493,46.614929 0,22.62742 -9.02622,9.02623 z"
id="rect2988-8-3-9-1-0-9-2"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:nodetypes="ccccc"
id="rect2988-8-3-9-1-0-9-3-9"
d="m 363.82027,117.63888 46.61493,-46.614935 22.62742,0 9.02623,9.026236 0,22.627419 -46.61493,46.61493 -22.62742,0 -9.02623,-9.02623 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
inkscape:original-d="m 352.50656,128.95259 69.24235,-69.242354 31.65365,31.653654 -69.24235,69.24235 z"
inkscape:path-effect="#path-effect954" />
<path
inkscape:path-effect="#path-effect952"
inkscape:original-d="M 59.710249,421.7489 128.95261,352.50655 160.60625,384.1602 91.3639,453.40256 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:44.7651;marker:none;enable-background:new"
d="m 71.023958,410.43519 46.614942,-46.61493 22.62742,0 9.02622,9.02623 0,22.62742 -46.61493,46.61494 -22.627417,0 -9.026237,-9.02624 z"
id="rect2988-8-3-9-1-0-9-3-4-8"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,105 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
viewBox="0 0 135.46666 135.46667"
version="1.1"
id="svg8"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="cornerne.svg">
<defs
id="defs2" />
<sodipodi:namedview
units="px"
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.92405225"
inkscape:cx="303.45475"
inkscape:cy="445.11499"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
inkscape:snap-center="true"
inkscape:snap-object-midpoints="false"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="false"
showguides="true"
inkscape:guide-bbox="true" />
<metadata
id="metadata5">
<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">
<g
id="g2637-7-4"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
style="opacity:1" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:21.22;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1225"
width="84.666664"
height="84.666664"
x="42.333302"
y="8.466671" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:20.7719;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227"
width="25.4"
height="33.866669"
x="8.4666357"
y="8.466671" />
<rect
y="50.800003"
x="8.4666357"
height="33.866669"
width="25.4"
id="rect1227-0"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:20.7719;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:20.7719;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-4"
width="25.4"
height="33.866669"
x="8.4666357"
y="93.133339" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:22.0319;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1"
width="25.4"
height="38.099998"
x="-127.00001"
y="42.333302"
transform="rotate(-90)" />
<rect
transform="rotate(-90)"
y="88.899971"
x="-127.00001"
height="38.099998"
width="25.4"
id="rect1227-0-1-5"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:22.0319;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="cornernw.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="463.92067"
inkscape:cx="185.97574"
inkscape:zoom="0.67083548"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
style="opacity:1"
transform="matrix(1,0,0,-1,31.244559,-160.9871)"
id="g2637-7-4" />
<rect
transform="scale(-1,1)"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:21.22;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1225-16"
width="84.666664"
height="84.666664"
x="-93.133331"
y="8.4666634" />
<rect
transform="scale(-1,1)"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:20.7719;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-3"
width="25.4"
height="33.866669"
x="-127"
y="8.4666634" />
<rect
transform="scale(-1,1)"
y="50.799995"
x="-127"
height="33.866669"
width="25.4"
id="rect1227-0-2"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:20.7719;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
transform="scale(-1,1)"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:20.7719;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-4-4"
width="25.4"
height="33.866669"
x="-127"
y="93.133331" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:22.0319;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-73"
width="25.4"
height="38.099998"
x="-127"
y="-93.133331"
transform="matrix(0,-1,-1,0,0,0)" />
<rect
transform="matrix(0,-1,-1,0,0,0)"
y="-46.566666"
x="-127"
height="38.099998"
width="25.4"
id="rect1227-0-1-5-4"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:22.0319;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="cornerse.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="345.62315"
inkscape:cx="155.02458"
inkscape:zoom="0.67083548"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
style="opacity:1"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
id="g2637-7-4" />
<rect
transform="scale(1,-1)"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:21.22;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1225-1"
width="84.666672"
height="84.666664"
x="42.333389"
y="-127.00001" />
<rect
transform="scale(1,-1)"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:20.7719;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-06"
width="25.400002"
height="33.866669"
x="8.4667225"
y="-127.00001" />
<rect
transform="scale(1,-1)"
y="-84.666672"
x="8.4667225"
height="33.866669"
width="25.400002"
id="rect1227-0-5"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:20.7719;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
transform="scale(1,-1)"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:20.7719;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-4-2"
width="25.400002"
height="33.866669"
x="8.4667225"
y="-42.33334" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:22.0319;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-7"
width="25.4"
height="38.100002"
x="8.4666748"
y="42.333389"
transform="matrix(0,1,1,0,0,0)" />
<rect
transform="matrix(0,1,1,0,0,0)"
y="88.900063"
x="8.4666748"
height="38.100002"
width="25.4"
id="rect1227-0-1-5-2"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:22.0319;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="cornersw.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="203.15642"
inkscape:cx="-10.58583"
inkscape:zoom="0.94870463"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
style="opacity:1"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
id="g2637-7-4" />
<rect
transform="scale(-1)"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:21.22;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1225-167"
width="84.666664"
height="84.666664"
x="-93.133316"
y="-126.99998" />
<rect
transform="scale(-1)"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:20.7719;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-8"
width="25.4"
height="33.866669"
x="-126.99998"
y="-126.99998" />
<rect
transform="scale(-1)"
y="-84.666649"
x="-126.99998"
height="33.866669"
width="25.4"
id="rect1227-0-20"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:20.7719;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
transform="scale(-1)"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:20.7719;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-4-8"
width="25.4"
height="33.866669"
x="-126.99998"
y="-42.333317" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:22.0319;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-2"
width="25.4"
height="38.099998"
x="8.4666481"
y="-93.133316"
transform="rotate(90)" />
<rect
transform="rotate(90)"
y="-46.56665"
x="8.4666481"
height="38.099998"
width="25.4"
id="rect1227-0-1-5-9"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:22.0319;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="dwindle.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="328.18539"
inkscape:cx="116.6545"
inkscape:zoom="0.94870463"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<rect
transform="scale(1,-1)"
y="-127.00002"
x="8.4665794"
height="118.53336"
width="55.033333"
id="rect1227-0-1-4-5-07-0-9-8-2-5"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:57.2015;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:40.4475;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-8-2-7-54"
width="55.033333"
height="59.266666"
x="71.966835"
y="-67.733353"
transform="scale(1,-1)" />
<rect
transform="scale(-1,1)"
y="76.20002"
x="-99.483505"
height="50.799999"
width="27.516666"
id="rect1227-0-1-4-5-07-0-9-8-2-7-5-9"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:26.4789;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:15.5788;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-8-2-7-5-2-0"
width="19.049999"
height="25.4"
x="-127.00017"
y="76.20002"
transform="scale(-1,1)" />
<rect
transform="scale(-1,1)"
y="110.06668"
x="-127.00017"
height="16.933334"
width="19.049999"
id="rect1227-0-1-4-5-07-0-9-8-2-7-5-2-7-3"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:12.7201;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="fairh.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="510.1867"
inkscape:cx="58.746435"
inkscape:zoom="0.67083548"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
style="opacity:1"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
id="g2637-7-4" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:30.5754;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9"
width="33.866669"
height="55.033333"
x="8.466507"
y="-63.500015"
transform="scale(1,-1)" />
<rect
transform="scale(1,-1)"
y="-63.500015"
x="50.799839"
height="55.033333"
width="33.866669"
id="rect1227-0-1-4-5-07-0-9-0"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:30.5753;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
transform="scale(1,-1)"
y="-63.500015"
x="93.133171"
height="55.033333"
width="33.866669"
id="rect1227-0-1-4-5-07-0-9-4"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:30.5753;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
transform="scale(1,-1)"
y="-127.00002"
x="8.4666357"
height="55.033333"
width="33.866669"
id="rect1227-0-1-4-5-07-0-9-7"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:30.5754;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:30.5754;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-0-3"
width="33.866669"
height="55.033333"
x="50.799969"
y="-127.00002"
transform="scale(1,-1)" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:30.5754;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-4-3"
width="33.866669"
height="55.033333"
x="93.133301"
y="-127.00002"
transform="scale(1,-1)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="fairv.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="227.39129"
inkscape:cx="201.37678"
inkscape:zoom="0.67083548"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
style="opacity:1"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
id="g2637-7-4" />
<rect
transform="matrix(0,1,1,0,0,0)"
y="71.966614"
x="8.4666433"
height="55.033333"
width="33.866669"
id="rect1227-0-1-4-5-07-0-9-8"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:30.5754;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:30.5754;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-0-4"
width="33.866669"
height="55.033333"
x="50.799976"
y="71.966614"
transform="matrix(0,1,1,0,0,0)" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:30.5754;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-4-0"
width="33.866669"
height="55.033333"
x="93.133308"
y="71.966614"
transform="matrix(0,1,1,0,0,0)" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:30.5754;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-7-7"
width="33.866669"
height="55.033333"
x="8.466773"
y="8.4666128"
transform="matrix(0,1,1,0,0,0)" />
<rect
transform="matrix(0,1,1,0,0,0)"
y="8.4666128"
x="50.800106"
height="55.033333"
width="33.866669"
id="rect1227-0-1-4-5-07-0-9-0-3-7"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:30.5754;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
transform="matrix(0,1,1,0,0,0)"
y="8.4666128"
x="93.133438"
height="55.033333"
width="33.866669"
id="rect1227-0-1-4-5-07-0-9-4-3-8"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:30.5754;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="512"
height="512"
viewBox="0 0 135.46666 135.46667"
version="1.1"
id="svg8"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="floating.svg">
<defs
id="defs2" />
<sodipodi:namedview
units="px"
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.43128842"
inkscape:cx="182.87003"
inkscape:cy="322.2325"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
inkscape:snap-center="true"
inkscape:snap-object-midpoints="false"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="false"
showguides="true"
inkscape:guide-bbox="true" />
<metadata
id="metadata5">
<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">
<g
id="g2637-7-4"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
style="opacity:1" />
<path
id="rect1225-8-7"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.2453;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
d="M 118.77931,42.333787 V 101.84623 H 25.397887 v 25.15343 H 127.00044 V 42.333787 Z" />
<rect
y="8.4670753"
x="8.4663439"
height="84.666664"
width="101.6"
id="rect1225-8"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.2453;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,65 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="fullscreen.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="216.50578"
inkscape:cx="206.15781"
inkscape:zoom="0.67083548"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
style="opacity:1"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
id="g2637-7-4" />
<path
d="M 8.4658106,8.4659429 V 127.00079 H 127.00065 V 8.4659429 Z M 16.931968,16.9321 H 53.53111 L 16.931968,53.531243 Z m 64.999019,0 H 118.53452 V 53.535611 Z M 118.53452,81.931119 V 118.53463 H 81.935377 Z M 16.931968,81.935599 53.52672,118.53474 H 16.931968 Z"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:29.6332;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-8-2-7-2-3" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,89 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="magnifier.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="341.89849"
inkscape:cx="90.839623"
inkscape:zoom="0.94870463"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
style="opacity:1"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
id="g2637-7-4" />
<path
sodipodi:nodetypes="cccccccc"
d="M 76.20019,8.4643077 V 25.400967 h 25.39845 l 8.46616,8.466157 v 25.398449 h 16.93665 V 8.4643077 Z"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:16.9333;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-8-2-7-2-4" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:16.9333;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-8-2-7-2"
width="67.733337"
height="67.733337"
x="33.866692"
y="-101.59898"
transform="scale(1,-1)" />
<path
id="rect1227-0-1-4-5-07-0-9-8-2-7-2-4-7"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:16.9333;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
d="M 59.26509,8.4623719 V 25.399007 H 33.866698 l -8.466159,8.466159 V 59.263642 H 8.4639041 V 8.4623719 Z"
sodipodi:nodetypes="cccccccc" />
<path
id="rect1227-0-1-4-5-07-0-9-8-2-7-2-4-71"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:16.9333;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
d="m 76.201556,127.00231 v -16.93664 h 25.398474 l 8.46616,-8.46615 V 76.20104 h 16.93664 v 50.80127 z"
sodipodi:nodetypes="cccccccc" />
<path
sodipodi:nodetypes="cccccccc"
d="M 59.266444,127.00426 V 110.06762 H 33.868053 l -8.466159,-8.46616 V 76.202987 H 8.4652587 v 50.801273 z"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:16.9333;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-8-2-7-2-4-7-8" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,65 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="max.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="414.22903"
inkscape:cx="132.7635"
inkscape:zoom="0.94870463"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
style="opacity:1"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
id="g2637-7-4" />
<path
d="M 8.4681307,8.4658107 V 127.00085 H 126.99854 V 8.4658107 Z M 67.735576,18.638291 82.961499,33.864532 H 52.509573 Z M 34.264612,52.109012 V 83.357331 L 18.640611,67.733333 Z m 67.733688,0.796801 14.82784,14.82784 -14.82784,14.827838 z M 52.505173,101.59829 h 30.460726 l -15.230323,15.23008 z"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:29.6331;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-8-2-7-2-3-6" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="spiral.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="421.80057"
inkscape:cx="403.57584"
inkscape:zoom="0.94870463"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
style="opacity:1"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
id="g2637-7-4" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:57.2014;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-8-2"
width="55.033333"
height="118.53335"
x="8.466608"
y="-127.00005"
transform="scale(1,-1)" />
<rect
transform="scale(1,-1)"
y="-67.733383"
x="71.966866"
height="59.266666"
width="55.033333"
id="rect1227-0-1-4-5-07-0-9-8-2-7"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:40.4475;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:26.479;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-8-2-7-5"
width="27.516666"
height="50.799999"
x="99.483536"
y="-127.00005"
transform="scale(1,-1)" />
<rect
transform="scale(1,-1)"
y="-127.00005"
x="71.966866"
height="25.4"
width="19.049999"
id="rect1227-0-1-4-5-07-0-9-8-2-7-5-2"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:15.5788;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:12.7201;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-9-8-2-7-5-2-7"
width="19.049999"
height="16.933334"
x="71.966866"
y="-93.133385"
transform="scale(1,-1)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,117 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="tile.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="136.13263"
inkscape:cx="188.01572"
inkscape:zoom="0.94870463"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
style="opacity:1"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
id="g2637-7-4" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:15.8796;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1225-0-3-1"
width="118.53333"
height="33.866669"
x="8.4666615"
y="-42.333397"
transform="rotate(90)" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-84-7"
width="33.866669"
height="33.866669"
x="50.800064"
y="-126.99999"
transform="scale(1,-1)" />
<rect
transform="scale(1,-1)"
y="-126.99999"
x="93.133392"
height="33.866669"
width="33.866669"
id="rect1227-0-1-4-2-94-7"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
transform="scale(1,-1)"
y="-84.666664"
x="50.800064"
height="33.866669"
width="33.866669"
id="rect1227-0-1-4-8-5-6"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-2-7-3-3"
width="33.866669"
height="33.866669"
x="93.133392"
y="-84.666664"
transform="scale(1,-1)" />
<rect
transform="scale(1,-1)"
y="-42.333328"
x="50.800064"
height="33.866669"
width="33.866669"
id="rect1227-0-1-4-5-07-0"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-2-3-6-9"
width="33.866669"
height="33.866669"
x="93.133392"
y="-42.333328"
transform="scale(1,-1)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -0,0 +1,116 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="tilebottom.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="287.71811"
inkscape:cx="155.81292"
inkscape:zoom="1.341671"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
style="opacity:1"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
id="g2637-7-4" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:15.8796;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1225-0"
width="118.53333"
height="33.866669"
x="8.4667501"
y="8.4666471" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9853;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4"
width="33.866669"
height="33.866669"
x="-84.666649"
y="-42.333416"
transform="matrix(0,-1,-1,0,0,0)" />
<rect
transform="matrix(0,-1,-1,0,0,0)"
y="-42.333416"
x="-126.99998"
height="33.866669"
width="33.866669"
id="rect1227-0-1-4-2"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
transform="matrix(0,-1,-1,0,0,0)"
y="-84.666748"
x="-84.666649"
height="33.866669"
width="33.866669"
id="rect1227-0-1-4-8"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-2-7"
width="33.866669"
height="33.866669"
x="-126.99998"
y="-84.666748"
transform="matrix(0,-1,-1,0,0,0)" />
<rect
transform="matrix(0,-1,-1,0,0,0)"
y="-127.00008"
x="-84.666649"
height="33.866669"
width="33.866669"
id="rect1227-0-1-4-5"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-2-3"
width="33.866669"
height="33.866669"
x="-126.99998"
y="-127.00008"
transform="matrix(0,-1,-1,0,0,0)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1,117 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="tileleft.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="275.31206"
inkscape:cx="296.19506"
inkscape:zoom="0.67083548"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
style="opacity:1"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
id="g2637-7-4" />
<rect
transform="matrix(0,1,1,0,0,0)"
y="93.133278"
x="8.4666758"
height="33.866669"
width="118.53333"
id="rect1225-0-3-1-0"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:15.8796;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
transform="scale(-1)"
y="-127.00004"
x="-84.666611"
height="33.866669"
width="33.866669"
id="rect1227-0-1-4-84-7-6"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-2-94-7-4"
width="33.866669"
height="33.866669"
x="-42.333279"
y="-127.00004"
transform="scale(-1)" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-8-5-6-6"
width="33.866669"
height="33.866669"
x="-84.666611"
y="-84.666679"
transform="scale(-1)" />
<rect
transform="scale(-1)"
y="-84.666679"
x="-42.333279"
height="33.866669"
width="33.866669"
id="rect1227-0-1-4-2-7-3-3-3"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07-0-0"
width="33.866669"
height="33.866669"
x="-84.666611"
y="-42.333344"
transform="scale(-1)" />
<rect
transform="scale(-1)"
y="-42.333344"
x="-42.333279"
height="33.866669"
width="33.866669"
id="rect1227-0-1-4-2-3-6-9-4"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1,117 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
sodipodi:docname="tiletop.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 135.46666 135.46667"
height="512"
width="512">
<defs
id="defs2" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:snap-smooth-nodes="false"
inkscape:object-nodes="true"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="true"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="595.38658"
inkscape:cx="354.98548"
inkscape:zoom="0.94870463"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
units="px" />
<metadata
id="metadata5">
<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
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<g
style="opacity:1"
transform="matrix(1,0,0,-1,33.399829,3.6101873)"
id="g2637-7-4" />
<rect
transform="scale(1,-1)"
y="-127.00001"
x="8.4667549"
height="33.866669"
width="118.53333"
id="rect1225-0-3"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:15.8796;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
transform="rotate(90)"
y="-42.33342"
x="50.800007"
height="33.866669"
width="33.866669"
id="rect1227-0-1-4-84"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-2-94"
width="33.866669"
height="33.866669"
x="8.4666748"
y="-42.33342"
transform="rotate(90)" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-8-5"
width="33.866669"
height="33.866669"
x="50.800007"
y="-84.666756"
transform="rotate(90)" />
<rect
transform="rotate(90)"
y="-84.666756"
x="8.4666748"
height="33.866669"
width="33.866669"
id="rect1227-0-1-4-2-7-3"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
<rect
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill"
id="rect1227-0-1-4-5-07"
width="33.866669"
height="33.866669"
x="50.800007"
y="-127.00009"
transform="rotate(90)" />
<rect
transform="rotate(90)"
y="-127.00009"
x="8.4666748"
height="33.866669"
width="33.866669"
id="rect1227-0-1-4-2-3-6"
style="fill:#f8f8f8;fill-opacity:1;stroke:none;stroke-width:23.9854;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

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