Reset old config
36
theme/bar.lua
Executable 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
@ -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
@ -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
@ -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
@ -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
@ -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
@ -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 |
102
theme/resources/icons/battery/caution-charging.svg
Executable 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 |
90
theme/resources/icons/battery/caution.svg
Executable 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 |
102
theme/resources/icons/battery/empty-charging.svg
Executable 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 |
90
theme/resources/icons/battery/empty.svg
Executable 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 |
102
theme/resources/icons/battery/full-charging.svg
Executable 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 |
90
theme/resources/icons/battery/full.svg
Executable 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 |
102
theme/resources/icons/battery/good-charging.svg
Executable 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 |
90
theme/resources/icons/battery/good.svg
Executable 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 |
102
theme/resources/icons/battery/low-charging.svg
Executable 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 |
90
theme/resources/icons/battery/low.svg
Executable 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 |
136
theme/resources/icons/battery/missing.svg
Executable 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 |
339
theme/resources/icons/brightness/clockwise/brightness-0.svg
Executable 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 |
339
theme/resources/icons/brightness/clockwise/brightness-1.svg
Executable 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 |
339
theme/resources/icons/brightness/clockwise/brightness-2.svg
Executable 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 |
339
theme/resources/icons/brightness/clockwise/brightness-3.svg
Executable 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 |
339
theme/resources/icons/brightness/clockwise/brightness-4.svg
Executable 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 |
339
theme/resources/icons/brightness/clockwise/brightness-5.svg
Executable 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 |
339
theme/resources/icons/brightness/clockwise/brightness-6.svg
Executable 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 |
339
theme/resources/icons/brightness/clockwise/brightness-7.svg
Executable 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 |
339
theme/resources/icons/brightness/clockwise/brightness-8.svg
Executable 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 |
339
theme/resources/icons/brightness/counterclockwise/brightness-0.svg
Executable 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 |
339
theme/resources/icons/brightness/counterclockwise/brightness-1.svg
Executable 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 |
339
theme/resources/icons/brightness/counterclockwise/brightness-2.svg
Executable 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 |
339
theme/resources/icons/brightness/counterclockwise/brightness-3.svg
Executable 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 |
339
theme/resources/icons/brightness/counterclockwise/brightness-4.svg
Executable 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 |
339
theme/resources/icons/brightness/counterclockwise/brightness-5.svg
Executable 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 |
339
theme/resources/icons/brightness/counterclockwise/brightness-6.svg
Executable 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 |
339
theme/resources/icons/brightness/counterclockwise/brightness-7.svg
Executable 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 |
339
theme/resources/icons/brightness/counterclockwise/brightness-8.svg
Executable 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 |
105
theme/resources/icons/layout/cornerne.svg
Executable 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 |
109
theme/resources/icons/layout/cornernw.svg
Executable 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 |
109
theme/resources/icons/layout/cornerse.svg
Executable 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 |
109
theme/resources/icons/layout/cornersw.svg
Executable 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 |
97
theme/resources/icons/layout/dwindle.svg
Executable 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 |
109
theme/resources/icons/layout/fairh.svg
Executable 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 |
109
theme/resources/icons/layout/fairv.svg
Executable 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 |
72
theme/resources/icons/layout/floating.svg
Executable 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 |
65
theme/resources/icons/layout/fullscreen.svg
Executable 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 |
89
theme/resources/icons/layout/magnifier.svg
Executable 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 |
65
theme/resources/icons/layout/max.svg
Executable 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 |
101
theme/resources/icons/layout/spiral.svg
Executable 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 |
117
theme/resources/icons/layout/tile.svg
Executable 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 |
116
theme/resources/icons/layout/tilebottom.svg
Executable 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 |
117
theme/resources/icons/layout/tileleft.svg
Executable 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 |
117
theme/resources/icons/layout/tiletop.svg
Executable 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 |
79
theme/resources/icons/music/pause-blue.svg
Executable file
@ -0,0 +1,79 @@
|
||||
<?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="64"
|
||||
height="64"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
sodipodi:docname="paused.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<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>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2537"
|
||||
inkscape:window-height="1394"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-center="true"
|
||||
inkscape:zoom="15.75"
|
||||
inkscape:cx="32"
|
||||
inkscape:cy="32"
|
||||
inkscape:window-x="1680"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg8">
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,1"
|
||||
id="guide841"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide843" />
|
||||
</sodipodi:namedview>
|
||||
<rect
|
||||
style="fill:#1793d1;fill-opacity:1;stroke-width:1.93061"
|
||||
id="rect839"
|
||||
width="16"
|
||||
height="48"
|
||||
x="8"
|
||||
y="8" />
|
||||
<rect
|
||||
style="fill:#1793d1;fill-opacity:1;stroke-width:1.93061"
|
||||
id="rect839-3"
|
||||
width="16"
|
||||
height="48"
|
||||
x="40"
|
||||
y="8" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
80
theme/resources/icons/music/pause-grey.svg
Executable file
@ -0,0 +1,80 @@
|
||||
<?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="64"
|
||||
height="64"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
sodipodi:docname="pause-grey.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1394"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-center="true"
|
||||
inkscape:zoom="15.75"
|
||||
inkscape:cx="32"
|
||||
inkscape:cy="32"
|
||||
inkscape:window-x="1680"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg8"
|
||||
inkscape:document-rotation="0">
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,1"
|
||||
id="guide841"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide843" />
|
||||
</sodipodi:namedview>
|
||||
<rect
|
||||
style="fill:#a7a7a7;fill-opacity:1;stroke-width:1.93061"
|
||||
id="rect839"
|
||||
width="16"
|
||||
height="48"
|
||||
x="8"
|
||||
y="8" />
|
||||
<rect
|
||||
style="fill:#a7a7a7;fill-opacity:1;stroke-width:1.93061"
|
||||
id="rect839-3"
|
||||
width="16"
|
||||
height="48"
|
||||
x="40"
|
||||
y="8" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
72
theme/resources/icons/music/play-blue.svg
Executable 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="64"
|
||||
height="64"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
sodipodi:docname="playing.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1394"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-center="true"
|
||||
inkscape:zoom="15.75"
|
||||
inkscape:cx="32"
|
||||
inkscape:cy="31.936508"
|
||||
inkscape:window-x="1680"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg8"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-intersection-paths="true">
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,1"
|
||||
id="guide841"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide843" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="rect839"
|
||||
style="fill:#1793d1;fill-opacity:1;stroke-width:1.93061"
|
||||
d="M 8,8 56,32 8,56 Z"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
72
theme/resources/icons/music/play-grey.svg
Executable 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="64"
|
||||
height="64"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
sodipodi:docname="play-grey.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1394"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-center="true"
|
||||
inkscape:zoom="15.75"
|
||||
inkscape:cx="32"
|
||||
inkscape:cy="31.936508"
|
||||
inkscape:window-x="1680"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg8"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-intersection-paths="true">
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,1"
|
||||
id="guide841"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide843" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="rect839"
|
||||
style="fill:#a7a7a7;fill-opacity:1;stroke-width:1.93061"
|
||||
d="M 8,8 56,32 8,56 Z"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
73
theme/resources/icons/music/stop-blue.svg
Executable file
@ -0,0 +1,73 @@
|
||||
<?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="64"
|
||||
height="64"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
sodipodi:docname="stopped.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1394"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-center="true"
|
||||
inkscape:zoom="15.75"
|
||||
inkscape:cx="32"
|
||||
inkscape:cy="32"
|
||||
inkscape:window-x="1680"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg8"
|
||||
inkscape:document-rotation="0">
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,1"
|
||||
id="guide841"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide843" />
|
||||
</sodipodi:namedview>
|
||||
<rect
|
||||
style="fill:#1793d1;fill-opacity:1;stroke-width:3.34391"
|
||||
id="rect839"
|
||||
width="48"
|
||||
height="48"
|
||||
x="8"
|
||||
y="8" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
73
theme/resources/icons/music/stop-grey.svg
Executable file
@ -0,0 +1,73 @@
|
||||
<?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="64"
|
||||
height="64"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
sodipodi:docname="stop-grey.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata14">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs12" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1394"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-center="true"
|
||||
inkscape:zoom="15.75"
|
||||
inkscape:cx="32"
|
||||
inkscape:cy="32"
|
||||
inkscape:window-x="1680"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg8"
|
||||
inkscape:document-rotation="0">
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="0,1"
|
||||
id="guide841"
|
||||
inkscape:label=""
|
||||
inkscape:locked="true"
|
||||
inkscape:color="rgb(0,0,255)" />
|
||||
<sodipodi:guide
|
||||
position="32,32"
|
||||
orientation="1,0"
|
||||
id="guide843" />
|
||||
</sodipodi:namedview>
|
||||
<rect
|
||||
style="fill:#a7a7a7;fill-opacity:1;stroke-width:3.34391"
|
||||
id="rect839"
|
||||
width="48"
|
||||
height="48"
|
||||
x="8"
|
||||
y="8" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
161
theme/resources/icons/raid/degraded-recover.svg
Normal file
@ -0,0 +1,161 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="64"
|
||||
height="64"
|
||||
version="1"
|
||||
id="svg34"
|
||||
sodipodi:docname="raid-degraded-recover.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs38">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview36"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:snap-center="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:zoom="10.3125"
|
||||
inkscape:cx="32.09697"
|
||||
inkscape:cy="28.363636"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="1280"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="g16">
|
||||
<sodipodi:guide
|
||||
position="32,29.5"
|
||||
orientation="1,0"
|
||||
id="guide145" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
id="g16">
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="48"
|
||||
y="28"
|
||||
id="rect2" />
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="10"
|
||||
y="28"
|
||||
id="rect4" />
|
||||
<rect
|
||||
style="opacity:0.2"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-29"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect6" />
|
||||
<rect
|
||||
style="fill:#8e8e8e"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-28"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect8" />
|
||||
<circle
|
||||
style="opacity:0.2"
|
||||
cx="49"
|
||||
cy="19"
|
||||
r="3"
|
||||
id="circle10" />
|
||||
<circle
|
||||
style="fill:#ffaf03;fill-opacity:1"
|
||||
cx="49"
|
||||
cy="18"
|
||||
r="3"
|
||||
id="circle12" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#ffffff"
|
||||
d="M 8,8 C 5.784,8 4,9.784 4,12 V 13 C 4,10.784 5.784,9 8,9 H 56 C 58.216,9 60,10.784 60,13 V 12 C 60,9.784 58.216,8 56,8 Z"
|
||||
id="path14" />
|
||||
</g>
|
||||
<g
|
||||
id="g32">
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="48"
|
||||
y="52"
|
||||
id="rect18" />
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="10"
|
||||
y="52"
|
||||
id="rect20" />
|
||||
<rect
|
||||
style="opacity:0.2"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-53"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect22" />
|
||||
<rect
|
||||
style="fill:#8e8e8e"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-52"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect24" />
|
||||
<circle
|
||||
style="opacity:0.2"
|
||||
cx="49"
|
||||
cy="43"
|
||||
r="3"
|
||||
id="circle26" />
|
||||
<circle
|
||||
style="fill:#ffaf03;fill-opacity:1"
|
||||
cx="49"
|
||||
cy="42"
|
||||
r="3"
|
||||
id="circle28" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#ffffff"
|
||||
d="M 8,32 C 5.784,32 4,33.784 4,36 V 37 C 4,34.784 5.784,33 8,33 H 56 C 58.216,33 60,34.784 60,37 V 36 C 60,33.784 58.216,32 56,32 Z"
|
||||
id="path30" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:1.46703"
|
||||
d="M 43.634289,34.521417 38.15751,33.937895 c -0.529851,4.335992 -3.793743,8.016991 -8.176003,9.191204 -4.220908,1.130985 -8.545823,-0.145491 -11.254217,-3.33296 l 3.198453,-2.349621 -10.608651,-2.664599 -0.197403,10.412457 3.046761,-2.215251 c 4.046584,4.917504 10.77056,7.008899 17.190965,5.288568 l -0.0021,-0.0036 c 6.573667,-1.761395 11.495374,-7.250298 12.2789,-13.742767 z"
|
||||
id="path13413" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:1.46703"
|
||||
d="M 32.504628,11.22822 C 29.944396,10.181503 27.09688,9.7462207 24.220195,10.057678 17.438402,10.791943 11.832862,15.362884 9.9711063,21.666925 l 5.3213737,1.419058 c 1.239301,-4.203016 4.980299,-7.25022 9.499393,-7.739499 4.315737,-0.46726 8.453735,1.555774 10.618109,5.107408 l -3.518299,1.832535 10.054364,4.078631 1.82003,-9.989713 -3.358491,1.633728 C 38.614772,14.931155 35.796354,12.573995 32.504628,11.22822 Z"
|
||||
id="path10209" />
|
||||
</svg>
|
After Width: | Height: | Size: 4.5 KiB |
153
theme/resources/icons/raid/degraded.svg
Normal file
@ -0,0 +1,153 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="64"
|
||||
height="64"
|
||||
version="1"
|
||||
id="svg34"
|
||||
sodipodi:docname="raid-degraded.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs38">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview36"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:snap-center="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:zoom="10.3125"
|
||||
inkscape:cx="32.09697"
|
||||
inkscape:cy="28.363636"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="1280"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg34">
|
||||
<sodipodi:guide
|
||||
position="32,29.5"
|
||||
orientation="1,0"
|
||||
id="guide145" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
id="g16">
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="48"
|
||||
y="28"
|
||||
id="rect2" />
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="10"
|
||||
y="28"
|
||||
id="rect4" />
|
||||
<rect
|
||||
style="opacity:0.2"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-29"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect6" />
|
||||
<rect
|
||||
style="fill:#8e8e8e"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-28"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect8" />
|
||||
<circle
|
||||
style="opacity:0.2"
|
||||
cx="49"
|
||||
cy="19"
|
||||
r="3"
|
||||
id="circle10" />
|
||||
<circle
|
||||
style="fill:#ffaf03;fill-opacity:1"
|
||||
cx="49"
|
||||
cy="18"
|
||||
r="3"
|
||||
id="circle12" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#ffffff"
|
||||
d="M 8,8 C 5.784,8 4,9.784 4,12 V 13 C 4,10.784 5.784,9 8,9 H 56 C 58.216,9 60,10.784 60,13 V 12 C 60,9.784 58.216,8 56,8 Z"
|
||||
id="path14" />
|
||||
</g>
|
||||
<g
|
||||
id="g32">
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="48"
|
||||
y="52"
|
||||
id="rect18" />
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="10"
|
||||
y="52"
|
||||
id="rect20" />
|
||||
<rect
|
||||
style="opacity:0.2"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-53"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect22" />
|
||||
<rect
|
||||
style="fill:#8e8e8e"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-52"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect24" />
|
||||
<circle
|
||||
style="opacity:0.2"
|
||||
cx="49"
|
||||
cy="43"
|
||||
r="3"
|
||||
id="circle26" />
|
||||
<circle
|
||||
style="fill:#ffaf03;fill-opacity:1"
|
||||
cx="49"
|
||||
cy="42"
|
||||
r="3"
|
||||
id="circle28" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#ffffff"
|
||||
d="M 8,32 C 5.784,32 4,33.784 4,36 V 37 C 4,34.784 5.784,33 8,33 H 56 C 58.216,33 60,34.784 60,37 V 36 C 60,33.784 58.216,32 56,32 Z"
|
||||
id="path30" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
161
theme/resources/icons/raid/healthy-recover.svg
Normal file
@ -0,0 +1,161 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="64"
|
||||
height="64"
|
||||
version="1"
|
||||
id="svg34"
|
||||
sodipodi:docname="raid-healthy-recover.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs38">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#4285f4; }
|
||||
</style>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview36"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:snap-center="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:zoom="5.15625"
|
||||
inkscape:cx="12.218182"
|
||||
inkscape:cy="47.224242"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="1280"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg34">
|
||||
<sodipodi:guide
|
||||
position="32,29.5"
|
||||
orientation="1,0"
|
||||
id="guide145" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
id="g16">
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="48"
|
||||
y="28"
|
||||
id="rect2" />
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="10"
|
||||
y="28"
|
||||
id="rect4" />
|
||||
<rect
|
||||
style="opacity:0.2"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-29"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect6" />
|
||||
<rect
|
||||
style="fill:#8e8e8e"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-28"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect8" />
|
||||
<circle
|
||||
style="opacity:0.2"
|
||||
cx="49"
|
||||
cy="19"
|
||||
r="3"
|
||||
id="circle10" />
|
||||
<circle
|
||||
style="fill:#76ff03;fill-opacity:1"
|
||||
cx="49"
|
||||
cy="18"
|
||||
r="3"
|
||||
id="circle12" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#ffffff"
|
||||
d="M 8,8 C 5.784,8 4,9.784 4,12 V 13 C 4,10.784 5.784,9 8,9 H 56 C 58.216,9 60,10.784 60,13 V 12 C 60,9.784 58.216,8 56,8 Z"
|
||||
id="path14" />
|
||||
</g>
|
||||
<g
|
||||
id="g32">
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="48"
|
||||
y="52"
|
||||
id="rect18" />
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="10"
|
||||
y="52"
|
||||
id="rect20" />
|
||||
<rect
|
||||
style="opacity:0.2"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-53"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect22" />
|
||||
<rect
|
||||
style="fill:#8e8e8e"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-52"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect24" />
|
||||
<circle
|
||||
style="opacity:0.2"
|
||||
cx="49"
|
||||
cy="43"
|
||||
r="3"
|
||||
id="circle26" />
|
||||
<circle
|
||||
style="fill:#76ff03;fill-opacity:1"
|
||||
cx="49"
|
||||
cy="42"
|
||||
r="3"
|
||||
id="circle28" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#ffffff"
|
||||
d="M 8,32 C 5.784,32 4,33.784 4,36 V 37 C 4,34.784 5.784,33 8,33 H 56 C 58.216,33 60,34.784 60,37 V 36 C 60,33.784 58.216,32 56,32 Z"
|
||||
id="path30" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:1.46703"
|
||||
d="M 43.634289,34.521417 38.15751,33.937895 c -0.529851,4.335992 -3.793743,8.016991 -8.176003,9.191204 -4.220908,1.130985 -8.545823,-0.145491 -11.254217,-3.33296 l 3.198453,-2.349621 -10.608651,-2.664599 -0.197403,10.412457 3.046761,-2.215251 c 4.046584,4.917504 10.77056,7.008899 17.190965,5.288568 l -0.0021,-0.0036 c 6.573667,-1.761395 11.495374,-7.250298 12.2789,-13.742767 z"
|
||||
id="path13413" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:1.46703"
|
||||
d="M 32.504628,11.22822 C 29.944396,10.181503 27.09688,9.7462207 24.220195,10.057678 17.438402,10.791943 11.832862,15.362884 9.9711063,21.666925 l 5.3213737,1.419058 c 1.239301,-4.203016 4.980299,-7.25022 9.499393,-7.739499 4.315737,-0.46726 8.453735,1.555774 10.618109,5.107408 l -3.518299,1.832535 10.054364,4.078631 1.82003,-9.989713 -3.358491,1.633728 C 38.614772,14.931155 35.796354,12.573995 32.504628,11.22822 Z"
|
||||
id="path10209" />
|
||||
</svg>
|
After Width: | Height: | Size: 4.5 KiB |
147
theme/resources/icons/raid/healthy.svg
Executable file
@ -0,0 +1,147 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="64"
|
||||
height="64"
|
||||
version="1"
|
||||
id="svg34"
|
||||
sodipodi:docname="drive-multidisk.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs38" />
|
||||
<sodipodi:namedview
|
||||
id="namedview36"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:snap-center="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:zoom="10.3125"
|
||||
inkscape:cx="25.309091"
|
||||
inkscape:cy="28.557576"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg34">
|
||||
<sodipodi:guide
|
||||
position="32,29.5"
|
||||
orientation="1,0"
|
||||
id="guide145" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
id="g16">
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="48"
|
||||
y="28"
|
||||
id="rect2" />
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="10"
|
||||
y="28"
|
||||
id="rect4" />
|
||||
<rect
|
||||
style="opacity:0.2"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-29"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect6" />
|
||||
<rect
|
||||
style="fill:#8e8e8e"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-28"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect8" />
|
||||
<circle
|
||||
style="opacity:0.2"
|
||||
cx="49"
|
||||
cy="19"
|
||||
r="3"
|
||||
id="circle10" />
|
||||
<circle
|
||||
style="fill:#76ff03"
|
||||
cx="49"
|
||||
cy="18"
|
||||
r="3"
|
||||
id="circle12" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#ffffff"
|
||||
d="M 8,8 C 5.784,8 4,9.784 4,12 V 13 C 4,10.784 5.784,9 8,9 H 56 C 58.216,9 60,10.784 60,13 V 12 C 60,9.784 58.216,8 56,8 Z"
|
||||
id="path14" />
|
||||
</g>
|
||||
<g
|
||||
id="g32">
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="48"
|
||||
y="52"
|
||||
id="rect18" />
|
||||
<rect
|
||||
style="fill:#4f4f4f"
|
||||
width="6"
|
||||
height="4"
|
||||
x="10"
|
||||
y="52"
|
||||
id="rect20" />
|
||||
<rect
|
||||
style="opacity:0.2"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-53"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect22" />
|
||||
<rect
|
||||
style="fill:#8e8e8e"
|
||||
width="20"
|
||||
height="56"
|
||||
x="-52"
|
||||
y="-60"
|
||||
rx="4"
|
||||
ry="4"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect24" />
|
||||
<circle
|
||||
style="opacity:0.2"
|
||||
cx="49"
|
||||
cy="43"
|
||||
r="3"
|
||||
id="circle26" />
|
||||
<circle
|
||||
style="fill:#76ff03"
|
||||
cx="49"
|
||||
cy="42"
|
||||
r="3"
|
||||
id="circle28" />
|
||||
<path
|
||||
style="opacity:0.2;fill:#ffffff"
|
||||
d="M 8,32 C 5.784,32 4,33.784 4,36 V 37 C 4,34.784 5.784,33 8,33 H 56 C 58.216,33 60,34.784 60,37 V 36 C 60,33.784 58.216,32 56,32 Z"
|
||||
id="path30" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
37
theme/resources/icons/titlebar/hover/close.svg
Executable file
@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="close.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.2890625"
|
||||
inkscape:cx="214.10909"
|
||||
inkscape:cy="347.15152"
|
||||
inkscape:window-width="1664"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M 503.32203,104.75105 352.16541,255.90768 503.32203,407.0643 c 11.32444,11.32444 11.32444,29.78821 0,41.35882 l -54.8989,54.89891 c -11.32443,11.32444 -29.7882,11.32444 -41.35882,0 L 255.90768,352.16541 104.75105,503.32203 c -11.324437,11.32444 -29.788194,11.32444 -41.358815,0 L 8.4933285,448.42312 c -11.324438,-11.32444 -11.324438,-29.78819 0,-41.35882 L 159.64996,255.90768 8.4933285,104.75105 c -11.324438,-11.324437 -11.324438,-29.788194 0,-41.358815 L 63.392235,8.4933285 c 11.324437,-11.324438 29.788195,-11.324438 41.358815,0 L 255.90768,159.64995 407.06431,8.4933285 c 11.32444,-11.324438 29.7882,-11.324438 41.35882,0 l 54.8989,54.8989065 c 11.57063,11.324437 11.57063,29.788195 0,41.358815 z"
|
||||
id="path2"
|
||||
sodipodi:nodetypes="scscsccscsccscsccsccs"
|
||||
style="stroke-width:2.46183;fill:#ee4f84;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
36
theme/resources/icons/titlebar/hover/float.svg
Executable file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="float.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.2890625"
|
||||
inkscape:cx="311.07879"
|
||||
inkscape:cy="206.73939"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"
|
||||
id="path2"
|
||||
style="fill:#63c3de;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
36
theme/resources/icons/titlebar/hover/maximize.svg
Executable file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="maximize.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.8230097"
|
||||
inkscape:cx="477.78133"
|
||||
inkscape:cy="309.10422"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"
|
||||
id="path2"
|
||||
style="fill:#53e2ae;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
39
theme/resources/icons/titlebar/hover/minimize.svg
Executable file
@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="minimize.svg"
|
||||
width="512"
|
||||
height="512"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.2890625"
|
||||
inkscape:cx="224.9697"
|
||||
inkscape:cy="254.83636"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M 23.99999,312 C 10.79998,312 0,301.2 0,288.00001 v -64 C 0,210.8 10.799979,200 23.99999,200 h 464 C 501.2,200 512,210.8 512,224.00001 v 64 C 512,301.2 501.2,312 487.99999,312 Z"
|
||||
id="path2"
|
||||
style="stroke-width:2.00001;fill:#f1ff52;fill-opacity:1"
|
||||
sodipodi:nodetypes="sssssssss" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
36
theme/resources/icons/titlebar/hover/ontop.svg
Executable file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="ontop.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.64453125"
|
||||
inkscape:cx="124.12121"
|
||||
inkscape:cy="183.85454"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"
|
||||
id="path2"
|
||||
style="fill:#fdb400;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
36
theme/resources/icons/titlebar/hover/stick.svg
Executable file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 576 512"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="stick.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.2890625"
|
||||
inkscape:cx="287.80606"
|
||||
inkscape:cy="255.61212"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M288 144a110.94 110.94 0 0 0-31.24 5 55.4 55.4 0 0 1 7.24 27 56 56 0 0 1-56 56 55.4 55.4 0 0 1-27-7.24A111.71 111.71 0 1 0 288 144zm284.52 97.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400c-98.65 0-189.09-55-237.93-144C98.91 167 189.34 112 288 112s189.09 55 237.93 144C477.1 345 386.66 400 288 400z"
|
||||
id="path2"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
37
theme/resources/icons/titlebar/regular/close.svg
Executable file
@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="close.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.2890625"
|
||||
inkscape:cx="214.10909"
|
||||
inkscape:cy="346.37576"
|
||||
inkscape:window-width="1664"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M 503.32203,104.75105 352.16541,255.90768 503.32203,407.0643 c 11.32444,11.32444 11.32444,29.78821 0,41.35882 l -54.8989,54.89891 c -11.32443,11.32444 -29.7882,11.32444 -41.35882,0 L 255.90768,352.16541 104.75105,503.32203 c -11.324437,11.32444 -29.788194,11.32444 -41.358815,0 L 8.4933285,448.42312 c -11.324438,-11.32444 -11.324438,-29.78819 0,-41.35882 L 159.64996,255.90768 8.4933285,104.75105 c -11.324438,-11.324437 -11.324438,-29.788194 0,-41.358815 L 63.392235,8.4933285 c 11.324437,-11.324438 29.788195,-11.324438 41.358815,0 L 255.90768,159.64995 407.06431,8.4933285 c 11.32444,-11.324438 29.7882,-11.324438 41.35882,0 l 54.8989,54.8989065 c 11.57063,11.324437 11.57063,29.788195 0,41.358815 z"
|
||||
id="path2"
|
||||
sodipodi:nodetypes="scscsccscsccscsccsccs"
|
||||
style="stroke-width:2.46183;fill:#ee4f84;fill-opacity:0.5" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
36
theme/resources/icons/titlebar/regular/float.svg
Executable file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="float.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.2890625"
|
||||
inkscape:cx="311.85455"
|
||||
inkscape:cy="206.73939"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"
|
||||
id="path2"
|
||||
style="fill:#63c3de;fill-opacity:0.5" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
36
theme/resources/icons/titlebar/regular/maximize.svg
Executable file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="maximize.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.8230097"
|
||||
inkscape:cx="477.78133"
|
||||
inkscape:cy="309.10422"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z"
|
||||
id="path2"
|
||||
style="fill:#53e2ae;fill-opacity:0.5" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
39
theme/resources/icons/titlebar/regular/minimize.svg
Executable file
@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="minimize.svg"
|
||||
width="512"
|
||||
height="512"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.2890625"
|
||||
inkscape:cx="225.74545"
|
||||
inkscape:cy="254.06061"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M 23.99999,312 C 10.79998,312 0,301.2 0,288.00001 v -64 C 0,210.8 10.799979,200 23.99999,200 h 464 C 501.2,200 512,210.8 512,224.00001 v 64 C 512,301.2 501.2,312 487.99999,312 Z"
|
||||
id="path2"
|
||||
style="stroke-width:2.00001;fill:#f1ff52;fill-opacity:0.5"
|
||||
sodipodi:nodetypes="sssssssss" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
36
theme/resources/icons/titlebar/regular/ontop.svg
Executable file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="ontop.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.64453125"
|
||||
inkscape:cx="124.12121"
|
||||
inkscape:cy="182.30303"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M464 0H144c-26.5 0-48 21.5-48 48v48H48c-26.5 0-48 21.5-48 48v320c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-96 464H48V256h320v208zm96-96h-48V144c0-26.5-21.5-48-48-48H144V48h320v320z"
|
||||
id="path2"
|
||||
style="fill:#fdb400;fill-opacity:0.5" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
36
theme/resources/icons/titlebar/regular/stick.svg
Executable file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 576 512"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="stick.svg"
|
||||
inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.2890625"
|
||||
inkscape:cx="287.80606"
|
||||
inkscape:cy="254.83636"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1373"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M288 144a110.94 110.94 0 0 0-31.24 5 55.4 55.4 0 0 1 7.24 27 56 56 0 0 1-56 56 55.4 55.4 0 0 1-27-7.24A111.71 111.71 0 1 0 288 144zm284.52 97.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400c-98.65 0-189.09-55-237.93-144C98.91 167 189.34 112 288 112s189.09 55 237.93 144C477.1 345 386.66 400 288 400z"
|
||||
id="path2"
|
||||
style="fill:#ffffff;fill-opacity:0.5" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
259
theme/resources/icons/volume/error.svg
Executable file
@ -0,0 +1,259 @@
|
||||
<?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"
|
||||
viewBox="0 0 512 512"
|
||||
height="512"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
sodipodi:docname="error.svg">
|
||||
<metadata
|
||||
id="metadata30">
|
||||
<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>
|
||||
<sodipodi:namedview
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-global="true"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2531"
|
||||
inkscape:window-height="1406"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.0020108"
|
||||
inkscape:cx="-3.4104991"
|
||||
inkscape:cy="114.53217"
|
||||
inkscape:window-x="1680"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2"
|
||||
showguides="true"
|
||||
inkscape:snap-intersection-paths="false"
|
||||
inkscape:object-paths="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-object-midpoints="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4158"
|
||||
spacingx="64"
|
||||
spacingy="64" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs4">
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect913"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="C,0,1,1,0,16,0,1 @ C,0,1,1,0,16,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,16,0,1 @ C,0,1,1,0,16,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,16,0,1 @ C,0,1,1,0,16,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,16,0,1 @ C,0,1,1,0,16,0,1 @ F,0,0,1,0,0,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="true"
|
||||
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="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" />
|
||||
<inkscape:path-effect
|
||||
visualbounds="false"
|
||||
linkedpath=""
|
||||
lpeversion="1"
|
||||
is_visible="true"
|
||||
id="path-effect902"
|
||||
effect="bounding_box" />
|
||||
<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="true"
|
||||
apply_with_radius="true"
|
||||
apply_no_radius="true"
|
||||
use_knot_distance="true"
|
||||
flexible="false"
|
||||
chamfer_steps="1"
|
||||
radius="24"
|
||||
mode="F"
|
||||
method="auto"
|
||||
unit="px"
|
||||
satellites_param="C,0,1,1,0,24,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 @ C,0,1,1,0,24,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-effect898"
|
||||
effect="fillet_chamfer" />
|
||||
<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="F,0,0,1,0,0,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 @ 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 @ F,0,0,1,0,0,0,1"
|
||||
lpeversion="1"
|
||||
is_visible="true"
|
||||
id="path-effect896"
|
||||
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="0"
|
||||
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 | 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-effect894"
|
||||
effect="fillet_chamfer" />
|
||||
<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="28"
|
||||
mode="F"
|
||||
method="auto"
|
||||
unit="px"
|
||||
satellites_param="C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,0,1 @ C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,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-effect892"
|
||||
effect="fillet_chamfer" />
|
||||
<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="27"
|
||||
mode="F"
|
||||
method="auto"
|
||||
unit="px"
|
||||
satellites_param="C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 | C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1"
|
||||
lpeversion="1"
|
||||
is_visible="true"
|
||||
id="path-effect890"
|
||||
effect="fillet_chamfer" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect884"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="30"
|
||||
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="30"
|
||||
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-effect865"
|
||||
effect="fillet_chamfer" />
|
||||
</defs>
|
||||
<path
|
||||
inkscape:original-d="M 223.99218,25.380857 105.36913,144.0039 H 0 v 223.9922 h 105.36913 l 118.62305,118.625 z m -32,77.255873 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z"
|
||||
inkscape:path-effect="#path-effect900"
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
id="path888"
|
||||
d="M 201.36476,48.008273 105.36913,144.0039 H 32 l -32,32 v 159.9922 l 32,32 h 73.36913 l 95.99582,95.9974 22.62723,-9.3724 0,-397.240243 z m -9.37258,54.628457 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ee4f84;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:32;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1" />
|
||||
<path
|
||||
d="M 309.09304,334.34725 V 99.075749 h 39.05874 V 334.34725 Z m 0,78.577 v -39.05874 h 39.05874 v 39.05874 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:470.543px;line-height:1.25;font-family:CozetteVector;-inkscape-font-specification:'CozetteVector, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ee4f84;fill-opacity:1;stroke:none;stroke-width:11.7636"
|
||||
id="path899" />
|
||||
<path
|
||||
d="M 388.15178,334.34725 V 99.075749 h 39.05874 V 334.34725 Z m 0,78.577 v -39.05874 h 39.05874 v 39.05874 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:470.543px;line-height:1.25;font-family:CozetteVector;-inkscape-font-specification:'CozetteVector, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#ee4f84;fill-opacity:1;stroke:none;stroke-width:11.7636"
|
||||
id="path899-1" />
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
253
theme/resources/icons/volume/high.svg
Executable file
@ -0,0 +1,253 @@
|
||||
<?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"
|
||||
viewBox="0 0 512 512"
|
||||
height="512"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="audio-volume-high-symbolic.svg">
|
||||
<metadata
|
||||
id="metadata30">
|
||||
<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>
|
||||
<sodipodi:namedview
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-global="true"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1215"
|
||||
inkscape:window-height="776"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.74683799"
|
||||
inkscape:cx="126.81892"
|
||||
inkscape:cy="140.69122"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2"
|
||||
showguides="true"
|
||||
inkscape:snap-intersection-paths="false"
|
||||
inkscape:object-paths="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-smooth-nodes="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4158"
|
||||
spacingx="64"
|
||||
spacingy="64" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs4">
|
||||
<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" />
|
||||
<inkscape:path-effect
|
||||
visualbounds="false"
|
||||
linkedpath=""
|
||||
lpeversion="1"
|
||||
is_visible="true"
|
||||
id="path-effect902"
|
||||
effect="bounding_box" />
|
||||
<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="true"
|
||||
apply_with_radius="true"
|
||||
apply_no_radius="true"
|
||||
use_knot_distance="true"
|
||||
flexible="false"
|
||||
chamfer_steps="1"
|
||||
radius="24"
|
||||
mode="F"
|
||||
method="auto"
|
||||
unit="px"
|
||||
satellites_param="C,0,1,1,0,24,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 @ C,0,1,1,0,24,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-effect898"
|
||||
effect="fillet_chamfer" />
|
||||
<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="F,0,0,1,0,0,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 @ 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 @ F,0,0,1,0,0,0,1"
|
||||
lpeversion="1"
|
||||
is_visible="true"
|
||||
id="path-effect896"
|
||||
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="0"
|
||||
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 | 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-effect894"
|
||||
effect="fillet_chamfer" />
|
||||
<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="28"
|
||||
mode="F"
|
||||
method="auto"
|
||||
unit="px"
|
||||
satellites_param="C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,0,1 @ C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,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-effect892"
|
||||
effect="fillet_chamfer" />
|
||||
<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="27"
|
||||
mode="F"
|
||||
method="auto"
|
||||
unit="px"
|
||||
satellites_param="C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 | C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1"
|
||||
lpeversion="1"
|
||||
is_visible="true"
|
||||
id="path-effect890"
|
||||
effect="fillet_chamfer" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect884"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="30"
|
||||
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="30"
|
||||
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-effect865"
|
||||
effect="fillet_chamfer" />
|
||||
</defs>
|
||||
<path
|
||||
style="fill:#ededec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.6382;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 432.96394,62.511954 -39.09069,39.073036 c 29.90584,29.90585 62.57943,83.84059 62.84445,154.41501 0,70.52621 -32.97357,124.54414 -62.84445,154.41502 l 39.09069,39.07304 C 473.18383,409.26816 512.53005,338.92346 512,256 512.96913,173.07655 473.16742,102.71542 432.96394,62.511954 Z"
|
||||
id="path4508"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:#ededec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.6382;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 367.79424,120.99145 -38.98178,38.98629 c 21.63274,21.63273 38.98178,56.46947 38.98178,96.02226 0,39.5528 -17.33743,74.38101 -38.98178,96.02536 l 38.98178,38.97403 c 35.2603,-35.2603 55.2823,-83.75007 55.2823,-134.99939 0,-51.01539 -20.09323,-99.8195 -55.2823,-135.00855 z"
|
||||
id="path4529"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
inkscape:original-d="m 296.25708,173.07655 -39.23753,38.96379 C 278.8708,229.91256 278.8708,250.62803 278.8708,256 c 0,5.34187 -0.49204,26.00666 -21.86416,43.94943 l 39.24785,38.97403 C 329.91398,309.97471 334.1531,272.54241 334.1531,256 c 0,-16.57095 -4.02246,-53.54391 -37.89602,-82.92345 z"
|
||||
inkscape:path-effect="#path-effect904"
|
||||
style="fill:#ededec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.6382;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 296.25708,173.07655 -39.23753,38.96379 C 278.8708,229.91256 278.8708,250.62803 278.8708,256 c 0,5.34187 -0.49204,26.00666 -21.86416,43.94943 l 39.24785,38.97403 C 329.91398,309.97471 334.1531,272.54241 334.1531,256 c 0,-16.57095 -4.02246,-53.54391 -37.89602,-82.92345 z"
|
||||
id="path4569"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccscccc" />
|
||||
<path
|
||||
inkscape:original-d="M 223.99218,25.380857 105.36913,144.0039 H 0 v 223.9922 h 105.36913 l 118.62305,118.625 z m -32,77.255873 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z"
|
||||
inkscape:path-effect="#path-effect900"
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
id="path888"
|
||||
d="M 201.36476,48.008273 105.36913,144.0039 H 32 l -32,32 v 159.9922 l 32,32 h 73.36913 l 95.99582,95.9974 22.62723,-9.3724 0,-397.240243 z m -9.37258,54.628457 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:32;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
253
theme/resources/icons/volume/low.svg
Executable file
@ -0,0 +1,253 @@
|
||||
<?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="low.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
height="512"
|
||||
viewBox="0 0 512 512"
|
||||
width="512">
|
||||
<metadata
|
||||
id="metadata30">
|
||||
<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>
|
||||
<sodipodi:namedview
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:object-paths="false"
|
||||
inkscape:snap-intersection-paths="false"
|
||||
showguides="true"
|
||||
inkscape:current-layer="svg2"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-x="65"
|
||||
inkscape:cy="173.67278"
|
||||
inkscape:cx="388.3992"
|
||||
inkscape:zoom="0.72743118"
|
||||
showgrid="false"
|
||||
id="namedview28"
|
||||
inkscape:window-height="776"
|
||||
inkscape:window-width="1215"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-midpoints="true">
|
||||
<inkscape:grid
|
||||
spacingy="64"
|
||||
spacingx="64"
|
||||
id="grid4158"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs4">
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect904"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="6"
|
||||
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="bounding_box"
|
||||
id="path-effect902"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
linkedpath=""
|
||||
visualbounds="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect900"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="32"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect898"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="C,0,1,1,0,24,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 @ C,0,1,1,0,24,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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="24"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect896"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="F,0,0,1,0,0,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 @ 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 @ F,0,0,1,0,0,0,1"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="32"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect894"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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 | 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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="0"
|
||||
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="fillet_chamfer"
|
||||
id="path-effect892"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,0,1 @ C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="28"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect890"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 | C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="27"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
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="30"
|
||||
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-effect884"
|
||||
effect="fillet_chamfer" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect865"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="30"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
</defs>
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4508"
|
||||
d="m 432.96394,62.511954 -39.09069,39.073036 c 29.90584,29.90585 62.57943,83.84059 62.84445,154.41501 0,70.52621 -32.97357,124.54414 -62.84445,154.41502 l 39.09069,39.07304 C 473.18383,409.26816 512.53005,338.92346 512,256 512.96913,173.07655 473.16742,102.71542 432.96394,62.511954 Z"
|
||||
style="fill:#ededec;fill-opacity:0.31999999;fill-rule:evenodd;stroke:none;stroke-width:8.6382;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4529"
|
||||
d="m 367.79424,120.99145 -38.98178,38.98629 c 21.63274,21.63273 38.98178,56.46947 38.98178,96.02226 0,39.5528 -17.33743,74.38101 -38.98178,96.02536 l 38.98178,38.97403 c 35.2603,-35.2603 55.2823,-83.75007 55.2823,-134.99939 0,-51.01539 -20.09323,-99.8195 -55.2823,-135.00855 z"
|
||||
style="fill:#ededec;fill-opacity:0.31999999;fill-rule:evenodd;stroke:none;stroke-width:8.6382;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccscccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4569"
|
||||
d="m 296.25708,173.07655 -39.23753,38.96379 C 278.8708,229.91256 278.8708,250.62803 278.8708,256 c 0,5.34187 -0.49204,26.00666 -21.86416,43.94943 l 39.24785,38.97403 C 329.91398,309.97471 334.1531,272.54241 334.1531,256 c 0,-16.57095 -4.02246,-53.54391 -37.89602,-82.92345 z"
|
||||
style="fill:#ededec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.6382;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:path-effect="#path-effect904"
|
||||
inkscape:original-d="m 296.25708,173.07655 -39.23753,38.96379 C 278.8708,229.91256 278.8708,250.62803 278.8708,256 c 0,5.34187 -0.49204,26.00666 -21.86416,43.94943 l 39.24785,38.97403 C 329.91398,309.97471 334.1531,272.54241 334.1531,256 c 0,-16.57095 -4.02246,-53.54391 -37.89602,-82.92345 z" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:32;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
||||
d="M 201.36476,48.008273 105.36913,144.0039 H 32 l -32,32 v 159.9922 l 32,32 h 73.36913 l 95.99582,95.9974 22.62723,-9.3724 0,-397.240243 z m -9.37258,54.628457 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z"
|
||||
id="path888"
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
inkscape:path-effect="#path-effect900"
|
||||
inkscape:original-d="M 223.99218,25.380857 105.36913,144.0039 H 0 v 223.9922 h 105.36913 l 118.62305,118.625 z m -32,77.255873 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z" />
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
253
theme/resources/icons/volume/medium.svg
Executable file
@ -0,0 +1,253 @@
|
||||
<?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="medium.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
height="512"
|
||||
viewBox="0 0 512 512"
|
||||
width="512">
|
||||
<metadata
|
||||
id="metadata30">
|
||||
<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>
|
||||
<sodipodi:namedview
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:object-paths="false"
|
||||
inkscape:snap-intersection-paths="false"
|
||||
showguides="true"
|
||||
inkscape:current-layer="svg2"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-x="65"
|
||||
inkscape:cy="169.85302"
|
||||
inkscape:cx="186.11458"
|
||||
inkscape:zoom="1.028743"
|
||||
showgrid="false"
|
||||
id="namedview28"
|
||||
inkscape:window-height="776"
|
||||
inkscape:window-width="1215"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-midpoints="true">
|
||||
<inkscape:grid
|
||||
spacingy="64"
|
||||
spacingx="64"
|
||||
id="grid4158"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs4">
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect904"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="6"
|
||||
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="bounding_box"
|
||||
id="path-effect902"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
linkedpath=""
|
||||
visualbounds="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect900"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="32"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect898"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="C,0,1,1,0,24,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 @ C,0,1,1,0,24,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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="24"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect896"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="F,0,0,1,0,0,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 @ 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 @ F,0,0,1,0,0,0,1"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="32"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect894"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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 | 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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="0"
|
||||
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="fillet_chamfer"
|
||||
id="path-effect892"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,0,1 @ C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="28"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect890"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 | C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="27"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
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="30"
|
||||
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-effect884"
|
||||
effect="fillet_chamfer" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect865"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="30"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
</defs>
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4508"
|
||||
d="m 432.96394,62.511954 -39.09069,39.073036 c 29.90584,29.90585 62.57943,83.84059 62.84445,154.41501 0,70.52621 -32.97357,124.54414 -62.84445,154.41502 l 39.09069,39.07304 C 473.18383,409.26816 512.53005,338.92346 512,256 512.96913,173.07655 473.16742,102.71542 432.96394,62.511954 Z"
|
||||
style="fill:#ededec;fill-opacity:0.31999999;fill-rule:evenodd;stroke:none;stroke-width:8.6382;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4529"
|
||||
d="m 367.79424,120.99145 -38.98178,38.98629 c 21.63274,21.63273 38.98178,56.46947 38.98178,96.02226 0,39.5528 -17.33743,74.38101 -38.98178,96.02536 l 38.98178,38.97403 c 35.2603,-35.2603 55.2823,-83.75007 55.2823,-134.99939 0,-51.01539 -20.09323,-99.8195 -55.2823,-135.00855 z"
|
||||
style="fill:#ededec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.6382;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccscccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4569"
|
||||
d="m 296.25708,173.07655 -39.23753,38.96379 C 278.8708,229.91256 278.8708,250.62803 278.8708,256 c 0,5.34187 -0.49204,26.00666 -21.86416,43.94943 l 39.24785,38.97403 C 329.91398,309.97471 334.1531,272.54241 334.1531,256 c 0,-16.57095 -4.02246,-53.54391 -37.89602,-82.92345 z"
|
||||
style="fill:#ededec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.6382;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:path-effect="#path-effect904"
|
||||
inkscape:original-d="m 296.25708,173.07655 -39.23753,38.96379 C 278.8708,229.91256 278.8708,250.62803 278.8708,256 c 0,5.34187 -0.49204,26.00666 -21.86416,43.94943 l 39.24785,38.97403 C 329.91398,309.97471 334.1531,272.54241 334.1531,256 c 0,-16.57095 -4.02246,-53.54391 -37.89602,-82.92345 z" />
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:32;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
||||
d="M 201.36476,48.008273 105.36913,144.0039 H 32 l -32,32 v 159.9922 l 32,32 h 73.36913 l 95.99582,95.9974 22.62723,-9.3724 0,-397.240243 z m -9.37258,54.628457 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z"
|
||||
id="path888"
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
inkscape:path-effect="#path-effect900"
|
||||
inkscape:original-d="M 223.99218,25.380857 105.36913,144.0039 H 0 v 223.9922 h 105.36913 l 118.62305,118.625 z m -32,77.255873 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z" />
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
257
theme/resources/icons/volume/mute-red.svg
Executable file
@ -0,0 +1,257 @@
|
||||
<?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"
|
||||
viewBox="0 0 512 512"
|
||||
height="512"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="mute-red.svg">
|
||||
<metadata
|
||||
id="metadata30">
|
||||
<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>
|
||||
<sodipodi:namedview
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-global="true"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1215"
|
||||
inkscape:window-height="776"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.4170573"
|
||||
inkscape:cx="70.561359"
|
||||
inkscape:cy="332.45826"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2"
|
||||
showguides="true"
|
||||
inkscape:snap-intersection-paths="false"
|
||||
inkscape:object-paths="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-object-midpoints="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4158"
|
||||
spacingx="64"
|
||||
spacingy="64" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs4">
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect913"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="C,0,1,1,0,16,0,1 @ C,0,1,1,0,16,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,16,0,1 @ C,0,1,1,0,16,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,16,0,1 @ C,0,1,1,0,16,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,16,0,1 @ C,0,1,1,0,16,0,1 @ F,0,0,1,0,0,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="true"
|
||||
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="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" />
|
||||
<inkscape:path-effect
|
||||
visualbounds="false"
|
||||
linkedpath=""
|
||||
lpeversion="1"
|
||||
is_visible="true"
|
||||
id="path-effect902"
|
||||
effect="bounding_box" />
|
||||
<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="true"
|
||||
apply_with_radius="true"
|
||||
apply_no_radius="true"
|
||||
use_knot_distance="true"
|
||||
flexible="false"
|
||||
chamfer_steps="1"
|
||||
radius="24"
|
||||
mode="F"
|
||||
method="auto"
|
||||
unit="px"
|
||||
satellites_param="C,0,1,1,0,24,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 @ C,0,1,1,0,24,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-effect898"
|
||||
effect="fillet_chamfer" />
|
||||
<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="F,0,0,1,0,0,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 @ 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 @ F,0,0,1,0,0,0,1"
|
||||
lpeversion="1"
|
||||
is_visible="true"
|
||||
id="path-effect896"
|
||||
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="0"
|
||||
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 | 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-effect894"
|
||||
effect="fillet_chamfer" />
|
||||
<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="28"
|
||||
mode="F"
|
||||
method="auto"
|
||||
unit="px"
|
||||
satellites_param="C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,0,1 @ C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,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-effect892"
|
||||
effect="fillet_chamfer" />
|
||||
<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="27"
|
||||
mode="F"
|
||||
method="auto"
|
||||
unit="px"
|
||||
satellites_param="C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 | C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1"
|
||||
lpeversion="1"
|
||||
is_visible="true"
|
||||
id="path-effect890"
|
||||
effect="fillet_chamfer" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect884"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="30"
|
||||
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="30"
|
||||
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-effect865"
|
||||
effect="fillet_chamfer" />
|
||||
</defs>
|
||||
<path
|
||||
inkscape:original-d="M 223.99218,25.380857 105.36913,144.0039 H 0 v 223.9922 h 105.36913 l 118.62305,118.625 z m -32,77.255873 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z"
|
||||
inkscape:path-effect="#path-effect900"
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
id="path888"
|
||||
d="M 201.36476,48.008273 105.36913,144.0039 H 32 l -32,32 v 159.9922 l 32,32 h 73.36913 l 95.99582,95.9974 22.62723,-9.3724 0,-397.240243 z m -9.37258,54.628457 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ee4f84;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:32;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1" />
|
||||
<path
|
||||
id="rect891"
|
||||
style="fill:#ee4f84;fill-opacity:1;stroke-width:1.61625;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke markers fill"
|
||||
d="m 279.86927,176.28213 -4.13169,4.12717 -0.006,22.62122 52.9695,52.96949 -52.96933,52.9677 0.006,22.62105 4.13169,4.12717 22.63361,-0.006 52.95387,-52.95387 52.95386,52.95387 22.63361,0.006 4.13169,-4.12717 0.006,-22.62105 L 382.2126,256 l 52.9695,-52.96949 -0.006,-22.62122 -4.13169,-4.12717 -22.63361,0.006 -52.95386,52.95387 -52.95387,-52.95386 z"
|
||||
inkscape:path-effect="#path-effect913"
|
||||
inkscape:original-d="m 291.18917,164.97462 -26.77149,26.74219 64.28321,64.2832 -64.28321,64.28124 26.77149,26.74219 64.26758,-64.26758 64.26757,64.26758 26.77149,-26.74219 L 382.2126,256 l 64.28321,-64.2832 -26.77149,-26.74219 -64.26757,64.26758 z" />
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
257
theme/resources/icons/volume/mute.svg
Executable file
@ -0,0 +1,257 @@
|
||||
<?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="off.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
height="512"
|
||||
viewBox="0 0 512 512"
|
||||
width="512">
|
||||
<metadata
|
||||
id="metadata30">
|
||||
<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>
|
||||
<sodipodi:namedview
|
||||
inkscape:snap-object-midpoints="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:object-paths="false"
|
||||
inkscape:snap-intersection-paths="false"
|
||||
showguides="true"
|
||||
inkscape:current-layer="svg2"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-x="65"
|
||||
inkscape:cy="332.45826"
|
||||
inkscape:cx="70.561359"
|
||||
inkscape:zoom="1.028743"
|
||||
showgrid="false"
|
||||
id="namedview28"
|
||||
inkscape:window-height="776"
|
||||
inkscape:window-width="1215"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-midpoints="true">
|
||||
<inkscape:grid
|
||||
spacingy="64"
|
||||
spacingx="64"
|
||||
id="grid4158"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs4">
|
||||
<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="16"
|
||||
mode="F"
|
||||
method="auto"
|
||||
unit="px"
|
||||
satellites_param="C,0,1,1,0,16,0,1 @ C,0,1,1,0,16,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,16,0,1 @ C,0,1,1,0,16,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,16,0,1 @ C,0,1,1,0,16,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,16,0,1 @ C,0,1,1,0,16,0,1 @ F,0,0,1,0,0,0,1"
|
||||
lpeversion="1"
|
||||
is_visible="true"
|
||||
id="path-effect913"
|
||||
effect="fillet_chamfer" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect904"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="6"
|
||||
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="bounding_box"
|
||||
id="path-effect902"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
linkedpath=""
|
||||
visualbounds="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect900"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="32"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect898"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="C,0,1,1,0,24,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 @ C,0,1,1,0,24,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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="24"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect896"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="F,0,0,1,0,0,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 @ 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 @ F,0,0,1,0,0,0,1"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="32"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect894"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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 | 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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="0"
|
||||
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="fillet_chamfer"
|
||||
id="path-effect892"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,0,1 @ C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="28"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect890"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
satellites_param="C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 | C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="27"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="true"
|
||||
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="30"
|
||||
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-effect884"
|
||||
effect="fillet_chamfer" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect865"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="30"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
</defs>
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:32;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
||||
d="M 201.36476,48.008273 105.36913,144.0039 H 32 l -32,32 v 159.9922 l 32,32 h 73.36913 l 95.99582,95.9974 22.62723,-9.3724 0,-397.240243 z m -9.37258,54.628457 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z"
|
||||
id="path888"
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
inkscape:path-effect="#path-effect900"
|
||||
inkscape:original-d="M 223.99218,25.380857 105.36913,144.0039 H 0 v 223.9922 h 105.36913 l 118.62305,118.625 z m -32,77.255873 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z" />
|
||||
<path
|
||||
inkscape:original-d="m 291.18917,164.97462 -26.77149,26.74219 64.28321,64.2832 -64.28321,64.28124 26.77149,26.74219 64.26758,-64.26758 64.26757,64.26758 26.77149,-26.74219 L 382.2126,256 l 64.28321,-64.2832 -26.77149,-26.74219 -64.26757,64.26758 z"
|
||||
inkscape:path-effect="#path-effect913"
|
||||
d="m 279.86927,176.28213 -4.13169,4.12717 -0.006,22.62122 52.9695,52.96949 -52.96933,52.9677 0.006,22.62105 4.13169,4.12717 22.63361,-0.006 52.95387,-52.95387 52.95386,52.95387 22.63361,0.006 4.13169,-4.12717 0.006,-22.62105 L 382.2126,256 l 52.9695,-52.96949 -0.006,-22.62122 -4.13169,-4.12717 -22.63361,0.006 -52.95386,52.95387 -52.95387,-52.95386 z"
|
||||
style="fill:#ededec;fill-opacity:1;stroke-width:1.61625;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke markers fill"
|
||||
id="rect891" />
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
253
theme/resources/icons/volume/off.svg
Executable file
@ -0,0 +1,253 @@
|
||||
<?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"
|
||||
viewBox="0 0 512 512"
|
||||
height="512"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="off.svg">
|
||||
<metadata
|
||||
id="metadata30">
|
||||
<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>
|
||||
<sodipodi:namedview
|
||||
inkscape:snap-midpoints="true"
|
||||
inkscape:snap-global="true"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1215"
|
||||
inkscape:window-height="776"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.0020108"
|
||||
inkscape:cx="388.3992"
|
||||
inkscape:cy="173.67278"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2"
|
||||
showguides="true"
|
||||
inkscape:snap-intersection-paths="false"
|
||||
inkscape:object-paths="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-smooth-nodes="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4158"
|
||||
spacingx="64"
|
||||
spacingy="64" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs4">
|
||||
<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" />
|
||||
<inkscape:path-effect
|
||||
visualbounds="false"
|
||||
linkedpath=""
|
||||
lpeversion="1"
|
||||
is_visible="true"
|
||||
id="path-effect902"
|
||||
effect="bounding_box" />
|
||||
<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="true"
|
||||
apply_with_radius="true"
|
||||
apply_no_radius="true"
|
||||
use_knot_distance="true"
|
||||
flexible="false"
|
||||
chamfer_steps="1"
|
||||
radius="24"
|
||||
mode="F"
|
||||
method="auto"
|
||||
unit="px"
|
||||
satellites_param="C,0,1,1,0,24,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 @ C,0,1,1,0,24,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-effect898"
|
||||
effect="fillet_chamfer" />
|
||||
<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="F,0,0,1,0,0,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 @ 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 @ F,0,0,1,0,0,0,1"
|
||||
lpeversion="1"
|
||||
is_visible="true"
|
||||
id="path-effect896"
|
||||
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="0"
|
||||
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 | 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-effect894"
|
||||
effect="fillet_chamfer" />
|
||||
<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="28"
|
||||
mode="F"
|
||||
method="auto"
|
||||
unit="px"
|
||||
satellites_param="C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,0,1 @ C,0,1,1,0,28,0,1 @ F,0,0,1,0,0,0,1 @ C,0,1,1,0,28,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-effect892"
|
||||
effect="fillet_chamfer" />
|
||||
<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="27"
|
||||
mode="F"
|
||||
method="auto"
|
||||
unit="px"
|
||||
satellites_param="C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 | C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1"
|
||||
lpeversion="1"
|
||||
is_visible="true"
|
||||
id="path-effect890"
|
||||
effect="fillet_chamfer" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect884"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
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"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
radius="30"
|
||||
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="30"
|
||||
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-effect865"
|
||||
effect="fillet_chamfer" />
|
||||
</defs>
|
||||
<path
|
||||
style="fill:#ededec;fill-opacity:0.31999999;fill-rule:evenodd;stroke:none;stroke-width:8.6382;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 432.96394,62.511954 -39.09069,39.073036 c 29.90584,29.90585 62.57943,83.84059 62.84445,154.41501 0,70.52621 -32.97357,124.54414 -62.84445,154.41502 l 39.09069,39.07304 C 473.18383,409.26816 512.53005,338.92346 512,256 512.96913,173.07655 473.16742,102.71542 432.96394,62.511954 Z"
|
||||
id="path4508"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:#ededec;fill-opacity:0.31999999;fill-rule:evenodd;stroke:none;stroke-width:8.6382;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 367.79424,120.99145 -38.98178,38.98629 c 21.63274,21.63273 38.98178,56.46947 38.98178,96.02226 0,39.5528 -17.33743,74.38101 -38.98178,96.02536 l 38.98178,38.97403 c 35.2603,-35.2603 55.2823,-83.75007 55.2823,-134.99939 0,-51.01539 -20.09323,-99.8195 -55.2823,-135.00855 z"
|
||||
id="path4529"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
inkscape:original-d="m 296.25708,173.07655 -39.23753,38.96379 C 278.8708,229.91256 278.8708,250.62803 278.8708,256 c 0,5.34187 -0.49204,26.00666 -21.86416,43.94943 l 39.24785,38.97403 C 329.91398,309.97471 334.1531,272.54241 334.1531,256 c 0,-16.57095 -4.02246,-53.54391 -37.89602,-82.92345 z"
|
||||
inkscape:path-effect="#path-effect904"
|
||||
style="fill:#ededec;fill-opacity:0.31999999;fill-rule:evenodd;stroke:none;stroke-width:8.6382;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 296.25708,173.07655 -39.23753,38.96379 C 278.8708,229.91256 278.8708,250.62803 278.8708,256 c 0,5.34187 -0.49204,26.00666 -21.86416,43.94943 l 39.24785,38.97403 C 329.91398,309.97471 334.1531,272.54241 334.1531,256 c 0,-16.57095 -4.02246,-53.54391 -37.89602,-82.92345 z"
|
||||
id="path4569"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccscccc" />
|
||||
<path
|
||||
inkscape:original-d="M 223.99218,25.380857 105.36913,144.0039 H 0 v 223.9922 h 105.36913 l 118.62305,118.625 z m -32,77.255873 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z"
|
||||
inkscape:path-effect="#path-effect900"
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
id="path888"
|
||||
d="M 201.36476,48.008273 105.36913,144.0039 H 32 l -32,32 v 159.9922 l 32,32 h 73.36913 l 95.99582,95.9974 22.62723,-9.3724 0,-397.240243 z m -9.37258,54.628457 v 306.7285 L 118.62499,335.9961 H 32 V 176.0039 h 86.62499 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ededec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:32;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
86
theme/resources/init.lua
Executable file
@ -0,0 +1,86 @@
|
||||
local sounds = require("theme.resources.sounds")
|
||||
local icons = require("theme.resources.icons")
|
||||
|
||||
local overrides = function(theme)
|
||||
theme.sounds = sounds
|
||||
theme.icons = icons
|
||||
|
||||
-- Generate Awesome icon
|
||||
--theme.awesome_icon = beautiful.theme_assets.awesome_icon(
|
||||
-- theme.menu_height,
|
||||
-- theme.color.blue1,
|
||||
-- theme.color.white
|
||||
--)
|
||||
|
||||
-- Icon variables
|
||||
|
||||
theme.menu_submenu_icon = icons.submenu
|
||||
|
||||
theme.layout_cornerne = icons.layout.cornerne
|
||||
theme.layout_cornernw = icons.layout.cornernw
|
||||
theme.layout_cornerse = icons.layout.cornerse
|
||||
theme.layout_cornersw = icons.layout.cornersw
|
||||
theme.layout_dwindle = icons.layout.dwindle
|
||||
theme.layout_fairh = icons.layout.fairh
|
||||
theme.layout_fairv = icons.layout.fairv
|
||||
theme.layout_floating = icons.layout.floating
|
||||
theme.layout_fullscreen = icons.layout.fullscreen
|
||||
theme.layout_magnifier = icons.layout.magnifier
|
||||
theme.layout_max = icons.layout.max
|
||||
theme.layout_spiral = icons.layout.spiral
|
||||
theme.layout_tile = icons.layout.tile
|
||||
theme.layout_tilebottom = icons.layout.tilebottom
|
||||
theme.layout_tileleft = icons.layout.tileleft
|
||||
theme.layout_tiletop = icons.layout.tiletop
|
||||
|
||||
|
||||
theme.titlebar_close_button_focus_hover = icons.titlebar.close.focus_hover
|
||||
theme.titlebar_close_button_focus = icons.titlebar.close.focus
|
||||
theme.titlebar_close_button_normal_hover = icons.titlebar.close.normal_hover
|
||||
theme.titlebar_close_button_normal = icons.titlebar.close.normal
|
||||
|
||||
theme.titlebar_floating_button_focus_inactive_hover = icons.titlebar.floating.inactive.focus_hover
|
||||
theme.titlebar_floating_button_focus_inactive = icons.titlebar.floating.inactive.focus
|
||||
theme.titlebar_floating_button_normal_inactive_hover = icons.titlebar.floating.inactive.normal_hover
|
||||
theme.titlebar_floating_button_normal_inactive = icons.titlebar.floating.inactive.normal
|
||||
theme.titlebar_floating_button_focus_active_hover = icons.titlebar.floating.active.focus_hover
|
||||
theme.titlebar_floating_button_focus_active = icons.titlebar.floating.active.focus
|
||||
theme.titlebar_floating_button_normal_active_hover = icons.titlebar.floating.active.normal_hover
|
||||
theme.titlebar_floating_button_normal_active = icons.titlebar.floating.active.normal
|
||||
|
||||
theme.titlebar_maximized_button_focus_inactive_hover = icons.titlebar.maximize.inactive.focus_hover
|
||||
theme.titlebar_maximized_button_focus_inactive = icons.titlebar.maximize.inactive.focus
|
||||
theme.titlebar_maximized_button_normal_inactive_hover = icons.titlebar.maximize.inactive.normal_hover
|
||||
theme.titlebar_maximized_button_normal_inactive = icons.titlebar.maximize.inactive.normal
|
||||
theme.titlebar_maximized_button_focus_active_hover = icons.titlebar.maximize.active.focus_hover
|
||||
theme.titlebar_maximized_button_focus_active = icons.titlebar.maximize.active.focus
|
||||
theme.titlebar_maximized_button_normal_active_hover = icons.titlebar.maximize.active.normal_hover
|
||||
theme.titlebar_maximized_button_normal_active = icons.titlebar.maximize.active.normal
|
||||
|
||||
theme.titlebar_minimize_button_focus_hover = icons.titlebar.minimize.focus_hover
|
||||
theme.titlebar_minimize_button_focus = icons.titlebar.minimize.focus
|
||||
theme.titlebar_minimize_button_normal_hover = icons.titlebar.minimize.normal_hover
|
||||
theme.titlebar_minimize_button_normal = icons.titlebar.minimize.normal
|
||||
|
||||
theme.titlebar_ontop_button_focus_inactive_hover = icons.titlebar.ontop.inactive.focus_hover
|
||||
theme.titlebar_ontop_button_focus_inactive = icons.titlebar.ontop.inactive.focus
|
||||
theme.titlebar_ontop_button_normal_inactive_hover = icons.titlebar.ontop.inactive.normal_hover
|
||||
theme.titlebar_ontop_button_normal_inactive = icons.titlebar.ontop.inactive.normal
|
||||
theme.titlebar_ontop_button_focus_active_hover = icons.titlebar.ontop.active.focus_hover
|
||||
theme.titlebar_ontop_button_focus_active = icons.titlebar.ontop.active.focus
|
||||
theme.titlebar_ontop_button_normal_active_hover = icons.titlebar.ontop.active.normal_hover
|
||||
theme.titlebar_ontop_button_normal_active = icons.titlebar.ontop.active.normal
|
||||
|
||||
theme.titlebar_sticky_button_focus_inactive_hover = icons.titlebar.sticky.inactive.focus_hover
|
||||
theme.titlebar_sticky_button_focus_inactive = icons.titlebar.sticky.inactive.focus
|
||||
theme.titlebar_sticky_button_normal_inactive_hover = icons.titlebar.sticky.inactive.normal_hover
|
||||
theme.titlebar_sticky_button_normal_inactive = icons.titlebar.sticky.inactive.normal
|
||||
theme.titlebar_sticky_button_focus_active_hover = icons.titlebar.sticky.active.focus_hover
|
||||
theme.titlebar_sticky_button_focus_active = icons.titlebar.sticky.active.focus
|
||||
theme.titlebar_sticky_button_normal_active_hover = icons.titlebar.sticky.active.normal_hover
|
||||
theme.titlebar_sticky_button_normal_active = icons.titlebar.sticky.active.normal
|
||||
|
||||
return theme
|
||||
end
|
||||
|
||||
return overrides
|
4
theme/resources/sounds.lua
Executable file
@ -0,0 +1,4 @@
|
||||
return {
|
||||
volume_up = conf.sound_dir .. "volumeup-click.mp3",
|
||||
volume_down = conf.sound_dir .. "volumedown-click.mp3"
|
||||
}
|