more stuff
@@ -0,0 +1,26 @@
|
|||||||
|
set $rosewater #f5e0dc
|
||||||
|
set $flamingo #f2cdcd
|
||||||
|
set $pink #f5c2e7
|
||||||
|
set $mauve #cba6f7
|
||||||
|
set $red #f38ba8
|
||||||
|
set $maroon #eba0ac
|
||||||
|
set $peach #fab387
|
||||||
|
set $yellow #f9e2af
|
||||||
|
set $green #a6e3a1
|
||||||
|
set $teal #94e2d5
|
||||||
|
set $sky #89dceb
|
||||||
|
set $sapphire #74c7ec
|
||||||
|
set $blue #89b4fa
|
||||||
|
set $lavender #b4befe
|
||||||
|
set $text #cdd6f4
|
||||||
|
set $subtext1 #bac2de
|
||||||
|
set $subtext0 #a6adc8
|
||||||
|
set $overlay2 #9399b2
|
||||||
|
set $overlay1 #7f849c
|
||||||
|
set $overlay0 #6c7086
|
||||||
|
set $surface2 #585b70
|
||||||
|
set $surface1 #45475a
|
||||||
|
set $surface0 #313244
|
||||||
|
set $base #1e1e2e
|
||||||
|
set $mantle #181825
|
||||||
|
set $crust #11111b
|
||||||
@@ -120,6 +120,8 @@ vim.keymap.set("n", "<S-tab>", ":BufferPrevious<Return>", { desc = "Previous tab
|
|||||||
vim.keymap.set("n", "tl", ":BufferMoveNext<Return>", { desc = "Shift tab right", silent = true })
|
vim.keymap.set("n", "tl", ":BufferMoveNext<Return>", { desc = "Shift tab right", silent = true })
|
||||||
vim.keymap.set("n", "th", ":BufferMovePrevious<Return>", { desc = "Shift tab left", silent = true })
|
vim.keymap.set("n", "th", ":BufferMovePrevious<Return>", { desc = "Shift tab left", silent = true })
|
||||||
|
|
||||||
|
-- Run Commands
|
||||||
|
|
||||||
-- Cargo run
|
-- Cargo run
|
||||||
local function set_rust_keybindings()
|
local function set_rust_keybindings()
|
||||||
vim.keymap.set(
|
vim.keymap.set(
|
||||||
@@ -140,6 +142,15 @@ local function set_python_keybindings()
|
|||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function set_csharp_keybindings()
|
||||||
|
vim.keymap.set(
|
||||||
|
"n",
|
||||||
|
"<leader>vv",
|
||||||
|
":terminal dotnet run<Return>i",
|
||||||
|
{ desc = "DotNet Run", buffer = true, silent = true }
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
-- Set up an autocmd group to run the function on BufRead or BufNewFile for Rust files
|
-- Set up an autocmd group to run the function on BufRead or BufNewFile for Rust files
|
||||||
vim.api.nvim_create_augroup("RustKeybindings", { clear = true })
|
vim.api.nvim_create_augroup("RustKeybindings", { clear = true })
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
vim.api.nvim_create_autocmd("FileType", {
|
||||||
@@ -155,6 +166,13 @@ vim.api.nvim_create_autocmd("FileType", {
|
|||||||
group = "PythonKeybindings",
|
group = "PythonKeybindings",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
vim.api.nvim_create_augroup("CSharpKeybindings", { clear = true })
|
||||||
|
vim.api.nvim_create_autocmd("FileType", {
|
||||||
|
pattern = "cs",
|
||||||
|
callback = set_csharp_keybindings,
|
||||||
|
group = "CSharpKeybindings",
|
||||||
|
})
|
||||||
|
|
||||||
-- Nvim Tree
|
-- Nvim Tree
|
||||||
vim.keymap.set("n", "<leader>n", "<cmd>NvimTreeToggle<CR>", { desc = "Toggle Nvim Tree" })
|
vim.keymap.set("n", "<leader>n", "<cmd>NvimTreeToggle<CR>", { desc = "Toggle Nvim Tree" })
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,150 @@
|
|||||||
|
format = """
|
||||||
|
[](#9A348E)\
|
||||||
|
$os\
|
||||||
|
$username\
|
||||||
|
[](bg:#DA627D fg:#9A348E)\
|
||||||
|
$directory\
|
||||||
|
[](fg:#DA627D bg:#FCA17D)\
|
||||||
|
$git_branch\
|
||||||
|
$git_status\
|
||||||
|
[](fg:#FCA17D bg:#86BBD8)\
|
||||||
|
$c\
|
||||||
|
$elixir\
|
||||||
|
$elm\
|
||||||
|
$golang\
|
||||||
|
$gradle\
|
||||||
|
$haskell\
|
||||||
|
$java\
|
||||||
|
$julia\
|
||||||
|
$nodejs\
|
||||||
|
$nim\
|
||||||
|
$rust\
|
||||||
|
$scala\
|
||||||
|
[](fg:#86BBD8 bg:#06969A)\
|
||||||
|
$docker_context\
|
||||||
|
[](fg:#06969A bg:#33658A)\
|
||||||
|
$time\
|
||||||
|
[ ](fg:#33658A)\
|
||||||
|
\n $character
|
||||||
|
"""
|
||||||
|
|
||||||
|
# Disable the blank line at the start of the prompt
|
||||||
|
add_newline = true
|
||||||
|
|
||||||
|
[character]
|
||||||
|
success_symbol = '[](bold green) '
|
||||||
|
error_symbol = '[](bold red) '
|
||||||
|
|
||||||
|
# You can also replace your username with a neat symbol like or disable this
|
||||||
|
# and use the os module below
|
||||||
|
[username]
|
||||||
|
show_always = true
|
||||||
|
style_user = "bg:#9A348E"
|
||||||
|
style_root = "bg:#9A348E"
|
||||||
|
format = '[ ]($style)'
|
||||||
|
disabled = false
|
||||||
|
|
||||||
|
# An alternative to the username module which displays a symbol that
|
||||||
|
# represents the current operating system
|
||||||
|
[os]
|
||||||
|
style = "bg:#9A348E"
|
||||||
|
disabled = true # Disabled by default
|
||||||
|
|
||||||
|
[directory]
|
||||||
|
style = "bg:#DA627D"
|
||||||
|
format = "[ $path ]($style)"
|
||||||
|
truncation_length = 3
|
||||||
|
truncation_symbol = "…/"
|
||||||
|
home_symbol = " "
|
||||||
|
|
||||||
|
# Here is how you can shorten some long paths by text replacement
|
||||||
|
# similar to mapped_locations in Oh My Posh:
|
||||||
|
[directory.substitutions]
|
||||||
|
"Documents" = " "
|
||||||
|
"Downloads" = " "
|
||||||
|
"Music" = " "
|
||||||
|
"Pictures" = " "
|
||||||
|
# Keep in mind that the order matters. For example:
|
||||||
|
# "Important Documents" = " "
|
||||||
|
# will not be replaced, because "Documents" was already substituted before.
|
||||||
|
# So either put "Important Documents" before "Documents" or use the substituted version:
|
||||||
|
# "Important " = " "
|
||||||
|
|
||||||
|
[c]
|
||||||
|
symbol = " "
|
||||||
|
style = "bg:#86BBD8"
|
||||||
|
format = '[ $symbol ($version) ]($style)'
|
||||||
|
|
||||||
|
[docker_context]
|
||||||
|
symbol = " "
|
||||||
|
style = "bg:#06969A"
|
||||||
|
format = '[ $symbol $context ]($style)'
|
||||||
|
|
||||||
|
[elixir]
|
||||||
|
symbol = " "
|
||||||
|
style = "bg:#86BBD8"
|
||||||
|
format = '[ $symbol ($version) ]($style)'
|
||||||
|
|
||||||
|
[elm]
|
||||||
|
symbol = " "
|
||||||
|
style = "bg:#86BBD8"
|
||||||
|
format = '[ $symbol ($version) ]($style)'
|
||||||
|
|
||||||
|
[git_branch]
|
||||||
|
symbol = ""
|
||||||
|
style = "bg:#FCA17D"
|
||||||
|
format = '[ $symbol $branch ]($style)'
|
||||||
|
|
||||||
|
[git_status]
|
||||||
|
style = "bg:#FCA17D"
|
||||||
|
format = '[$all_status$ahead_behind ]($style)'
|
||||||
|
|
||||||
|
[golang]
|
||||||
|
symbol = " "
|
||||||
|
style = "bg:#86BBD8"
|
||||||
|
format = '[ $symbol ($version) ]($style)'
|
||||||
|
|
||||||
|
[gradle]
|
||||||
|
style = "bg:#86BBD8"
|
||||||
|
format = '[ $symbol ($version) ]($style)'
|
||||||
|
|
||||||
|
[haskell]
|
||||||
|
symbol = " "
|
||||||
|
style = "bg:#86BBD8"
|
||||||
|
format = '[ $symbol ($version) ]($style)'
|
||||||
|
|
||||||
|
[java]
|
||||||
|
symbol = " "
|
||||||
|
style = "bg:#86BBD8"
|
||||||
|
format = '[ $symbol ($version) ]($style)'
|
||||||
|
|
||||||
|
[julia]
|
||||||
|
symbol = " "
|
||||||
|
style = "bg:#86BBD8"
|
||||||
|
format = '[ $symbol ($version) ]($style)'
|
||||||
|
|
||||||
|
[nodejs]
|
||||||
|
symbol = ""
|
||||||
|
style = "bg:#86BBD8"
|
||||||
|
format = '[ $symbol ($version) ]($style)'
|
||||||
|
|
||||||
|
[nim]
|
||||||
|
symbol = " "
|
||||||
|
style = "bg:#86BBD8"
|
||||||
|
format = '[ $symbol ($version) ]($style)'
|
||||||
|
|
||||||
|
[rust]
|
||||||
|
symbol = ""
|
||||||
|
style = "bg:#86BBD8"
|
||||||
|
format = '[ $symbol ($version) ]($style)'
|
||||||
|
|
||||||
|
[scala]
|
||||||
|
symbol = " "
|
||||||
|
style = "bg:#86BBD8"
|
||||||
|
format = '[ $symbol ($version) ]($style)'
|
||||||
|
|
||||||
|
[time]
|
||||||
|
disabled = false
|
||||||
|
time_format = "%R" # Hour:Minute Format
|
||||||
|
style = "bg:#33658A"
|
||||||
|
format = '[ ♥ $time ]($style)'
|
||||||
@@ -1,111 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="35"
|
|
||||||
height="200"
|
|
||||||
version="1.1"
|
|
||||||
id="svg8"
|
|
||||||
sodipodi:docname="add-workspace-active.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
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="defs12">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter1168"
|
|
||||||
x="-0.102608"
|
|
||||||
y="-0.040503159"
|
|
||||||
width="1.205216"
|
|
||||||
height="1.0810063">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="3.2065"
|
|
||||||
id="feGaussianBlur1170" />
|
|
||||||
</filter>
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter1174"
|
|
||||||
x="-0.147"
|
|
||||||
y="-0.147"
|
|
||||||
width="1.294"
|
|
||||||
height="1.294">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.98"
|
|
||||||
id="feGaussianBlur1176" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview10"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="3.337544"
|
|
||||||
inkscape:cx="19.175777"
|
|
||||||
inkscape:cy="88.238537"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1043"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg8">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid340"
|
|
||||||
originx="0"
|
|
||||||
originy="0"
|
|
||||||
spacingy="1"
|
|
||||||
spacingx="1"
|
|
||||||
units="px"
|
|
||||||
visible="true" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
id="rect612"
|
|
||||||
width="75"
|
|
||||||
height="190"
|
|
||||||
x="5"
|
|
||||||
y="6"
|
|
||||||
rx="8"
|
|
||||||
ry="8"
|
|
||||||
style="fill:#000000;fill-opacity:1;filter:url(#filter1168);opacity:0.25" />
|
|
||||||
<rect
|
|
||||||
id="rect342"
|
|
||||||
width="75"
|
|
||||||
height="190"
|
|
||||||
x="5"
|
|
||||||
y="5"
|
|
||||||
rx="8"
|
|
||||||
ry="8"
|
|
||||||
style="fill:#1e66f5;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="m 18,95 c -0.554,0 -1,0.446 -1,1 v 4 h -4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 h 4 v 4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 v -4 h 4 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 h -4 v -4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z"
|
|
||||||
color="#000000"
|
|
||||||
color-rendering="auto"
|
|
||||||
fill="#ffffff"
|
|
||||||
image-rendering="auto"
|
|
||||||
solid-color="#000000"
|
|
||||||
style="isolation:auto;mix-blend-mode:normal;shape-rendering:auto;fill:#000000;filter:url(#filter1174);opacity:0.15"
|
|
||||||
id="path1172" />
|
|
||||||
<path
|
|
||||||
d="m 18,94 c -0.554,0 -1,0.446 -1,1 v 4 h -4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 h 4 v 4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 v -4 h 4 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 h -4 v -4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z"
|
|
||||||
color="#000000"
|
|
||||||
color-rendering="auto"
|
|
||||||
fill="#ffffff"
|
|
||||||
image-rendering="auto"
|
|
||||||
solid-color="#000000"
|
|
||||||
style="isolation:auto;mix-blend-mode:normal;shape-rendering:auto"
|
|
||||||
id="path4" />
|
|
||||||
<path
|
|
||||||
id="rect607"
|
|
||||||
style="fill:#ffffff;fill-opacity:1;opacity:0.1"
|
|
||||||
d="M 13 5 C 8.5680044 5 5 8.5680044 5 13 L 5 14 C 5 9.5680044 8.5680044 6 13 6 L 72 6 C 76.431996 6 80 9.5680044 80 14 L 80 13 C 80 8.5680044 76.431996 5 72 5 L 13 5 z " />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 3.6 KiB |
@@ -1,112 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
width="35"
|
|
||||||
height="200"
|
|
||||||
id="svg2"
|
|
||||||
version="1.1"
|
|
||||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
|
||||||
sodipodi:docname="add-workspace-hover.svg">
|
|
||||||
<defs
|
|
||||||
id="defs4" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="base"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:zoom="4"
|
|
||||||
inkscape:cx="-81.038405"
|
|
||||||
inkscape:cy="108.58132"
|
|
||||||
inkscape:document-units="px"
|
|
||||||
inkscape:current-layer="layer1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:window-width="1366"
|
|
||||||
inkscape:window-height="709"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
showguides="false"
|
|
||||||
inkscape:guide-bbox="true"
|
|
||||||
inkscape:snap-bbox="true"
|
|
||||||
inkscape:bbox-paths="true"
|
|
||||||
inkscape:snap-bbox-edge-midpoints="true"
|
|
||||||
inkscape:bbox-nodes="true">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid3040"
|
|
||||||
empspacing="5"
|
|
||||||
visible="true"
|
|
||||||
enabled="true"
|
|
||||||
snapvisiblegridlinesonly="true" />
|
|
||||||
<sodipodi:guide
|
|
||||||
orientation="0,1"
|
|
||||||
position="20,100"
|
|
||||||
id="guide3893"
|
|
||||||
inkscape:locked="false" />
|
|
||||||
<sodipodi:guide
|
|
||||||
orientation="1,0"
|
|
||||||
position="18,190"
|
|
||||||
id="guide3895"
|
|
||||||
inkscape:locked="false" />
|
|
||||||
</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:license
|
|
||||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
|
||||||
</cc:Work>
|
|
||||||
<cc:License
|
|
||||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
|
||||||
</cc:License>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
inkscape:label="Ebene 1"
|
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer1"
|
|
||||||
transform="translate(0,-852.36218)">
|
|
||||||
<path
|
|
||||||
id="rect4694"
|
|
||||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.5;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;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"
|
|
||||||
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="sccssss" />
|
|
||||||
<g
|
|
||||||
transform="translate(0,-0.9999969)"
|
|
||||||
id="g3917-7"
|
|
||||||
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
|
|
||||||
<path
|
|
||||||
id="rect4804"
|
|
||||||
transform="translate(0,852.36218)"
|
|
||||||
style="color:#000000;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;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;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"
|
|
||||||
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.8 KiB |
@@ -1,113 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
width="35"
|
|
||||||
height="200"
|
|
||||||
id="svg2"
|
|
||||||
version="1.1"
|
|
||||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
|
||||||
sodipodi:docname="add-workspace.svg">
|
|
||||||
<defs
|
|
||||||
id="defs4" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="base"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:zoom="4"
|
|
||||||
inkscape:cx="-28.526103"
|
|
||||||
inkscape:cy="75.41215"
|
|
||||||
inkscape:document-units="px"
|
|
||||||
inkscape:current-layer="layer1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:window-width="1366"
|
|
||||||
inkscape:window-height="709"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
showguides="false"
|
|
||||||
inkscape:guide-bbox="true"
|
|
||||||
inkscape:snap-bbox="true"
|
|
||||||
inkscape:bbox-paths="true"
|
|
||||||
inkscape:snap-bbox-edge-midpoints="true"
|
|
||||||
inkscape:bbox-nodes="true"
|
|
||||||
inkscape:document-rotation="0">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid3040"
|
|
||||||
empspacing="5"
|
|
||||||
visible="true"
|
|
||||||
enabled="true"
|
|
||||||
snapvisiblegridlinesonly="true" />
|
|
||||||
<sodipodi:guide
|
|
||||||
orientation="0,1"
|
|
||||||
position="20,100"
|
|
||||||
id="guide3893"
|
|
||||||
inkscape:locked="false" />
|
|
||||||
<sodipodi:guide
|
|
||||||
orientation="1,0"
|
|
||||||
position="18,190"
|
|
||||||
id="guide3895"
|
|
||||||
inkscape:locked="false" />
|
|
||||||
</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:license
|
|
||||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
|
||||||
</cc:Work>
|
|
||||||
<cc:License
|
|
||||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
|
||||||
</cc:License>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<g
|
|
||||||
inkscape:label="Ebene 1"
|
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer1"
|
|
||||||
transform="translate(0,-852.36218)">
|
|
||||||
<path
|
|
||||||
id="rect4694"
|
|
||||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.35;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;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"
|
|
||||||
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="sccssss" />
|
|
||||||
<g
|
|
||||||
transform="translate(0,-0.9999969)"
|
|
||||||
id="g3917-7"
|
|
||||||
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
|
|
||||||
<path
|
|
||||||
id="rect4804"
|
|
||||||
transform="translate(0,852.36218)"
|
|
||||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.87;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;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"
|
|
||||||
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.8 KiB |
@@ -1,56 +0,0 @@
|
|||||||
<?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="16"
|
|
||||||
height="16"
|
|
||||||
viewBox="0 0 16 16"
|
|
||||||
version="1.1"
|
|
||||||
id="svg4"
|
|
||||||
sodipodi:docname="calendar-arrow-left.svg"
|
|
||||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
|
||||||
<metadata
|
|
||||||
id="metadata10">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<defs
|
|
||||||
id="defs8" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1366"
|
|
||||||
inkscape:window-height="704"
|
|
||||||
id="namedview6"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="29.5"
|
|
||||||
inkscape:cx="13.680381"
|
|
||||||
inkscape:cy="6.1418434"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg4" />
|
|
||||||
<path
|
|
||||||
d="M10 3v10L5 8z"
|
|
||||||
fill="#000000"
|
|
||||||
opacity="0.54"
|
|
||||||
id="path2"
|
|
||||||
style="fill:#e6e6e6" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,56 +0,0 @@
|
|||||||
<?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="16"
|
|
||||||
height="16"
|
|
||||||
viewBox="0 0 16 16"
|
|
||||||
version="1.1"
|
|
||||||
id="svg4"
|
|
||||||
sodipodi:docname="calendar-arrow-right.svg"
|
|
||||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
|
||||||
<metadata
|
|
||||||
id="metadata10">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<defs
|
|
||||||
id="defs8" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1366"
|
|
||||||
inkscape:window-height="704"
|
|
||||||
id="namedview6"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="14.75"
|
|
||||||
inkscape:cx="8"
|
|
||||||
inkscape:cy="8"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg4" />
|
|
||||||
<path
|
|
||||||
d="M6 3v10l5-5z"
|
|
||||||
fill="#000000"
|
|
||||||
opacity="0.54"
|
|
||||||
id="path2"
|
|
||||||
style="fill:#e6e6e6" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="24"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
id="svg1516"
|
|
||||||
sodipodi:docname="checkbox-dark.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
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="defs1520">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter1446"
|
|
||||||
x="-0.05808"
|
|
||||||
y="-0.05808"
|
|
||||||
width="1.11616"
|
|
||||||
height="1.11616">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.484"
|
|
||||||
id="feGaussianBlur1448" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview1518"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="19.666667"
|
|
||||||
inkscape:cx="15.661017"
|
|
||||||
inkscape:cy="14.567796"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1043"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg1516" />
|
|
||||||
<rect
|
|
||||||
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter1446)"
|
|
||||||
id="rect890"
|
|
||||||
width="20"
|
|
||||||
height="20"
|
|
||||||
x="2"
|
|
||||||
y="3"
|
|
||||||
rx="4"
|
|
||||||
ry="4" />
|
|
||||||
<rect
|
|
||||||
style="fill:#89b4fa;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
||||||
id="rect616"
|
|
||||||
width="20"
|
|
||||||
height="20"
|
|
||||||
x="2"
|
|
||||||
y="2"
|
|
||||||
rx="4"
|
|
||||||
ry="4" />
|
|
||||||
<path
|
|
||||||
id="rect340"
|
|
||||||
d="m 18.36396,7.7576861 c -0.391736,-0.3917365 -1.022477,-0.3917368 -1.414214,0 L 10.585785,14.121648 7.0502516,10.586113 c -0.3917367,-0.391737 -1.0224771,-0.391736 -1.4142135,0 -0.3917365,0.391736 -0.3917368,1.022477 0,1.414214 l 4.2426409,4.242641 c 0.02448,0.02448 0.04973,0.04625 0.07596,0.06767 0.393511,0.321347 0.971002,0.299581 1.338255,-0.06767 l 7.071068,-7.0710684 c 0.391737,-0.3917367 0.391736,-1.0224771 0,-1.4142135 z"
|
|
||||||
style="fill:#1a1b26;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
id="rect885"
|
|
||||||
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
||||||
d="M 6,2 C 3.7840022,2 2,3.7840022 2,6 V 7 C 2,4.7840022 3.7840022,3 6,3 h 12 c 2.215998,0 4,1.7840022 4,4 V 6 C 22,3.7840022 20.215998,2 18,2 Z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".12"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 168 B |
@@ -1,85 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="24"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
id="svg439"
|
|
||||||
sodipodi:docname="checkbox.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
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="defs443">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter1446"
|
|
||||||
x="-0.05808"
|
|
||||||
y="-0.05808"
|
|
||||||
width="1.11616"
|
|
||||||
height="1.11616">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.484"
|
|
||||||
id="feGaussianBlur1448" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview441"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="19.666667"
|
|
||||||
inkscape:cx="10.627118"
|
|
||||||
inkscape:cy="12.788135"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1043"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg439">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid562"
|
|
||||||
originx="0"
|
|
||||||
originy="0"
|
|
||||||
spacingy="1"
|
|
||||||
spacingx="1"
|
|
||||||
units="px"
|
|
||||||
visible="true" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter1446)"
|
|
||||||
id="rect890"
|
|
||||||
width="20"
|
|
||||||
height="20"
|
|
||||||
x="2"
|
|
||||||
y="3"
|
|
||||||
rx="4"
|
|
||||||
ry="4" />
|
|
||||||
<rect
|
|
||||||
style="opacity:1;fill:#1e66f5;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
||||||
id="rect616"
|
|
||||||
width="20"
|
|
||||||
height="20"
|
|
||||||
x="2"
|
|
||||||
y="2"
|
|
||||||
rx="4"
|
|
||||||
ry="4" />
|
|
||||||
<path
|
|
||||||
id="rect340"
|
|
||||||
d="m 18.36396,7.7576861 c -0.391736,-0.3917365 -1.022477,-0.3917368 -1.414214,0 L 10.585785,14.121648 7.0502516,10.586113 c -0.3917367,-0.391737 -1.0224771,-0.391736 -1.4142135,0 -0.3917365,0.391736 -0.3917368,1.022477 0,1.414214 l 4.2426409,4.242641 c 0.02448,0.02448 0.04973,0.04625 0.07596,0.06767 0.393511,0.321347 0.971002,0.299581 1.338255,-0.06767 l 7.071068,-7.0710684 c 0.391737,-0.3917367 0.391736,-1.0224771 0,-1.4142135 z"
|
|
||||||
style="fill:#ffffff" />
|
|
||||||
<path
|
|
||||||
id="rect885"
|
|
||||||
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
||||||
d="M 6 2 C 3.7840022 2 2 3.7840022 2 6 L 2 7 C 2 4.7840022 3.7840022 3 6 3 L 18 3 C 20.215998 3 22 4.7840022 22 7 L 22 6 C 22 3.7840022 20.215998 2 18 2 L 6 2 z " />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.8 KiB |
@@ -1,72 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
id="Foreground"
|
|
||||||
width="26"
|
|
||||||
height="26"
|
|
||||||
enable-background="new 0 0 16 16"
|
|
||||||
version="1.0"
|
|
||||||
viewBox="0 0 18.909 18.909"
|
|
||||||
sodipodi:docname="close-active.svg"
|
|
||||||
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
||||||
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">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview2"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#999999"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
inkscape:zoom="30.192308"
|
|
||||||
inkscape:cx="13.099363"
|
|
||||||
inkscape:cy="13.099363"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1005"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="Foreground" />
|
|
||||||
<defs
|
|
||||||
id="defs1">
|
|
||||||
<filter
|
|
||||||
id="filter839"
|
|
||||||
x="-0.047999999"
|
|
||||||
y="-0.047999999"
|
|
||||||
width="1.096"
|
|
||||||
height="1.096"
|
|
||||||
color-interpolation-filters="sRGB">
|
|
||||||
<feGaussianBlur
|
|
||||||
stdDeviation="0.32"
|
|
||||||
id="feGaussianBlur1" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<circle
|
|
||||||
cx="9.4545"
|
|
||||||
cy="10.182"
|
|
||||||
r="8"
|
|
||||||
fill="#000000"
|
|
||||||
filter="url(#filter839)"
|
|
||||||
opacity=".1"
|
|
||||||
stroke-width="0"
|
|
||||||
id="circle1" />
|
|
||||||
<circle
|
|
||||||
cx="9.4545"
|
|
||||||
cy="9.4545"
|
|
||||||
r="8"
|
|
||||||
fill="#d8354a"
|
|
||||||
stroke-width="0"
|
|
||||||
id="circle2"
|
|
||||||
style="fill:#c64343;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-linecap="round"
|
|
||||||
stroke-linejoin="round"
|
|
||||||
stroke-width="1.3606"
|
|
||||||
style="paint-order:markers stroke fill"
|
|
||||||
id="path2" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.3 KiB |
@@ -1,72 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
id="Foreground"
|
|
||||||
width="26"
|
|
||||||
height="26"
|
|
||||||
enable-background="new 0 0 16 16"
|
|
||||||
version="1.0"
|
|
||||||
viewBox="0 0 18.909 18.909"
|
|
||||||
sodipodi:docname="close-hover.svg"
|
|
||||||
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
||||||
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">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview2"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#999999"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
inkscape:zoom="30.192308"
|
|
||||||
inkscape:cx="13.066242"
|
|
||||||
inkscape:cy="13.066242"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1005"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="Foreground" />
|
|
||||||
<defs
|
|
||||||
id="defs1">
|
|
||||||
<filter
|
|
||||||
id="filter839"
|
|
||||||
x="-0.047999999"
|
|
||||||
y="-0.047999999"
|
|
||||||
width="1.096"
|
|
||||||
height="1.096"
|
|
||||||
color-interpolation-filters="sRGB">
|
|
||||||
<feGaussianBlur
|
|
||||||
stdDeviation="0.32"
|
|
||||||
id="feGaussianBlur1" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<circle
|
|
||||||
cx="9.4545"
|
|
||||||
cy="10.182"
|
|
||||||
r="8"
|
|
||||||
fill="#000000"
|
|
||||||
filter="url(#filter839)"
|
|
||||||
opacity=".1"
|
|
||||||
stroke-width="0"
|
|
||||||
id="circle1" />
|
|
||||||
<circle
|
|
||||||
cx="9.4545"
|
|
||||||
cy="9.4545"
|
|
||||||
r="8"
|
|
||||||
fill="#ff7a80"
|
|
||||||
stroke-width="0"
|
|
||||||
id="circle2"
|
|
||||||
style="fill:#b2555b;fill-opacity:1;opacity:1" />
|
|
||||||
<path
|
|
||||||
d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-linecap="round"
|
|
||||||
stroke-linejoin="round"
|
|
||||||
stroke-width="1.3606"
|
|
||||||
style="paint-order:markers stroke fill"
|
|
||||||
id="path2" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.3 KiB |
@@ -1,72 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
id="Foreground"
|
|
||||||
width="26"
|
|
||||||
height="26"
|
|
||||||
enable-background="new 0 0 16 16"
|
|
||||||
version="1.0"
|
|
||||||
viewBox="0 0 18.909 18.909"
|
|
||||||
sodipodi:docname="close.svg"
|
|
||||||
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
||||||
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">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview2"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#999999"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
inkscape:zoom="30.192308"
|
|
||||||
inkscape:cx="13.033121"
|
|
||||||
inkscape:cy="13.033121"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1005"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="Foreground" />
|
|
||||||
<defs
|
|
||||||
id="defs1">
|
|
||||||
<filter
|
|
||||||
id="filter879"
|
|
||||||
x="-0.047999999"
|
|
||||||
y="-0.047999999"
|
|
||||||
width="1.096"
|
|
||||||
height="1.096"
|
|
||||||
color-interpolation-filters="sRGB">
|
|
||||||
<feGaussianBlur
|
|
||||||
stdDeviation="0.32"
|
|
||||||
id="feGaussianBlur1" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<circle
|
|
||||||
cx="9.4545"
|
|
||||||
cy="10.182"
|
|
||||||
r="8"
|
|
||||||
fill="#000000"
|
|
||||||
filter="url(#filter879)"
|
|
||||||
opacity=".1"
|
|
||||||
stroke-width="0"
|
|
||||||
id="circle1" />
|
|
||||||
<circle
|
|
||||||
cx="9.4545"
|
|
||||||
cy="9.4545"
|
|
||||||
r="8"
|
|
||||||
fill="#f75a61"
|
|
||||||
stroke-width="0"
|
|
||||||
id="circle2"
|
|
||||||
style="fill:#f52a65;fill-opacity:1;opacity:1" />
|
|
||||||
<path
|
|
||||||
d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-linecap="round"
|
|
||||||
stroke-linejoin="round"
|
|
||||||
stroke-width="1.3606"
|
|
||||||
style="paint-order:markers stroke fill"
|
|
||||||
id="path2" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.3 KiB |
@@ -1,46 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="104"
|
|
||||||
height="104"
|
|
||||||
version="1.1"
|
|
||||||
id="svg1"
|
|
||||||
sodipodi:docname="corner-ripple.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
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="defs1" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview1"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
inkscape:zoom="7.5769231"
|
|
||||||
inkscape:cx="52.13198"
|
|
||||||
inkscape:cy="52.197969"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1043"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg1" />
|
|
||||||
<g
|
|
||||||
transform="translate(0 -948.36)"
|
|
||||||
id="g1"
|
|
||||||
style="fill:#1e66f5;fill-opacity:1">
|
|
||||||
<circle
|
|
||||||
id="corner-ripple"
|
|
||||||
cx="52"
|
|
||||||
cy="1000.4"
|
|
||||||
r="48"
|
|
||||||
fill="#009688"
|
|
||||||
opacity=".25"
|
|
||||||
style="fill:#1e66f5;fill-opacity:1" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,71 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="24"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
id="svg1780"
|
|
||||||
sodipodi:docname="radiobutton-dark.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
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="defs1784">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter1250"
|
|
||||||
x="-0.05808"
|
|
||||||
y="-0.05808"
|
|
||||||
width="1.11616"
|
|
||||||
height="1.11616">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.484"
|
|
||||||
id="feGaussianBlur1252" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview1782"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="19.666667"
|
|
||||||
inkscape:cx="11.59322"
|
|
||||||
inkscape:cy="12.330508"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1043"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg1780" />
|
|
||||||
<circle
|
|
||||||
id="circle694"
|
|
||||||
cx="12"
|
|
||||||
cy="13"
|
|
||||||
r="10"
|
|
||||||
style="opacity:0.25;fill:#000000;fill-opacity:1;filter:url(#filter1250)" />
|
|
||||||
<circle
|
|
||||||
id="path291"
|
|
||||||
cx="12"
|
|
||||||
cy="12"
|
|
||||||
r="10"
|
|
||||||
style="fill:#89b4fa;fill-opacity:1" />
|
|
||||||
<circle
|
|
||||||
id="path675"
|
|
||||||
cx="12"
|
|
||||||
cy="12"
|
|
||||||
r="3"
|
|
||||||
style="fill:#1a1b26;stroke-width:1.2;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
id="circle689"
|
|
||||||
style="opacity:0.1;fill:#ffffff;fill-opacity:1"
|
|
||||||
d="M 12,2 A 10,10 0 0 0 2,12 10,10 0 0 0 2.0351562,12.5 10,10 0 0 1 12,3 10,10 0 0 1 21.976562,12.341797 10,10 0 0 0 22,12 10,10 0 0 0 12,2 Z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".12"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 168 B |
@@ -1,81 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="24"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
id="svg4"
|
|
||||||
sodipodi:docname="radiobutton.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
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">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter1250"
|
|
||||||
x="-0.05808"
|
|
||||||
y="-0.05808"
|
|
||||||
width="1.11616"
|
|
||||||
height="1.11616">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.484"
|
|
||||||
id="feGaussianBlur1252" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview6"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="19.666667"
|
|
||||||
inkscape:cx="11.440678"
|
|
||||||
inkscape:cy="12.533898"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1043"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg4">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid237"
|
|
||||||
originx="0"
|
|
||||||
originy="0"
|
|
||||||
spacingy="1"
|
|
||||||
spacingx="1"
|
|
||||||
units="px"
|
|
||||||
visible="true" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<circle
|
|
||||||
id="circle694"
|
|
||||||
cx="12"
|
|
||||||
cy="13"
|
|
||||||
r="10"
|
|
||||||
style="fill:#000000;fill-opacity:1;filter:url(#filter1250);opacity:0.25" />
|
|
||||||
<circle
|
|
||||||
id="path291"
|
|
||||||
cx="12"
|
|
||||||
cy="12"
|
|
||||||
r="10"
|
|
||||||
style="fill:#1e66f5;fill-opacity:1" />
|
|
||||||
<circle
|
|
||||||
id="path675"
|
|
||||||
cx="12"
|
|
||||||
cy="12"
|
|
||||||
r="3"
|
|
||||||
style="fill:#ffffff;stroke-width:1.2" />
|
|
||||||
<path
|
|
||||||
id="circle689"
|
|
||||||
style="fill:#ffffff;fill-opacity:1;opacity:0.1"
|
|
||||||
d="M 12 2 A 10 10 0 0 0 2 12 A 10 10 0 0 0 2.0351562 12.5 A 10 10 0 0 1 12 3 A 10 10 0 0 1 21.976562 12.341797 A 10 10 0 0 0 22 12 A 10 10 0 0 0 12 2 z " />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.2 KiB |
@@ -1,65 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="48"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg3299"
|
|
||||||
sodipodi:docname="toggle-off.svg"
|
|
||||||
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
||||||
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="defs3303" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview3301"
|
|
||||||
pagecolor="#474747"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="5.9"
|
|
||||||
inkscape:cx="5.4237288"
|
|
||||||
inkscape:cy="12.542373"
|
|
||||||
inkscape:window-width="1661"
|
|
||||||
inkscape:window-height="740"
|
|
||||||
inkscape:window-x="129"
|
|
||||||
inkscape:window-y="1210"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="svg3299">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid3422"
|
|
||||||
originx="0"
|
|
||||||
originy="0"
|
|
||||||
spacingy="1"
|
|
||||||
spacingx="1"
|
|
||||||
units="px"
|
|
||||||
visible="true" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
transform="scale(-1,1)"
|
|
||||||
x="-48"
|
|
||||||
y="-0.019988"
|
|
||||||
width="48"
|
|
||||||
height="24"
|
|
||||||
rx="12"
|
|
||||||
ry="12"
|
|
||||||
fill="#ffffff"
|
|
||||||
opacity="0.45"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="rect3295" />
|
|
||||||
<circle
|
|
||||||
cx="12"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#1a1b26;fill-opacity:1"
|
|
||||||
id="circle3297" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -1,94 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="48"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg939"
|
|
||||||
sodipodi:docname="toggle-on-dark.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
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="defs943">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter863"
|
|
||||||
x="-0.14699999"
|
|
||||||
y="-0.14699999"
|
|
||||||
width="1.294"
|
|
||||||
height="1.294">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="1.1025"
|
|
||||||
id="feGaussianBlur865" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview941"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="16.68772"
|
|
||||||
inkscape:cx="26.846088"
|
|
||||||
inkscape:cy="13.273233"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1043"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg939">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid1663"
|
|
||||||
originx="0"
|
|
||||||
originy="0"
|
|
||||||
spacingy="1"
|
|
||||||
spacingx="1"
|
|
||||||
units="px"
|
|
||||||
visible="true" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
transform="scale(-1,1)"
|
|
||||||
x="-48"
|
|
||||||
y="-0.019988"
|
|
||||||
width="48"
|
|
||||||
height="24"
|
|
||||||
rx="12"
|
|
||||||
ry="12"
|
|
||||||
fill="#009688"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#89b4fa;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="36"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="opacity:0.35;fill:#000000;paint-order:stroke fill markers;filter:url(#filter863)"
|
|
||||||
id="circle307" />
|
|
||||||
<circle
|
|
||||||
cx="36"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#1a1b26;fill-opacity:1"
|
|
||||||
id="circle4" />
|
|
||||||
<path
|
|
||||||
id="rect876"
|
|
||||||
style="opacity:0.1;fill:#ffffff;paint-order:stroke fill markers"
|
|
||||||
d="m 12,-0.01953125 c -6.6479934,0 -12,5.35200665 -12,12.00000025 0,0.171056 0.00665429,0.340494 0.01367188,0.509765 C 0.27938822,6.080891 5.523063,1 12,1 H 36 C 42.476937,1 47.720612,6.080891 47.986328,12.490234 47.993346,12.320963 48,12.151525 48,11.980469 48,5.3324754 42.647993,-0.01953125 36,-0.01953125 Z" />
|
|
||||||
<path
|
|
||||||
id="circle1665"
|
|
||||||
style="paint-order:stroke fill markers;fill:#ffffff;fill-opacity:1;opacity:0.1"
|
|
||||||
d="M 36 3 A 9 9 0 0 0 27 12 A 9 9 0 0 0 27.035156 12.5 A 9 9 0 0 1 36 4 A 9 9 0 0 1 44.974609 12.359375 A 9 9 0 0 0 45 12 A 9 9 0 0 0 36 3 z " />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.8 KiB |
@@ -1,91 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="48"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="toggle-on.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
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="defs10">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter863"
|
|
||||||
x="-0.14699999"
|
|
||||||
y="-0.14699999"
|
|
||||||
width="1.294"
|
|
||||||
height="1.294">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="1.1025"
|
|
||||||
id="feGaussianBlur865" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="11.8"
|
|
||||||
inkscape:cx="22.711864"
|
|
||||||
inkscape:cy="17.330508"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1043"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid293"
|
|
||||||
originx="0"
|
|
||||||
originy="0"
|
|
||||||
spacingy="1"
|
|
||||||
spacingx="1"
|
|
||||||
units="px"
|
|
||||||
visible="true" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
transform="scale(-1,1)"
|
|
||||||
x="-48"
|
|
||||||
y="-0.019988"
|
|
||||||
width="48"
|
|
||||||
height="24"
|
|
||||||
rx="12"
|
|
||||||
ry="12"
|
|
||||||
fill="#009688"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#1e66f5;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="36"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter863);opacity:0.35"
|
|
||||||
id="circle307" />
|
|
||||||
<circle
|
|
||||||
cx="36"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="circle4" />
|
|
||||||
<path
|
|
||||||
id="rect876"
|
|
||||||
style="paint-order:stroke fill markers;fill:#ffffff;opacity:0.1"
|
|
||||||
d="M -12 -0.01953125 C -5.3520066 -0.01953125 0 5.3324754 0 11.980469 C 0 12.151525 -0.0066542885 12.320963 -0.013671875 12.490234 C -0.27938822 6.080891 -5.523063 1 -12 1 L -36 1 C -42.476937 1 -47.720612 6.080891 -47.986328 12.490234 C -47.993346 12.320963 -48 12.151525 -48 11.980469 C -48 5.3324754 -42.647993 -0.01953125 -36 -0.01953125 L -12 -0.01953125 z "
|
|
||||||
transform="scale(-1,1)" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1,6 +0,0 @@
|
|||||||
<svg width="400" height="120" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g transform="translate(0 -932.36)">
|
|
||||||
<rect x="10" y="942.36" width="380" height="160" rx="18" ry="18" fill="#4d4d4d" stroke-width="0"/>
|
|
||||||
<path class="ColorScheme-Text" d="m200 964.36c-4.4183 0-8 3.5817-8 8h-16v4h48v-4h-16c0-4.4183-3.5817-8-8-8zm0 4c2.2091 1e-5 4 1.7909 4 4h-8c1e-5 -2.2091 1.7909-4 4-4zm-20 12v32c0 4.4321 3.5679 8.0001 8 8.0001h24c4.4321 0 8-3.568 8-8.0001v-32h-38zm4 4h32v28c0 2.2161-1.7839 4.0001-4 4.0001h-24c-2.2161 0-4-1.784-4-4.0001z" fill="#ececec"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 573 B |
|
Before Width: | Height: | Size: 4.5 KiB |
@@ -1,3 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="#FFFFFF" opacity="0.7">
|
|
||||||
<path d="m10 3v10l-5-5z"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 149 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="#FFFFFF" opacity="0.7">
|
|
||||||
<path d="m6 3v10l5-5z"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 147 B |
@@ -1,55 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="48"
|
|
||||||
height="48"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="calendar-today.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
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="defs10" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="6.9532167"
|
|
||||||
inkscape:cx="-13.087468"
|
|
||||||
inkscape:cy="15.676198"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1012"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid293" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<g
|
|
||||||
transform="matrix(2,0,0,2,-939.14001,-1079.92)"
|
|
||||||
id="g4"
|
|
||||||
style="fill:#ffffff">
|
|
||||||
<circle
|
|
||||||
cx="481.57001"
|
|
||||||
cy="559.46002"
|
|
||||||
r="1.5"
|
|
||||||
color="#000000"
|
|
||||||
color-rendering="auto"
|
|
||||||
fill-opacity="0.2"
|
|
||||||
image-rendering="auto"
|
|
||||||
shape-rendering="auto"
|
|
||||||
solid-color="#000000"
|
|
||||||
style="isolation:auto;mix-blend-mode:normal;paint-order:normal;fill:#ffffff"
|
|
||||||
id="circle2" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,75 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="24"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
id="svg1516"
|
|
||||||
sodipodi:docname="checkbox-dark.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
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="defs1520">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter1446"
|
|
||||||
x="-0.05808"
|
|
||||||
y="-0.05808"
|
|
||||||
width="1.11616"
|
|
||||||
height="1.11616">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.484"
|
|
||||||
id="feGaussianBlur1448" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview1518"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="13.906433"
|
|
||||||
inkscape:cx="9.4201005"
|
|
||||||
inkscape:cy="15.568334"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1043"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg1516" />
|
|
||||||
<rect
|
|
||||||
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter1446)"
|
|
||||||
id="rect890"
|
|
||||||
width="20"
|
|
||||||
height="20"
|
|
||||||
x="2"
|
|
||||||
y="3"
|
|
||||||
rx="4"
|
|
||||||
ry="4" />
|
|
||||||
<rect
|
|
||||||
style="fill:#89b4fa;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
||||||
id="rect616"
|
|
||||||
width="20"
|
|
||||||
height="20"
|
|
||||||
x="2"
|
|
||||||
y="2"
|
|
||||||
rx="4"
|
|
||||||
ry="4" />
|
|
||||||
<path
|
|
||||||
id="rect340"
|
|
||||||
d="m 18.36396,7.7576861 c -0.391736,-0.3917365 -1.022477,-0.3917368 -1.414214,0 L 10.585785,14.121648 7.0502516,10.586113 c -0.3917367,-0.391737 -1.0224771,-0.391736 -1.4142135,0 -0.3917365,0.391736 -0.3917368,1.022477 0,1.414214 l 4.2426409,4.242641 c 0.02448,0.02448 0.04973,0.04625 0.07596,0.06767 0.393511,0.321347 0.971002,0.299581 1.338255,-0.06767 l 7.071068,-7.0710684 c 0.391737,-0.3917367 0.391736,-1.0224771 0,-1.4142135 z"
|
|
||||||
style="fill:#1a1b26;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
id="rect885"
|
|
||||||
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
||||||
d="M 6,2 C 3.7840022,2 2,3.7840022 2,6 V 7 C 2,4.7840022 3.7840022,3 6,3 h 12 c 2.215998,0 4,1.7840022 4,4 V 6 C 22,3.7840022 20.215998,2 18,2 Z" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".25"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 168 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".2"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 167 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<circle cx="12" cy="12" r="10" fill="#ffffff" opacity=".12"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 168 B |
@@ -1,85 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="24"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
id="svg439"
|
|
||||||
sodipodi:docname="checkbox.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
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="defs443">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter1446"
|
|
||||||
x="-0.05808"
|
|
||||||
y="-0.05808"
|
|
||||||
width="1.11616"
|
|
||||||
height="1.11616">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="0.484"
|
|
||||||
id="feGaussianBlur1448" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview441"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="19.666667"
|
|
||||||
inkscape:cx="7.7288135"
|
|
||||||
inkscape:cy="14.364407"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1043"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg439">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid562"
|
|
||||||
originx="0"
|
|
||||||
originy="0"
|
|
||||||
spacingy="1"
|
|
||||||
spacingx="1"
|
|
||||||
units="px"
|
|
||||||
visible="true" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter1446)"
|
|
||||||
id="rect890"
|
|
||||||
width="20"
|
|
||||||
height="20"
|
|
||||||
x="2"
|
|
||||||
y="3"
|
|
||||||
rx="4"
|
|
||||||
ry="4" />
|
|
||||||
<rect
|
|
||||||
style="opacity:1;fill:#1e66f5;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
||||||
id="rect616"
|
|
||||||
width="20"
|
|
||||||
height="20"
|
|
||||||
x="2"
|
|
||||||
y="2"
|
|
||||||
rx="4"
|
|
||||||
ry="4" />
|
|
||||||
<path
|
|
||||||
id="rect340"
|
|
||||||
d="m 18.36396,7.7576861 c -0.391736,-0.3917365 -1.022477,-0.3917368 -1.414214,0 L 10.585785,14.121648 7.0502516,10.586113 c -0.3917367,-0.391737 -1.0224771,-0.391736 -1.4142135,0 -0.3917365,0.391736 -0.3917368,1.022477 0,1.414214 l 4.2426409,4.242641 c 0.02448,0.02448 0.04973,0.04625 0.07596,0.06767 0.393511,0.321347 0.971002,0.299581 1.338255,-0.06767 l 7.071068,-7.0710684 c 0.391737,-0.3917367 0.391736,-1.0224771 0,-1.4142135 z"
|
|
||||||
style="fill:#e9e9ed;fill-opacity:1" />
|
|
||||||
<path
|
|
||||||
id="rect885"
|
|
||||||
style="opacity:0.1;fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
||||||
d="M 6 2 C 3.7840022 2 2 3.7840022 2 6 L 2 7 C 2 4.7840022 3.7840022 3 6 3 L 18 3 C 20.215998 3 22 4.7840022 22 7 L 22 6 C 22 3.7840022 20.215998 2 18 2 L 6 2 z " />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.8 KiB |
@@ -1,4 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#FFFFFF">
|
|
||||||
<circle cx="12" cy="12" r="12" opacity="0.3"/>
|
|
||||||
<circle cx="12" cy="12" r="4"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 189 B |
@@ -1,82 +0,0 @@
|
|||||||
<?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="48"
|
|
||||||
height="48"
|
|
||||||
viewBox="0 0 48 48"
|
|
||||||
id="svg2"
|
|
||||||
version="1.1"
|
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
|
||||||
sodipodi:docname="no-events.svg">
|
|
||||||
<metadata
|
|
||||||
id="metadata12">
|
|
||||||
<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:license
|
|
||||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
|
||||||
</cc:Work>
|
|
||||||
<cc:License
|
|
||||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
|
||||||
<cc:permits
|
|
||||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
|
||||||
<cc:requires
|
|
||||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
|
||||||
</cc:License>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<defs
|
|
||||||
id="defs10" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1413"
|
|
||||||
inkscape:window-height="955"
|
|
||||||
id="namedview8"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="4.9166667"
|
|
||||||
inkscape:cx="-16.677966"
|
|
||||||
inkscape:cy="15.864407"
|
|
||||||
inkscape:window-x="46"
|
|
||||||
inkscape:window-y="71"
|
|
||||||
inkscape:window-maximized="0"
|
|
||||||
inkscape:current-layer="svg2">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid4134" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<path
|
|
||||||
d="M0 0h48v48H0z"
|
|
||||||
fill="none"
|
|
||||||
id="path4" />
|
|
||||||
<path
|
|
||||||
d="m 38,6 -2,0 0,-4 -4,0 0,4 -16,0 0,-4 -4,0 0,4 -2,0 C 7.79,6 6.02,7.79 6.02,10 L 6,38 c 0,2.21 1.79,4 4,4 l 28,0 c 2.21,0 4,-1.79 4,-4 L 42,10 C 42,7.79 40.21,6 38,6 Z m 0,32 -28,0 0,-22 28,0 z"
|
|
||||||
id="path6"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="sccccccccsccsssssccccc"
|
|
||||||
style="fill:#f5f5f5;fill-opacity:1;opacity:0.54" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,3 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="#FFFFFF" opacity="0.5">
|
|
||||||
<path d="M24 44c2.21 0 4-1.79 4-4h-8c0 2.21 1.79 4 4 4zm12-12V22c0-6.15-3.27-11.28-9-12.64V8c0-1.66-1.34-3-3-3s-3 1.34-3 3v1.36c-5.73 1.36-9 6.49-9 12.64v10l-4 4v2h32v-2l-4-4zm-4 2H16V22c0-4.97 3.03-9 8-9s8 4.03 8 9v12z"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 345 B |
@@ -1,78 +0,0 @@
|
|||||||
<?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="1600"
|
|
||||||
height="900"
|
|
||||||
viewBox="0 0 1600 900"
|
|
||||||
version="1.1"
|
|
||||||
id="svg13"
|
|
||||||
sodipodi:docname="noise-texture.svg"
|
|
||||||
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
|
|
||||||
<metadata
|
|
||||||
id="metadata17">
|
|
||||||
<rdf:RDF>
|
|
||||||
<cc:Work
|
|
||||||
rdf:about="">
|
|
||||||
<dc:format>image/svg+xml</dc:format>
|
|
||||||
<dc:type
|
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
||||||
</cc:Work>
|
|
||||||
</rdf:RDF>
|
|
||||||
</metadata>
|
|
||||||
<sodipodi:namedview
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1"
|
|
||||||
objecttolerance="10"
|
|
||||||
gridtolerance="10"
|
|
||||||
guidetolerance="10"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:window-width="1366"
|
|
||||||
inkscape:window-height="698"
|
|
||||||
id="namedview15"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="0.26222222"
|
|
||||||
inkscape:cx="647.80786"
|
|
||||||
inkscape:cy="422.79535"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg13" />
|
|
||||||
<defs
|
|
||||||
id="defs9">
|
|
||||||
<radialGradient
|
|
||||||
id="a"
|
|
||||||
gradientTransform="matrix(1 1 -1 1 0.5 -0.5)">
|
|
||||||
<stop
|
|
||||||
stop-color="#455A64"
|
|
||||||
stop-opacity="0"
|
|
||||||
offset="0.25"
|
|
||||||
id="stop2"
|
|
||||||
style="stop-color:#444444;stop-opacity:0" />
|
|
||||||
<stop
|
|
||||||
stop-color="#455A64"
|
|
||||||
stop-opacity="0.5"
|
|
||||||
offset="0.75"
|
|
||||||
id="stop4"
|
|
||||||
style="stop-color:#444444;stop-opacity:0.50196081" />
|
|
||||||
<stop
|
|
||||||
stop-color="#455A64"
|
|
||||||
stop-opacity="1"
|
|
||||||
offset="1"
|
|
||||||
id="stop6"
|
|
||||||
style="stop-color:#444444;stop-opacity:1" />
|
|
||||||
</radialGradient>
|
|
||||||
</defs>
|
|
||||||
<rect
|
|
||||||
width="1600"
|
|
||||||
height="900"
|
|
||||||
fill="url(#a)"
|
|
||||||
id="rect11" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.1 KiB |
@@ -1,72 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="32" viewBox="0 0 512 32">
|
|
||||||
<defs>
|
|
||||||
<g id="g" fill="#FFFFFF" opacity="0.7">
|
|
||||||
<circle cx="8" cy="8" r="8" fill="none"/>
|
|
||||||
<path d="m8 1a7 7 0 0 0 -7 7 7 7 0 0 0 7 7 7 7 0 0 0 7 -7h-3a4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4v-3z"/>
|
|
||||||
</g>
|
|
||||||
</defs>
|
|
||||||
<use xlink:href="#g" transform="translate(0) rotate(0 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(16) rotate(5.625 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(32) rotate(11.25 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(48) rotate(16.875 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(64) rotate(22.5 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(80) rotate(28.125 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(96) rotate(33.75 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(112) rotate(39.375 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(128) rotate(45 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(144) rotate(50.625 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(160) rotate(56.25 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(176) rotate(61.875 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(192) rotate(67.5 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(208) rotate(73.125 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(224) rotate(78.75 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(240) rotate(84.375 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(256) rotate(90 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(272) rotate(95.625 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(288) rotate(101.25 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(304) rotate(106.875 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(320) rotate(112.5 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(336) rotate(118.125 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(352) rotate(123.75 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(368) rotate(129.375 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(384) rotate(135 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(400) rotate(140.625 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(416) rotate(146.25 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(432) rotate(151.875 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(448) rotate(157.5 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(464) rotate(163.125 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(480) rotate(168.75 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(496) rotate(174.375 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(0 16) rotate(180 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(16 16) rotate(185.625 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(32 16) rotate(191.25 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(48 16) rotate(196.875 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(64 16) rotate(202.5 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(80 16) rotate(208.125 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(96 16) rotate(213.75 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(112 16) rotate(219.375 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(128 16) rotate(225 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(144 16) rotate(230.625 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(160 16) rotate(236.25 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(176 16) rotate(241.875 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(192 16) rotate(247.5 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(208 16) rotate(253.125 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(224 16) rotate(258.75 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(240 16) rotate(264.375 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(256 16) rotate(270 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(272 16) rotate(275.625 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(288 16) rotate(281.25 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(304 16) rotate(286.875 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(320 16) rotate(292.5 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(336 16) rotate(298.125 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(352 16) rotate(303.75 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(368 16) rotate(309.375 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(384 16) rotate(315 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(400 16) rotate(320.625 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(416 16) rotate(326.25 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(432 16) rotate(331.875 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(448 16) rotate(337.5 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(464 16) rotate(343.125 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(480 16) rotate(348.75 8 8)"/>
|
|
||||||
<use xlink:href="#g" transform="translate(496 16) rotate(354.375 8 8)"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.9 KiB |
@@ -1,59 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="48"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg3299"
|
|
||||||
sodipodi:docname="toggle-off.svg"
|
|
||||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
|
||||||
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="defs3303" />
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview3301"
|
|
||||||
pagecolor="#474747"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="5.9"
|
|
||||||
inkscape:cx="5.4237288"
|
|
||||||
inkscape:cy="12.542373"
|
|
||||||
inkscape:window-width="1368"
|
|
||||||
inkscape:window-height="700"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg3299">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid3422" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
transform="scale(-1,1)"
|
|
||||||
x="-48"
|
|
||||||
y="-0.019988"
|
|
||||||
width="48"
|
|
||||||
height="24"
|
|
||||||
rx="12"
|
|
||||||
ry="12"
|
|
||||||
fill="#ffffff"
|
|
||||||
opacity="0.45"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers"
|
|
||||||
id="rect3295" />
|
|
||||||
<circle
|
|
||||||
cx="12"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#242424;fill-opacity:1"
|
|
||||||
id="circle3297" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -1,94 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="48"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg939"
|
|
||||||
sodipodi:docname="toggle-on-dark.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
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="defs943">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter863"
|
|
||||||
x="-0.14699999"
|
|
||||||
y="-0.14699999"
|
|
||||||
width="1.294"
|
|
||||||
height="1.294">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="1.1025"
|
|
||||||
id="feGaussianBlur865" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview941"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="11.8"
|
|
||||||
inkscape:cx="18.050847"
|
|
||||||
inkscape:cy="12.245763"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1043"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg939">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid1663"
|
|
||||||
originx="0"
|
|
||||||
originy="0"
|
|
||||||
spacingy="1"
|
|
||||||
spacingx="1"
|
|
||||||
units="px"
|
|
||||||
visible="true" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
transform="scale(-1,1)"
|
|
||||||
x="-48"
|
|
||||||
y="-0.019988"
|
|
||||||
width="48"
|
|
||||||
height="24"
|
|
||||||
rx="12"
|
|
||||||
ry="12"
|
|
||||||
fill="#009688"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#89b4fa;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="36"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="opacity:0.35;fill:#000000;paint-order:stroke fill markers;filter:url(#filter863)"
|
|
||||||
id="circle307" />
|
|
||||||
<circle
|
|
||||||
cx="36"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#1a1b26;fill-opacity:1"
|
|
||||||
id="circle4" />
|
|
||||||
<path
|
|
||||||
id="rect876"
|
|
||||||
style="opacity:0.1;fill:#ffffff;paint-order:stroke fill markers"
|
|
||||||
d="m 12,-0.01953125 c -6.6479934,0 -12,5.35200665 -12,12.00000025 0,0.171056 0.00665429,0.340494 0.01367188,0.509765 C 0.27938822,6.080891 5.523063,1 12,1 H 36 C 42.476937,1 47.720612,6.080891 47.986328,12.490234 47.993346,12.320963 48,12.151525 48,11.980469 48,5.3324754 42.647993,-0.01953125 36,-0.01953125 Z" />
|
|
||||||
<path
|
|
||||||
id="circle1665"
|
|
||||||
style="paint-order:stroke fill markers;fill:#ffffff;fill-opacity:1;opacity:0.1"
|
|
||||||
d="M 36 3 A 9 9 0 0 0 27 12 A 9 9 0 0 0 27.035156 12.5 A 9 9 0 0 1 36 4 A 9 9 0 0 1 44.974609 12.359375 A 9 9 0 0 0 45 12 A 9 9 0 0 0 36 3 z " />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.8 KiB |
@@ -1,91 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg
|
|
||||||
width="48"
|
|
||||||
height="24"
|
|
||||||
version="1.1"
|
|
||||||
id="svg6"
|
|
||||||
sodipodi:docname="toggle-on.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
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="defs10">
|
|
||||||
<filter
|
|
||||||
inkscape:collect="always"
|
|
||||||
style="color-interpolation-filters:sRGB"
|
|
||||||
id="filter863"
|
|
||||||
x="-0.14699999"
|
|
||||||
y="-0.14699999"
|
|
||||||
width="1.294"
|
|
||||||
height="1.294">
|
|
||||||
<feGaussianBlur
|
|
||||||
inkscape:collect="always"
|
|
||||||
stdDeviation="1.1025"
|
|
||||||
id="feGaussianBlur865" />
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview8"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#000000"
|
|
||||||
borderopacity="0.25"
|
|
||||||
inkscape:showpageshadow="2"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
showgrid="true"
|
|
||||||
inkscape:zoom="11.8"
|
|
||||||
inkscape:cx="16.949153"
|
|
||||||
inkscape:cy="16.144068"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1043"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="svg6">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid293"
|
|
||||||
originx="0"
|
|
||||||
originy="0"
|
|
||||||
spacingy="1"
|
|
||||||
spacingx="1"
|
|
||||||
units="px"
|
|
||||||
visible="true" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<rect
|
|
||||||
transform="scale(-1,1)"
|
|
||||||
x="-48"
|
|
||||||
y="-0.019988"
|
|
||||||
width="48"
|
|
||||||
height="24"
|
|
||||||
rx="12"
|
|
||||||
ry="12"
|
|
||||||
fill="#009688"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#1e66f5;fill-opacity:1"
|
|
||||||
id="rect2" />
|
|
||||||
<circle
|
|
||||||
cx="36"
|
|
||||||
cy="13"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#000000;filter:url(#filter863);opacity:0.35"
|
|
||||||
id="circle307" />
|
|
||||||
<circle
|
|
||||||
cx="36"
|
|
||||||
cy="12"
|
|
||||||
r="9"
|
|
||||||
fill="#ffffff"
|
|
||||||
stroke-width="0"
|
|
||||||
style="paint-order:stroke fill markers;fill:#e9e9ed;fill-opacity:1"
|
|
||||||
id="circle4" />
|
|
||||||
<path
|
|
||||||
id="rect876"
|
|
||||||
style="paint-order:stroke fill markers;fill:#ffffff;opacity:0.1"
|
|
||||||
d="M -12 -0.01953125 C -5.3520066 -0.01953125 0 5.3324754 0 11.980469 C 0 12.151525 -0.0066542885 12.320963 -0.013671875 12.490234 C -0.27938822 6.080891 -5.523063 1 -12 1 L -36 1 C -42.476937 1 -47.720612 6.080891 -47.986328 12.490234 C -47.993346 12.320963 -48 12.151525 -48 11.980469 C -48 5.3324754 -42.647993 -0.01953125 -36 -0.01953125 L -12 -0.01953125 z "
|
|
||||||
transform="scale(-1,1)" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 18 KiB |
@@ -1 +0,0 @@
|
|||||||
assets/no-events.svg
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
assets/no-notifications.svg
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
.Leader {
|
|
||||||
stroke-width: 0.5 !important;
|
|
||||||
stroke: #535353;
|
|
||||||
fill: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Button {
|
|
||||||
stroke-width: 0.25;
|
|
||||||
stroke: #ededed;
|
|
||||||
fill: #ededed;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Ring {
|
|
||||||
stroke-width: 0.5 !important;
|
|
||||||
stroke: #535353 !important;
|
|
||||||
fill: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Label {
|
|
||||||
stroke: none !important;
|
|
||||||
stroke-width: 0.1 !important;
|
|
||||||
font-size: 0.1 !important;
|
|
||||||
fill: transparent !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.TouchStrip,
|
|
||||||
.TouchRing {
|
|
||||||
stroke-width: 0.1 !important;
|
|
||||||
stroke: #ededed !important;
|
|
||||||
fill: #535353 !important;
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
assets/process-working.svg
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et:
|
|
||||||
#
|
|
||||||
# This file, unlike hacks.rc, contains legitimate cases we need to handle, e.g.
|
|
||||||
# custom widgets, programs giving us a chance to alter their UI to fit more with
|
|
||||||
# the theme or stuff that is supposed to look different, like panels.
|
|
||||||
|
|
||||||
# TODO: This could really look nicer
|
|
||||||
style "gimp_spin_scale" {
|
|
||||||
# Spin background
|
|
||||||
bg[NORMAL] = @base_color
|
|
||||||
|
|
||||||
engine "pixmap" {
|
|
||||||
image {
|
|
||||||
function = BOX
|
|
||||||
state = NORMAL
|
|
||||||
detail = "spinbutton_up"
|
|
||||||
overlay_file = "assets/pan-up-alt.png"
|
|
||||||
overlay_stretch = FALSE
|
|
||||||
}
|
|
||||||
|
|
||||||
image {
|
|
||||||
function = BOX
|
|
||||||
state = PRELIGHT
|
|
||||||
detail = "spinbutton_up"
|
|
||||||
overlay_file = "assets/pan-up.png"
|
|
||||||
overlay_stretch = FALSE
|
|
||||||
}
|
|
||||||
|
|
||||||
image {
|
|
||||||
function = BOX
|
|
||||||
state = ACTIVE
|
|
||||||
detail = "spinbutton_up"
|
|
||||||
overlay_file = "assets/pan-up.png"
|
|
||||||
overlay_stretch = FALSE
|
|
||||||
}
|
|
||||||
|
|
||||||
image {
|
|
||||||
function = BOX
|
|
||||||
state = INSENSITIVE
|
|
||||||
detail = "spinbutton_up"
|
|
||||||
overlay_file = "assets/pan-up-alt-disabled.png"
|
|
||||||
overlay_stretch = FALSE
|
|
||||||
}
|
|
||||||
|
|
||||||
image {
|
|
||||||
function = BOX
|
|
||||||
state = NORMAL
|
|
||||||
detail = "spinbutton_down"
|
|
||||||
overlay_file = "assets/pan-down-alt.png"
|
|
||||||
overlay_stretch = FALSE
|
|
||||||
}
|
|
||||||
|
|
||||||
image {
|
|
||||||
function = BOX
|
|
||||||
state = PRELIGHT
|
|
||||||
detail = "spinbutton_down"
|
|
||||||
overlay_file = "assets/pan-down.png"
|
|
||||||
overlay_stretch = FALSE
|
|
||||||
}
|
|
||||||
|
|
||||||
image {
|
|
||||||
function = BOX
|
|
||||||
state = ACTIVE
|
|
||||||
detail = "spinbutton_down"
|
|
||||||
overlay_file = "assets/pan-down.png"
|
|
||||||
overlay_stretch = FALSE
|
|
||||||
}
|
|
||||||
|
|
||||||
image {
|
|
||||||
function = BOX
|
|
||||||
state = INSENSITIVE
|
|
||||||
detail = "spinbutton_down"
|
|
||||||
overlay_file = "assets/pan-down-alt-disabled.png"
|
|
||||||
overlay_stretch = FALSE
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
style "chrome_gtk_frame" {
|
|
||||||
ChromeGtkFrame::frame-color = @titlebar_bg_color
|
|
||||||
ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color
|
|
||||||
ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color
|
|
||||||
ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color
|
|
||||||
|
|
||||||
ChromeGtkFrame::frame-gradient-size = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
# Disable spin button assets for GimpSpinScale
|
|
||||||
class "GimpSpinScale" style "gimp_spin_scale"
|
|
||||||
|
|
||||||
# Chromium lets us define some colours and settings for better integration
|
|
||||||
class "ChromeGtkFrame" style "chrome_gtk_frame"
|
|
||||||
|
Before Width: | Height: | Size: 123 B |
|
Before Width: | Height: | Size: 320 B |
|
Before Width: | Height: | Size: 323 B |
|
Before Width: | Height: | Size: 331 B |
|
Before Width: | Height: | Size: 342 B |
|
Before Width: | Height: | Size: 576 B |
|
Before Width: | Height: | Size: 557 B |
|
Before Width: | Height: | Size: 559 B |
|
Before Width: | Height: | Size: 538 B |
|
Before Width: | Height: | Size: 495 B |
|
Before Width: | Height: | Size: 510 B |
|
Before Width: | Height: | Size: 492 B |
|
Before Width: | Height: | Size: 498 B |
|
Before Width: | Height: | Size: 442 B |
|
Before Width: | Height: | Size: 448 B |
|
Before Width: | Height: | Size: 440 B |
|
Before Width: | Height: | Size: 484 B |
|
Before Width: | Height: | Size: 325 B |
|
Before Width: | Height: | Size: 241 B |
|
Before Width: | Height: | Size: 314 B |
|
Before Width: | Height: | Size: 258 B |
|
Before Width: | Height: | Size: 340 B |
|
Before Width: | Height: | Size: 242 B |
|
Before Width: | Height: | Size: 349 B |
|
Before Width: | Height: | Size: 246 B |
|
Before Width: | Height: | Size: 472 B |
|
Before Width: | Height: | Size: 126 B |
|
Before Width: | Height: | Size: 126 B |
|
Before Width: | Height: | Size: 323 B |
|
Before Width: | Height: | Size: 478 B |
|
Before Width: | Height: | Size: 342 B |
|
Before Width: | Height: | Size: 320 B |
|
Before Width: | Height: | Size: 290 B |
|
Before Width: | Height: | Size: 331 B |
|
Before Width: | Height: | Size: 290 B |
|
Before Width: | Height: | Size: 288 B |
|
Before Width: | Height: | Size: 128 B |
|
Before Width: | Height: | Size: 134 B |
|
Before Width: | Height: | Size: 134 B |
|
Before Width: | Height: | Size: 190 B |
|
Before Width: | Height: | Size: 196 B |
|
Before Width: | Height: | Size: 197 B |
|
Before Width: | Height: | Size: 182 B |
|
Before Width: | Height: | Size: 181 B |
|
Before Width: | Height: | Size: 180 B |
|
Before Width: | Height: | Size: 443 B |
|
Before Width: | Height: | Size: 422 B |
|
Before Width: | Height: | Size: 399 B |
|
Before Width: | Height: | Size: 374 B |
|
Before Width: | Height: | Size: 330 B |
|
Before Width: | Height: | Size: 389 B |