add cache and rename some files

This commit is contained in:
2026-01-15 15:41:19 +01:00
parent 7879f15726
commit b64815d9ab
4753 changed files with 931902 additions and 1 deletions

View File

@@ -0,0 +1 @@
{}

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -0,0 +1,2 @@
[v1]
"opendeck-starterpack 2.6.0 (path+file:///home/daniel/.cache/yay/opendeck/src/opendeck/plugins/com.amansprojects.starterpack.sdPlugin)" = ["opendeck-starterpack"]

View File

@@ -0,0 +1 @@
{"installs":{"opendeck-starterpack 2.6.0 (path+file:///home/daniel/.cache/yay/opendeck/src/opendeck/plugins/com.amansprojects.starterpack.sdPlugin)":{"version_req":null,"bins":["opendeck-starterpack"],"features":[],"all_features":false,"no_default_features":false,"profile":"release","target":"x86_64-unknown-linux-gnu","rustc":"rustc 1.90.0 (1159e78c4 2025-09-14) (Arch Linux rust 1:1.90.0-3)\nbinary: rustc\ncommit-hash: 1159e78c4747b02ef996e55082b704c09b970588\ncommit-date: 2025-09-14\nhost: x86_64-unknown-linux-gnu\nrelease: 1.90.0\nLLVM version: 20.1.8\n"}}}

View File

@@ -0,0 +1,66 @@
{
"Name": "OpenDeck Starter Pack",
"Description": "OpenDeck starter pack plugin",
"Author": "Aman Khanna (nekename)",
"Version": "2.6.0",
"CodePathWin": "windows/bin/opendeck-starterpack.exe",
"CodePathMac": "darwin/bin/opendeck-starterpack",
"CodePathLin": "linux/bin/opendeck-starterpack",
"Icon": "icons/plugin",
"Category": "OpenDeck",
"OS": [
{
"Platform": "mac",
"MinimumVersion": "10.11"
},
{
"Platform": "windows",
"MinimumVersion": "10"
},
{
"Platform": "linux"
}
],
"Actions": [
{
"Icon": "icons/runCommand",
"Name": "Run Command",
"States": [{ "Image": "actionDefaultImage" }],
"Controllers": ["Keypad", "Encoder"],
"SupportedInMultiActions": true,
"Tooltip": "Run a command",
"UUID": "com.amansprojects.starterpack.runcommand",
"PropertyInspectorPath": "propertyInspector/runCommand.html"
},
{
"Icon": "icons/inputSimulation",
"Name": "Input Simulation",
"States": [{ "Image": "actionDefaultImage" }],
"Controllers": ["Keypad"],
"SupportedInMultiActions": true,
"Tooltip": "Simulate mouse or keyboard input",
"UUID": "com.amansprojects.starterpack.inputsimulation",
"PropertyInspectorPath": "propertyInspector/inputSimulation.html"
},
{
"Icon": "icons/switchProfile",
"Name": "Switch Profile",
"States": [{ "Image": "actionDefaultImage" }],
"Controllers": ["Keypad"],
"SupportedInMultiActions": true,
"Tooltip": "Switch the selected profile",
"UUID": "com.amansprojects.starterpack.switchprofile",
"PropertyInspectorPath": "propertyInspector/switchProfile.html"
},
{
"Icon": "icons/deviceBrightness",
"Name": "Device Brightness",
"States": [{ "Image": "actionDefaultImage" }],
"Controllers": ["Keypad", "Encoder"],
"SupportedInMultiActions": true,
"Tooltip": "Change the device brightness",
"UUID": "com.amansprojects.starterpack.devicebrightness",
"PropertyInspectorPath": "propertyInspector/deviceBrightness.html"
}
]
}

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="10" viewBox="0 0 12 10">
<polygon fill="#FFF" points="7.2 7.5 7.2 -1.3 8.7 -1.3 8.6 9.1 2.7 8.7 2.7 7.2" transform="rotate(37 5.718 3.896)" />
</svg>

After

Width:  |  Height:  |  Size: 210 B

View File

@@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="en">
<head>
<script>
let update = () => {};
function connectElgatoStreamDeckSocket(inPort, inPropertyInspectorUUID, inRegisterEvent, inInfo, inActionInfo) {
inActionInfo = JSON.parse(inActionInfo);
if (inActionInfo.payload.controller == "Encoder") {
document.documentElement.innerHTML = "";
return;
}
const websocket = new WebSocket("ws://localhost:" + inPort);
websocket.onopen = () => {
websocket.send(JSON.stringify({
event: inRegisterEvent,
uuid: inPropertyInspectorUUID,
}));
};
const action = document.getElementById("action");
action.value = inActionInfo.payload.settings.action ?? "set";
const value = document.getElementById("value");
value.value = (inActionInfo.payload.settings.value ?? 50).toString();
const valueDisplay = document.getElementById("value-display");
valueDisplay.innerText = value.value;
update = () => {
valueDisplay.innerText = value.value;
websocket.send(JSON.stringify({
event: "setSettings",
context: inActionInfo.context,
payload: {
action: action.value,
value: parseInt(value.value),
},
}));
};
}
</script>
<link rel="stylesheet" href="sdpi.css" />
</head>
<body>
<div class="sdpi-item">
<div class="sdpi-item-label">Action</div>
<select id="action" onchange="update();" class="sdpi-item-value select">
<option value="set">Set</option>
<option value="increase">Increase</option>
<option value="decrease">Decrease</option>
</select>
</div>
<div class="sdpi-item">
<div class="sdpi-item-label">Value (<span id="value-display"></span>%)</div>
<input id="value" oninput="update();" class="sdpi-item-value" type="range" min="0" max="100" />
</div>
</body>
</html>

View File

@@ -0,0 +1,77 @@
<!DOCTYPE html>
<html lang="en">
<head>
<script>
let update = () => {};
function connectElgatoStreamDeckSocket(inPort, inPropertyInspectorUUID, inRegisterEvent, inInfo, inActionInfo) {
const websocket = new WebSocket("ws://localhost:" + inPort);
inActionInfo = JSON.parse(inActionInfo);
websocket.onopen = () => {
websocket.send(JSON.stringify({
event: inRegisterEvent,
uuid: inPropertyInspectorUUID,
}));
};
const down = document.getElementById("down");
down.value = inActionInfo.payload.settings.down ?? "";
const up = document.getElementById("up");
up.value = inActionInfo.payload.settings.up ?? "";
update = () => {
websocket.send(JSON.stringify({
event: "setSettings",
context: inActionInfo.context,
payload: {
down: down.value,
up: up.value,
},
}));
};
}
</script>
<link rel="stylesheet" href="sdpi.css" />
</head>
<body>
<div type="textarea" class="sdpi-item">
<div class="sdpi-item-label">Key down</div>
<span class="sdpi-item-value textarea">
<textarea oninput="update();" id="down" style="font-family: monospace" placeholder="Input to be executed on key down"></textarea>
</span>
</div>
<div type="textarea" class="sdpi-item">
<div class="sdpi-item-label">Key up</div>
<span class="sdpi-item-value textarea">
<textarea oninput="update();" id="up" style="font-family: monospace" placeholder="Input to be executed on key up"></textarea>
</span>
</div>
<details open>
<summary style="margin-bottom: 0.25rem; font-size: 1.25rem">Details</summary>
<code style="word-break: break-all">[t("hello world!"),m(10,10,r),s(5),b(l),k(ctrl,p),k(uni('a')),k(ctrl,r)]</code>
<p>The example above becomes something like this:</p>
<!-- deno-fmt-ignore -->
<code style="white-space: pre;">[
Text("hello world!"),
MoveMouse(10, 10, Relative),
Scroll(5, Vertical),
Button(Left, Click),
Key(Control, Press),
Key(Unicode('a'), Click),
Key(Control, Release),
]</code>
<p>
As you can see, <code>Vertical</code> is the default for the <code>Scroll</code> action if an axis is not specified,
<code>Click</code> (press followed by release) is the default for the <code>Button</code> and <code>Key</code> actions if a direction is not specified, and so on.
</p>
<!-- deno-fmt-ignore -->
<p>
You can find a list of all of the keycodes
<span style="color: dodgerblue; cursor: pointer;" onclick="window.open('https://github.com/enigo-rs/enigo/blob/v0.5.0/src/keycodes.rs', '_blank');">here</span>.
Please note that not all keycodes are available on all operating systems, as is marked on each such keycode on the line above it.
You can find the possible buttons, directions, axis and coordinate types
<span style="color: dodgerblue; cursor: pointer;" onclick="window.open('https://github.com/enigo-rs/enigo/blob/v0.5.0/src/lib.rs', '_blank');">here</span>.
</p>
</details>
</body>
</html>

View File

@@ -0,0 +1,80 @@
<!DOCTYPE html>
<html lang="en">
<head>
<script>
let update = () => {};
function connectElgatoStreamDeckSocket(inPort, inPropertyInspectorUUID, inRegisterEvent, inInfo, inActionInfo) {
const websocket = new WebSocket("ws://localhost:" + inPort);
inActionInfo = JSON.parse(inActionInfo);
websocket.onopen = () => {
websocket.send(JSON.stringify({
event: inRegisterEvent,
uuid: inPropertyInspectorUUID,
}));
};
if (inActionInfo.payload.controller == "Encoder") {
document.getElementById("encoder").style.display = "block";
document.getElementById("down-label").innerText = "Dial down";
document.getElementById("up-label").innerText = "Dial up";
}
const down = document.getElementById("down");
down.value = inActionInfo.payload.settings.down ?? "";
const up = document.getElementById("up");
up.value = inActionInfo.payload.settings.up ?? "";
const rotate = document.getElementById("rotate");
rotate.value = inActionInfo.payload.settings.rotate ?? "";
const file = document.getElementById("file");
file.value = inActionInfo.payload.settings.file ?? "";
const show = document.getElementById("show");
show.checked = inActionInfo.payload.settings.show ?? false;
update = () => {
websocket.send(JSON.stringify({
event: "setSettings",
context: inActionInfo.context,
payload: {
down: down.value,
up: up.value,
rotate: rotate.value,
file: file.value,
show: show.checked,
},
}));
};
}
</script>
<link rel="stylesheet" href="sdpi.css" />
</head>
<body>
<div class="sdpi-item">
<div class="sdpi-item-label" id="down-label">Key down</div>
<input id="down" oninput="update();" class="sdpi-item-value" />
</div>
<div class="sdpi-item">
<div class="sdpi-item-label" id="up-label">Key up</div>
<input id="up" oninput="update();" class="sdpi-item-value" />
</div>
<div id="encoder" style="display: none">
<div class="sdpi-item">
<div class="sdpi-item-label">Dial rotate</div>
<input id="rotate" oninput="update();" class="sdpi-item-value" />
</div>
<p style="padding-left: 0.75rem; padding-right: 0.75rem">
Usages of <code>%d</code> will be substituted with the number of ticks turned, where negative values signify counterclockwise rotation and positive values signify clockwise rotation.
</p>
</div>
<br />
<div class="sdpi-item">
<div class="sdpi-item-label">Write to path</div>
<input id="file" oninput="update();" class="sdpi-item-value" />
</div>
<div class="sdpi-item">
<div class="sdpi-item-label">Show on key</div>
<input id="show" type="checkbox" oninput="update();" class="sdpi-item-value" />
<label for="show"><span></span></label>
</div>
</body>
</html>

View File

@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<script>
let update = () => {};
function connectElgatoStreamDeckSocket(inPort, inPropertyInspectorUUID, inRegisterEvent, inInfo, inActionInfo) {
const websocket = new WebSocket("ws://localhost:" + inPort);
inActionInfo = JSON.parse(inActionInfo);
websocket.onopen = () => {
websocket.send(JSON.stringify({
event: inRegisterEvent,
uuid: inPropertyInspectorUUID,
}));
};
const device = document.getElementById("device");
device.value = inActionInfo.payload.settings.device ?? inActionInfo.device;
const profile = document.getElementById("profile");
profile.value = inActionInfo.payload.settings.profile ?? "Default";
update = () => {
websocket.send(JSON.stringify({
event: "setSettings",
context: inActionInfo.context,
payload: {
device: device.value ?? inActionInfo.device,
profile: profile.value,
},
}));
};
}
</script>
<link rel="stylesheet" href="sdpi.css" />
</head>
<body>
<div class="sdpi-item">
<div class="sdpi-item-label">Device ID</div>
<input id="device" oninput="update();" class="sdpi-item-value" />
</div>
<div class="sdpi-item">
<div class="sdpi-item-label">Profile</div>
<input id="profile" oninput="update();" class="sdpi-item-value" />
</div>
</body>
</html>

View File

@@ -0,0 +1,23 @@
Boost Software License - Version 1.0 - August 17th, 2003
Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:
The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

View File

@@ -0,0 +1,19 @@
Copyright © 2004-2017 by René Nyffenegger
This source code is provided 'as-is', without any express or implied
warranty. In no event will the author be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this source code must not be misrepresented; you must not
claim that you wrote the original source code. If you use this source code
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original source code.
3. This notice may not be removed or altered from any source distribution.

View File

@@ -0,0 +1,23 @@
COPYRIGHT AND PERMISSION NOTICE
Copyright (c) 1996 - 2021, Daniel Stenberg, daniel@haxx.se, and many contributors, see
the THANKS file.
All rights reserved.
Permission to use, copy, modify, and distribute this software for any purpose with or without fee
is hereby granted, provided that the above copyright notice and this permission notice appear in
all copies.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Except as contained in this notice, the name of a copyright holder shall not be used in
advertising or otherwise to promote the sale, use or other dealings in this Software without prior
written authorization of the copyright holder.

View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2013-2021 Niels Lohmann
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -0,0 +1,422 @@
Twemoji by Twitter is licensed under the MIT license (code) and CC-BY 4.0 (graphics)
The graphics have been repackaged as data URIs in a JSON file but are otherwise unchanged.
Code - MIT
MIT License
Copyright (c) 2021 Twitter
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Graphics - CC-BY 4.0
Attribution 4.0 International
=======================================================================
Creative Commons Corporation ("Creative Commons") is not a law firm and
does not provide legal services or legal advice. Distribution of
Creative Commons public licenses does not create a lawyer-client or
other relationship. Creative Commons makes its licenses and related
information available on an "as-is" basis. Creative Commons gives no
warranties regarding its licenses, any material licensed under their
terms and conditions, or any related information. Creative Commons
disclaims all liability for damages resulting from their use to the
fullest extent possible.
Using Creative Commons Public Licenses
Creative Commons public licenses provide a standard set of terms and
conditions that creators and other rights holders may use to share
original works of authorship and other material subject to copyright
and certain other rights specified in the public license below. The
following considerations are for informational purposes only, are not
exhaustive, and do not form part of our licenses.
Considerations for licensors: Our public licenses are
intended for use by those authorized to give the public
permission to use material in ways otherwise restricted by
copyright and certain other rights. Our licenses are
irrevocable. Licensors should read and understand the terms
and conditions of the license they choose before applying it.
Licensors should also secure all rights necessary before
applying our licenses so that the public can reuse the
material as expected. Licensors should clearly mark any
material not subject to the license. This includes other CC-
licensed material, or material used under an exception or
limitation to copyright. More considerations for licensors:
wiki.creativecommons.org/Considerations_for_licensors
Considerations for the public: By using one of our public
licenses, a licensor grants the public permission to use the
licensed material under specified terms and conditions. If
the licensor's permission is not necessary for any reason--for
example, because of any applicable exception or limitation to
copyright--then that use is not regulated by the license. Our
licenses grant only permissions under copyright and certain
other rights that a licensor has authority to grant. Use of
the licensed material may still be restricted for other
reasons, including because others have copyright or other
rights in the material. A licensor may make special requests,
such as asking that all changes be marked or described.
Although not required by our licenses, you are encouraged to
respect those requests where reasonable. More_considerations
for the public:
wiki.creativecommons.org/Considerations_for_licensees
=======================================================================
Creative Commons Attribution 4.0 International Public License
By exercising the Licensed Rights (defined below), You accept and agree
to be bound by the terms and conditions of this Creative Commons
Attribution 4.0 International Public License ("Public License"). To the
extent this Public License may be interpreted as a contract, You are
granted the Licensed Rights in consideration of Your acceptance of
these terms and conditions, and the Licensor grants You such rights in
consideration of benefits the Licensor receives from making the
Licensed Material available under these terms and conditions.
Section 1 -- Definitions.
a. Adapted Material means material subject to Copyright and Similar
Rights that is derived from or based upon the Licensed Material
and in which the Licensed Material is translated, altered,
arranged, transformed, or otherwise modified in a manner requiring
permission under the Copyright and Similar Rights held by the
Licensor. For purposes of this Public License, where the Licensed
Material is a musical work, performance, or sound recording,
Adapted Material is always produced where the Licensed Material is
synched in timed relation with a moving image.
b. Adapter's License means the license You apply to Your Copyright
and Similar Rights in Your contributions to Adapted Material in
accordance with the terms and conditions of this Public License.
c. Copyright and Similar Rights means copyright and/or similar rights
closely related to copyright including, without limitation,
performance, broadcast, sound recording, and Sui Generis Database
Rights, without regard to how the rights are labeled or
categorized. For purposes of this Public License, the rights
specified in Section 2(b)(1)-(2) are not Copyright and Similar
Rights.
d. Effective Technological Measures means those measures that, in the
absence of proper authority, may not be circumvented under laws
fulfilling obligations under Article 11 of the WIPO Copyright
Treaty adopted on December 20, 1996, and/or similar international
agreements.
e. Exceptions and Limitations means fair use, fair dealing, and/or
any other exception or limitation to Copyright and Similar Rights
that applies to Your use of the Licensed Material.
f. Licensed Material means the artistic or literary work, database,
or other material to which the Licensor applied this Public
License.
g. Licensed Rights means the rights granted to You subject to the
terms and conditions of this Public License, which are limited to
all Copyright and Similar Rights that apply to Your use of the
Licensed Material and that the Licensor has authority to license.
h. Licensor means the individual(s) or entity(ies) granting rights
under this Public License.
i. Share means to provide material to the public by any means or
process that requires permission under the Licensed Rights, such
as reproduction, public display, public performance, distribution,
dissemination, communication, or importation, and to make material
available to the public including in ways that members of the
public may access the material from a place and at a time
individually chosen by them.
j. Sui Generis Database Rights means rights other than copyright
resulting from Directive 96/9/EC of the European Parliament and of
the Council of 11 March 1996 on the legal protection of databases,
as amended and/or succeeded, as well as other essentially
equivalent rights anywhere in the world.
k. You means the individual or entity exercising the Licensed Rights
under this Public License. Your has a corresponding meaning.
Section 2 -- Scope.
a. License grant.
1. Subject to the terms and conditions of this Public License,
the Licensor hereby grants You a worldwide, royalty-free,
non-sublicensable, non-exclusive, irrevocable license to
exercise the Licensed Rights in the Licensed Material to:
a. reproduce and Share the Licensed Material, in whole or
in part; and
b. produce, reproduce, and Share Adapted Material.
2. Exceptions and Limitations. For the avoidance of doubt, where
Exceptions and Limitations apply to Your use, this Public
License does not apply, and You do not need to comply with
its terms and conditions.
3. Term. The term of this Public License is specified in Section
6(a).
4. Media and formats; technical modifications allowed. The
Licensor authorizes You to exercise the Licensed Rights in
all media and formats whether now known or hereafter created,
and to make technical modifications necessary to do so. The
Licensor waives and/or agrees not to assert any right or
authority to forbid You from making technical modifications
necessary to exercise the Licensed Rights, including
technical modifications necessary to circumvent Effective
Technological Measures. For purposes of this Public License,
simply making modifications authorized by this Section 2(a)
(4) never produces Adapted Material.
5. Downstream recipients.
a. Offer from the Licensor -- Licensed Material. Every
recipient of the Licensed Material automatically
receives an offer from the Licensor to exercise the
Licensed Rights under the terms and conditions of this
Public License.
b. No downstream restrictions. You may not offer or impose
any additional or different terms or conditions on, or
apply any Effective Technological Measures to, the
Licensed Material if doing so restricts exercise of the
Licensed Rights by any recipient of the Licensed
Material.
6. No endorsement. Nothing in this Public License constitutes or
may be construed as permission to assert or imply that You
are, or that Your use of the Licensed Material is, connected
with, or sponsored, endorsed, or granted official status by,
the Licensor or others designated to receive attribution as
provided in Section 3(a)(1)(A)(i).
b. Other rights.
1. Moral rights, such as the right of integrity, are not
licensed under this Public License, nor are publicity,
privacy, and/or other similar personality rights; however, to
the extent possible, the Licensor waives and/or agrees not to
assert any such rights held by the Licensor to the limited
extent necessary to allow You to exercise the Licensed
Rights, but not otherwise.
2. Patent and trademark rights are not licensed under this
Public License.
3. To the extent possible, the Licensor waives any right to
collect royalties from You for the exercise of the Licensed
Rights, whether directly or through a collecting society
under any voluntary or waivable statutory or compulsory
licensing scheme. In all other cases the Licensor expressly
reserves any right to collect such royalties.
Section 3 -- License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the
following conditions.
a. Attribution.
1. If You Share the Licensed Material (including in modified
form), You must:
a. retain the following if it is supplied by the Licensor
with the Licensed Material:
i. identification of the creator(s) of the Licensed
Material and any others designated to receive
attribution, in any reasonable manner requested by
the Licensor (including by pseudonym if
designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of
warranties;
v. a URI or hyperlink to the Licensed Material to the
extent reasonably practicable;
b. indicate if You modified the Licensed Material and
retain an indication of any previous modifications; and
c. indicate the Licensed Material is licensed under this
Public License, and include the text of, or the URI or
hyperlink to, this Public License.
2. You may satisfy the conditions in Section 3(a)(1) in any
reasonable manner based on the medium, means, and context in
which You Share the Licensed Material. For example, it may be
reasonable to satisfy the conditions by providing a URI or
hyperlink to a resource that includes the required
information.
3. If requested by the Licensor, You must remove any of the
information required by Section 3(a)(1)(A) to the extent
reasonably practicable.
4. If You Share Adapted Material You produce, the Adapter's
License You apply must not prevent recipients of the Adapted
Material from complying with this Public License.
Section 4 -- Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that
apply to Your use of the Licensed Material:
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
to extract, reuse, reproduce, and Share all or a substantial
portion of the contents of the database;
b. if You include all or a substantial portion of the database
contents in a database in which You have Sui Generis Database
Rights, then the database in which You have Sui Generis Database
Rights (but not its individual contents) is Adapted Material; and
c. You must comply with the conditions in Section 3(a) if You Share
all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not
replace Your obligations under this Public License where the Licensed
Rights include other Copyright and Similar Rights.
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
c. The disclaimer of warranties and limitation of liability provided
above shall be interpreted in a manner that, to the extent
possible, most closely approximates an absolute disclaimer and
waiver of all liability.
Section 6 -- Term and Termination.
a. This Public License applies for the term of the Copyright and
Similar Rights licensed here. However, if You fail to comply with
this Public License, then Your rights under this Public License
terminate automatically.
b. Where Your right to use the Licensed Material has terminated under
Section 6(a), it reinstates:
1. automatically as of the date the violation is cured, provided
it is cured within 30 days of Your discovery of the
violation; or
2. upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any
right the Licensor may have to seek remedies for Your violations
of this Public License.
c. For the avoidance of doubt, the Licensor may also offer the
Licensed Material under separate terms or conditions or stop
distributing the Licensed Material at any time; however, doing so
will not terminate this Public License.
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
License.
Section 7 -- Other Terms and Conditions.
a. The Licensor shall not be bound by any additional or different
terms or conditions communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements regarding the
Licensed Material not stated herein are separate from and
independent of the terms and conditions of this Public License.
Section 8 -- Interpretation.
a. For the avoidance of doubt, this Public License does not, and
shall not be interpreted to, reduce, limit, restrict, or impose
conditions on any use of the Licensed Material that could lawfully
be made without permission under this Public License.
b. To the extent possible, if any provision of this Public License is
deemed unenforceable, it shall be automatically reformed to the
minimum extent necessary to make it enforceable. If the provision
cannot be reformed, it shall be severed from this Public License
without affecting the enforceability of the remaining terms and
conditions.
c. No term or condition of this Public License will be waived and no
failure to comply consented to unless expressly agreed to by the
Licensor.
d. Nothing in this Public License constitutes or may be interpreted
as a limitation upon, or waiver of, any privileges and immunities
that apply to the Licensor or You, including from the legal
processes of any jurisdiction or authority.
=======================================================================
Creative Commons is not a party to its public licenses.
Notwithstanding, Creative Commons may elect to apply one of its public
licenses to material it publishes and in those instances will be
considered the "Licensor." Except for the limited purpose of indicating
that material is shared under a Creative Commons public license or as
otherwise permitted by the Creative Commons policies published at
creativecommons.org/policies, Creative Commons does not authorize the
use of the trademark "Creative Commons" or any other trademark or logo
of Creative Commons without its prior written consent including,
without limitation, in connection with any unauthorized modifications
to any of its public licenses or any other arrangements,
understandings, or agreements concerning use of licensed material. For
the avoidance of doubt, this paragraph does not form part of the public
licenses.
Creative Commons may be contacted at creativecommons.org.

View File

@@ -0,0 +1,145 @@
Main Library:
Copyright (c) 2014, Peter Thorson. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the WebSocket++ Project nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL PETER THORSON BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Bundled Libraries:
****** Base 64 Library (base64/base64.hpp) ******
base64.hpp is a repackaging of the base64.cpp and base64.h files into a
single header suitable for use as a header only library. This conversion was
done by Peter Thorson (webmaster@zaphoyd.com) in 2012. All modifications to
the code are redistributed under the same license as the original, which is
listed below.
base64.cpp and base64.h
Copyright (C) 2004-2008 René Nyffenegger
This source code is provided 'as-is', without any express or implied
warranty. In no event will the author be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this source code must not be misrepresented; you must not
claim that you wrote the original source code. If you use this source code
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original source code.
3. This notice may not be removed or altered from any source distribution.
René Nyffenegger rene.nyffenegger@adp-gmbh.ch
****** SHA1 Library (sha1/sha1.hpp) ******
sha1.hpp is a repackaging of the sha1.cpp and sha1.h files from the shallsha1
library (http://code.google.com/p/smallsha1/) into a single header suitable for
use as a header only library. This conversion was done by Peter Thorson
(webmaster@zaphoyd.com) in 2013. All modifications to the code are redistributed
under the same license as the original, which is listed below.
Copyright (c) 2011, Micael Hildenborg
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Micael Hildenborg nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY Micael Hildenborg ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL Micael Hildenborg BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
****** MD5 Library (common/md5.hpp) ******
md5.hpp is a reformulation of the md5.h and md5.c code from
http://www.opensource.apple.com/source/cups/cups-59/cups/md5.c to allow it to
function as a component of a header only library. This conversion was done by
Peter Thorson (webmaster@zaphoyd.com) in 2012 for the WebSocket++ project. The
changes are released under the same license as the original (listed below)
Copyright (C) 1999, 2002 Aladdin Enterprises. All rights reserved.
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
L. Peter Deutsch
ghost@aladdin.com
****** UTF8 Validation logic (utf8_validation.hpp) ******
utf8_validation.hpp is adapted from code originally written by Bjoern Hoehrmann
<bjoern@hoehrmann.de>. See http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ for
details.
The original license:
Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -0,0 +1,179 @@
{
"Description": "Steuere Discord.",
"Name": "Discord",
"com.elgato.discord.mute": {
"Name": "Stummschalten",
"Tooltip": "Mikrofon-Stummschaltung ein/aus",
"States": [
{
"Name": "Stummschalten"
},
{
"Name": "Stumm aus"
}
]
},
"com.elgato.discord.deafen": {
"Name": "Taubschalten",
"Tooltip": "Taubschaltung ein/aus",
"States": [
{
"Name": "Taubschalten"
},
{
"Name": "Taub aus"
}
]
},
"com.elgato.discord.channel.voice": {
"Name": "Sprachkanal",
"Tooltip": "Einen Sprachkanal betreten/verlassen",
"States": [
{
"Name": "Betreten"
},
{
"Name": "Verlassen"
}
]
},
"com.elgato.discord.channel.text": {
"Name": "Textkanal",
"Tooltip": "Zu einem Textkanal gehen"
},
"com.elgato.discord.pushto.talk": {
"Name": "Push-to-Talk",
"Tooltip": "Gedrückt halten zum Sprechen"
},
"com.elgato.discord.pushto.mute": {
"Name": "Push-to-Mute",
"Tooltip": "Gedrückt halten zum Stummschalten"
},
"com.elgato.discord.setaudiodevice": {
"Name": "Audiogerät festlegen",
"Tooltip": "Wähle deine Geräte für Audioeingang und -ausgang"
},
"com.elgato.discord.serverstats": {
"Name": "Server-Eigenschaften",
"Tooltip": "Zeige Benutzer-/Nachrichteneigenschaften eines Servers an"
},
"com.elgato.discord.pushtotalktoggle": {
"Name": "Spracheingabemodus umschalten",
"Tooltip": "Zwischen Push-to-Talk und Sprachaktivierung wechseln",
"States": [
{
"Name": "Sprachaktivierung"
},
{
"Name": "Push-to-Talk"
}
]
},
"com.elgato.discord.soundboard": {
"Name": "Soundboard",
"Tooltip": "Spielt einen Sound auf dem Discord-Soundboard ab"
},
"com.elgato.discord.notifications": {
"Name": "Benachrichtigungen",
"Tooltip": "Zeige Alarme zu neuen Benachrichtigungen an"
},
"com.elgato.discord.uservolumecontrolbutton": {
"Name": "Benutzer-Lautstärkesteuerung",
"Tooltip": "Steuere die Lautstärke von Benutzern in Sprachchats"
},
"com.elgato.discord.uservolumecontroldial": {
"Name": "Benutzer-Lautstärkesteuerung",
"Tooltip": "Steuere die Lautstärke von Benutzern in Sprachchats",
"Encoder": {
"TriggerDescription": {
"Rotate": "Lautstärke anpassen",
"Push": "Nächster Benutzer",
"Touch": "Stummschalten"
}
}
},
"com.elgato.discord.volumecontrolbutton": {
"Name": "Lautstärkesteuerung",
"Tooltip": "Steuere die Lautstärke von Audiogeräten"
},
"com.elgato.discord.volumecontrol": {
"Name": "Lautstärkesteuerung",
"Tooltip": "Steuere die Lautstärke von Audiogeräten",
"Encoder": {
"TriggerDescription": {
"Rotate": "Lautstärke anpassen",
"Push": "Stumm-/Taubschalten",
"Touch": "Stumm-/Taubschalten"
}
}
},
"Localization": {
"PI": {
"AppWarning": "Bitte starte Discord",
"AuthWarning": "Discord-Autorisierung erforderlich",
"AccessLabel": "Autorisierung",
"AccessButton": "Zugriff anfordern",
"Server": "Server",
"NoServer": "Kein Server",
"VoiceChannel": "Sprachkanal",
"TextChannel": "Textkanal",
"NoChannel": "Kein Kanal",
"Action": "Aktion",
"PushToTalk": "Push-to-Talk",
"PushToMute": "Push-to-Mute",
"UserVolumeMode": "Modus",
"DeviceVolumeMode": "Modus",
"UserMuteType": "Stummschaltungstyp",
"MuteUser": "Stummschalten",
"UnmuteUser": "Stumm aus",
"ToggleMuteUser": "Stumm ein/aus",
"MuteDevice": "Stummschalten",
"AdjustUserVol": "Anpassen",
"AdjustDeviceVol": "Anpassen",
"SetUserVol": "Festlegen",
"SetDeviceVol": "Festlegen",
"UserAdjustMode": "Anpassungsmodus",
"UserAdjustAny": "Jeder Benutzer",
"UserAdjustSpecific": "Bestimmter Benutzer",
"VolStepSize": "Stufengröße",
"VolSetValue": "Gewünschte Lautstärke",
"DontDisplay": "Nicht anzeigen",
"DoNothing": "Nichts tun",
"User": "Benutzer",
"Users": "Benutzer",
"UsersNotFound": "Keine Benutzer gefunden",
"IconStyle": "Icon-Stil",
"IconStatic": "Statisch",
"IconDynamic": "Dynamisch",
"IconDynamicH": "Dynamisch (horizontal)",
"IconDynamicV": "Dynamisch (vertikal)",
"IODeviceMode": "Modus",
"IODeviceModeInput": "Eingang festlegen",
"IODeviceModeOutput": "Ausgang festlegen",
"IODeviceModeBoth": "Beides festlegen",
"IODevice": "Gerät",
"IODeviceInput": "Eingang",
"IODeviceOutput": "Ausgang",
"IODeviceDefault": "Standard",
"IODeviceInputNotFound": "Keine Eingänge gefunden",
"IODeviceOutputNotFound": "Keine Ausgänge gefunden",
"SrvStatMsg": "Nachrichten",
"SrvStatMsgDisplayNew": "Anzahl neuer Nachrichten anzeigen",
"SrvStatUsrOnline": "Benutzer anzeigen, die online sind",
"SrvStatUsrActive": "Kürzlich aktive Benutzer anzeigen",
"OnPress": "Drücken",
"OnLongPress": "Gedrückt halten",
"OnPressRecentMsg": "Zur zuletzt erhaltenen Nachricht",
"OnPressClearMsg": "Nachrichtenanzahl zurücksetzen",
"OnPressNotification": "Benachrichtigung öffnen",
"OnPressClearNotification": "Benachrichtigungen leeren",
"SrvWidgetWarn": "Serverwidget muss aktiviert sein, um Online-Status von Benutzern nachzuvollziehen",
"SoundLabel": "Sound",
"SoundboardSearch": "Suchergebnisse",
"SoundboardSearchEmpty": "Keine Sounds gefunden",
"SoundboardDefaults": "Discord-Sounds",
"Search": "Suchen"
},
"Volume": "Lautstärke"
}
}

View File

@@ -0,0 +1,195 @@
{
"Description": "Control Discord.",
"Name": "Discord",
"com.elgato.discord.mute": {
"Name": "Mute",
"Tooltip": "Toggle Microphone Mute",
"States": [
{
"Name": "Mute"
},
{
"Name": "Unmute"
}
]
},
"com.elgato.discord.deafen": {
"Name": "Deafen",
"Tooltip": "Toggle Deafen",
"States": [
{
"Name": "Deafen"
},
{
"Name": "Undeafen"
}
]
},
"com.elgato.discord.channel.voice": {
"Name": "Voice Channel",
"Tooltip": "Join or leave a voice channel",
"States": [
{
"Name": "Enter"
},
{
"Name": "Leave"
}
]
},
"com.elgato.discord.channel.text": {
"Name": "Text Channel",
"Tooltip": "Go to a text channel"
},
"com.elgato.discord.pushto.talk": {
"Name": "Push to Talk",
"Tooltip": "Press and hold to talk"
},
"com.elgato.discord.pushto.mute": {
"Name": "Push to Mute",
"Tooltip": "Press and hold to mute"
},
"com.elgato.discord.setaudiodevice": {
"Name": "Set Audio Device",
"Tooltip": "Select your audio input and output device"
},
"com.elgato.discord.serverstats": {
"Name": "Server Stats",
"Tooltip": "Display user / message stats for a server"
},
"com.elgato.discord.pushtotalktoggle": {
"Name": "Voice Input Mode Toggle",
"Tooltip": "Toggle between push to talk and voice activity mode",
"States": [
{
"Name": "Voice Activity"
},
{
"Name": "Push to Talk"
}
]
},
"com.elgato.discord.soundboard": {
"Name": "Soundboard",
"Tooltip": "Plays a sound on the Discord Soundboard"
},
"com.elgato.discord.notifications": {
"Name": "Notifications",
"Tooltip": "Display alerts for recent notifications"
},
"com.elgato.discord.uservolumecontrolbutton": {
"Name": "User Volume Control",
"Tooltip": "Control the volume of users in calls"
},
"com.elgato.discord.uservolumecontroldial": {
"Name": "User Volume Control",
"Tooltip": "Control the volume of users in calls",
"Encoder": {
"TriggerDescription": {
"Rotate": "Adjust Volume",
"Push": "Next User",
"Touch": "Mute"
}
}
},
"com.elgato.discord.volumecontrolbutton": {
"Name": "Volume Control",
"Tooltip": "Control the volume of audio devices"
},
"com.elgato.discord.volumecontrol": {
"Name": "Volume Control",
"Tooltip": "Control the volume of audio devices",
"Encoder": {
"TriggerDescription": {
"Rotate": "Adjust Volume",
"Push": "Mute/Deafen",
"Touch": "Mute/Deafen"
}
}
},
"Localization": {
"PI": {
"AppWarning": "Please launch Discord",
"AuthWarning": "Discord authorization required",
"AccessLabel": "Authorization",
"AccessButton": "Request access",
"Server": "Server",
"NoServer": "No Server",
"VoiceChannel": "Voice Channel",
"TextChannel": "Text Channel",
"NoChannel": "No Channel",
"Action": "Action",
"PushToTalk": "Push to Talk",
"PushToMute": "Push to Mute",
"UserVolumeMode": "Mode",
"DeviceVolumeMode": "Mode",
"UserMuteType": "Mute Type",
"MuteUser": "Mute",
"UnmuteUser": "Unmute",
"ToggleMuteUser": "Toggle Mute",
"MuteDevice": "Mute",
"AdjustUserVol": "Adjust",
"AdjustDeviceVol": "Adjust",
"SetUserVol": "Set",
"SetDeviceVol": "Set",
"UserAdjustMode": "Adjust Mode",
"UserAdjustAny": "Any User",
"UserAdjustSpecific": "Specific User",
"VolStepSize": "Step Size",
"VolSetValue": "Desired Volume",
"DontDisplay": "Don't Display",
"DoNothing": "Do Nothing",
"User": "User",
"Users": "Users",
"UsersNotFound": "No Users Found",
"IconStyle": "Icon Style",
"IconStatic": "Static",
"IconDynamic": "Dynamic",
"IconDynamicH": "Dynamic (Horizontal)",
"IconDynamicV": "Dynamic (Vertical)",
"IODeviceMode": "Mode",
"IODeviceModeInput": "Set Input",
"IODeviceModeOutput": "Set Output",
"IODeviceModeBoth": "Set Both",
"IODevice": "Device",
"IODeviceInput": "Input",
"IODeviceOutput": "Output",
"IODeviceDefault": "Default",
"IODeviceInputNotFound": "No Inputs Found",
"IODeviceOutputNotFound": "No Outputs Found",
"SrvStatMsg": "Messages",
"SrvStatMsgDisplayNew": "Display New Message Count",
"SrvStatUsrOnline": "Display Online Users",
"SrvStatUsrActive": "Display Recently Active Users",
"OnPress": "On Press",
"OnLongPress": "On Long Press",
"OnPressRecentMsg": "Go To Most Recent Message",
"OnPressClearMsg": "Clear Message Count",
"OnPressNotification": "Open Notification",
"OnPressClearNotification": "Clear Notifications",
"SrvWidgetWarn": "Server widget must be enabled to track online users",
"SoundLabel": "Sound",
"SoundboardSearch": "Search Results",
"SoundboardSearchEmpty": "No Sounds Found",
"SoundboardDefaults": "Discord Sounds",
"Search": "Search"
},
"Volume": "Volume"
}
}

View File

@@ -0,0 +1,179 @@
{
"Description": "Controlar Discord.",
"Name": "Discord",
"com.elgato.discord.mute": {
"Name": "Silencio",
"Tooltip": "Silenciar/no silenciar micrófono",
"States": [
{
"Name": "Silenciar"
},
{
"Name": "No silenciar"
}
]
},
"com.elgato.discord.deafen": {
"Name": "Cortar audio",
"Tooltip": "Cortar/no cortar audio",
"States": [
{
"Name": "Cortar audio"
},
{
"Name": "Reactivar audio"
}
]
},
"com.elgato.discord.channel.voice": {
"Name": "Canal de voz",
"Tooltip": "Entrar o salir de un canal de voz",
"States": [
{
"Name": "Entrar"
},
{
"Name": "Salir"
}
]
},
"com.elgato.discord.channel.text": {
"Name": "Canal de texto",
"Tooltip": "Ir a un canal de texto"
},
"com.elgato.discord.pushto.talk": {
"Name": "Pulsar para hablar",
"Tooltip": "Mantener pulsado para hablar"
},
"com.elgato.discord.pushto.mute": {
"Name": "Pulsar para silenciar",
"Tooltip": "Mantener pulsado para silenciar"
},
"com.elgato.discord.setaudiodevice": {
"Name": "Seleccionar dispositivo de audio",
"Tooltip": "Selecciona tu dispositivo de entrada y salida de audio"
},
"com.elgato.discord.serverstats": {
"Name": "Datos del servidor",
"Tooltip": "Mostrar datos de usuario / mensajes de un servidor"
},
"com.elgato.discord.pushtotalktoggle": {
"Name": "Cambiar modo de entrada de voz",
"Tooltip": "Cambiar entre pulsar para hablar y actividad de voz",
"States": [
{
"Name": "Actividad de voz"
},
{
"Name": "Pulsar para hablar"
}
]
},
"com.elgato.discord.soundboard": {
"Name": "Caja de sonido",
"Tooltip": "Reproduce un sonido de la caja de sonido de Discord"
},
"com.elgato.discord.notifications": {
"Name": "Notificaciones",
"Tooltip": "Mostrar alertas de notificaciones recientes"
},
"com.elgato.discord.uservolumecontrolbutton": {
"Name": "Control de volumen de usuario",
"Tooltip": "Controla el volumen de los usuarios en las llamadas"
},
"com.elgato.discord.uservolumecontroldial": {
"Name": "Control de volumen de usuario",
"Tooltip": "Controla el volumen de los usuarios en las llamadas",
"Encoder": {
"TriggerDescription": {
"Rotate": "Ajustar volumen",
"Push": "Usuario siguiente",
"Touch": "Silenciar"
}
}
},
"com.elgato.discord.volumecontrolbutton": {
"Name": "Control de volumen",
"Tooltip": "Controla el volumen de los dispositivos de audio"
},
"com.elgato.discord.volumecontrol": {
"Name": "Control de volumen",
"Tooltip": "Controla el volumen de los dispositivos de audio",
"Encoder": {
"TriggerDescription": {
"Rotate": "Ajustar volumen",
"Push": "Silenciar/Cortar audio",
"Touch": "Silenciar/Cortar audio"
}
}
},
"Localization": {
"PI": {
"AppWarning": "Abre Discord",
"AuthWarning": "Se requiere autorización de Discord",
"AccessLabel": "Autorización",
"AccessButton": "Solicitar acceso",
"Server": "Servidor",
"NoServer": "Sin servidor",
"VoiceChannel": "Canal de voz",
"TextChannel": "Canal de texto",
"NoChannel": "Sin canal",
"Action": "Acción",
"PushToTalk": "Pulsar para hablar",
"PushToMute": "Pulsar para silenciar",
"UserVolumeMode": "Modo",
"DeviceVolumeMode": "Modo",
"UserMuteType": "Tipo de silenciado",
"MuteUser": "Silenciar",
"UnmuteUser": "No silenciar",
"ToggleMuteUser": "Activar/desactivar silencio",
"MuteDevice": "Silenciar",
"AdjustUserVol": "Ajustar",
"AdjustDeviceVol": "Ajustar",
"SetUserVol": "Definir",
"SetDeviceVol": "Definir",
"UserAdjustMode": "Modo de ajuste",
"UserAdjustAny": "Todos los usuarios",
"UserAdjustSpecific": "Usuario concreto",
"VolStepSize": "Tamaño del paso",
"VolSetValue": "Volumen deseado",
"DontDisplay": "No mostrar",
"DoNothing": "No hacer nada",
"User": "Usuario",
"Users": "Usuarios",
"UsersNotFound": "No se han encontrado usuarios",
"IconStyle": "Estilo de icono",
"IconStatic": "Estático",
"IconDynamic": "Dinámico",
"IconDynamicH": "Dinámico (horizontal)",
"IconDynamicV": "Dinámico (vertical)",
"IODeviceMode": "Modo",
"IODeviceModeInput": "Seleccionar entrada",
"IODeviceModeOutput": "Seleccionar salida",
"IODeviceModeBoth": "Seleccionar ambas",
"IODevice": "Dispositivo",
"IODeviceInput": "Entrada",
"IODeviceOutput": "Salida",
"IODeviceDefault": "Por omisión",
"IODeviceInputNotFound": "No se han encontrado entradas",
"IODeviceOutputNotFound": "No se han encontrado salidas",
"SrvStatMsg": "Mensajes",
"SrvStatMsgDisplayNew": "Mostrar total de nuevos mensajes",
"SrvStatUsrOnline": "Mostrar usuarios online",
"SrvStatUsrActive": "Mostrar usuarios recientemente activos",
"OnPress": "Pulsación",
"OnLongPress": "Pulsación larga",
"OnPressRecentMsg": "Ir al mensaje más reciente",
"OnPressClearMsg": "Borrar total de mensajes",
"OnPressNotification": "Abrir notificación",
"OnPressClearNotification": "Borrar notificaciones",
"SrvWidgetWarn": "Se debe activar el widget de servidor para el seguimiento de usuarios online",
"SoundLabel": "Sonido",
"SoundboardSearch": "Resultados de búsqueda",
"SoundboardSearchEmpty": "No se han encontrado sonidos",
"SoundboardDefaults": "Sonidos de Discord",
"Search": "Buscar"
},
"Volume": "Volumen"
}
}

View File

@@ -0,0 +1,179 @@
{
"Description": "Contrôlez Discord.",
"Name": "Discord",
"com.elgato.discord.mute": {
"Name": "Couper le micro",
"Tooltip": "Couper/Réactiver le micro",
"States": [
{
"Name": "Couper le micro"
},
{
"Name": "Réactiver le micro"
}
]
},
"com.elgato.discord.deafen": {
"Name": "Couper le son",
"Tooltip": "Couper/Réactiver le son",
"States": [
{
"Name": "Couper le son"
},
{
"Name": "Réactiver le son"
}
]
},
"com.elgato.discord.channel.voice": {
"Name": "Canal voix",
"Tooltip": "Rejoindre ou quitter un canal voix",
"States": [
{
"Name": "Rejoindre"
},
{
"Name": "Quitter"
}
]
},
"com.elgato.discord.channel.text": {
"Name": "Canal texte",
"Tooltip": "Accéder à un canal texte"
},
"com.elgato.discord.pushto.talk": {
"Name": "Appuyer pour parler",
"Tooltip": "Appuyer et maintenir pour parler"
},
"com.elgato.discord.pushto.mute": {
"Name": "Appuyer pour couper le micro",
"Tooltip": "Appuyer et maintenir pour couper le micro"
},
"com.elgato.discord.setaudiodevice": {
"Name": "Définir le périphérique audio",
"Tooltip": "Sélectionner l'entrée audio et le périphérique de sortie"
},
"com.elgato.discord.serverstats": {
"Name": "Statistiques du serveur",
"Tooltip": "Afficher les statistiques sur les utilisateurs/messages d'un serveur"
},
"com.elgato.discord.pushtotalktoggle": {
"Name": "Changer de mode d'entrée vocale",
"Tooltip": "Basculer entre les modes Appuyer pour parler et Activation vocale",
"States": [
{
"Name": "Activation vocale"
},
{
"Name": "Appuyer pour parler"
}
]
},
"com.elgato.discord.soundboard": {
"Name": "Soundboard",
"Tooltip": "Joue un son sur le Soundboard Discord"
},
"com.elgato.discord.notifications": {
"Name": "Notifications",
"Tooltip": "Afficher les alertes des notifications récentes"
},
"com.elgato.discord.uservolumecontrolbutton": {
"Name": "Commande de volume des utilisateurs",
"Tooltip": "Contrôler le volume des utilisateurs lors des appels"
},
"com.elgato.discord.uservolumecontroldial": {
"Name": "Commande de volume des utilisateurs",
"Tooltip": "Contrôler le volume des utilisateurs lors des appels",
"Encoder": {
"TriggerDescription": {
"Rotate": "Régler le volume",
"Push": "Utilisateur suivant",
"Touch": "Couper le son"
}
}
},
"com.elgato.discord.volumecontrolbutton": {
"Name": "Commande de volume",
"Tooltip": "Contrôler le volume des périphériques audio"
},
"com.elgato.discord.volumecontrol": {
"Name": "Commande de volume",
"Tooltip": "Contrôler le volume des périphériques audio",
"Encoder": {
"TriggerDescription": {
"Rotate": "Régler le volume",
"Push": "Couper le son",
"Touch": "Couper le son"
}
}
},
"Localization": {
"PI": {
"AppWarning": "Veuillez lancer Discord",
"AuthWarning": "Autorisation Discord requise",
"AccessLabel": "Autorisation",
"AccessButton": "Demander l'accès",
"Server": "Serveur",
"NoServer": "Pas de serveur",
"VoiceChannel": "Canal voix",
"TextChannel": "Canal texte",
"NoChannel": "Aucune chaîne",
"Action": "Action",
"PushToTalk": "Appuyer pour parler",
"PushToMute": "Appuyer pour couper le micro",
"UserVolumeMode": "Mode",
"DeviceVolumeMode": "Mode",
"UserMuteType": "Type de Mute",
"MuteUser": "Couper le son",
"UnmuteUser": "Réactiver le micro",
"ToggleMuteUser": "Couper/Réactiver le micro",
"MuteDevice": "Couper le son",
"AdjustUserVol": "Ajuster",
"AdjustDeviceVol": "Ajuster",
"SetUserVol": "Définir",
"SetDeviceVol": "Définir",
"UserAdjustMode": "Mode d'ajustement",
"UserAdjustAny": "Tous les utilisateurs",
"UserAdjustSpecific": "Utilisateur spécifique",
"VolStepSize": "Taille des pas",
"VolSetValue": "Volume souhaité",
"DontDisplay": "Ne pas afficher",
"DoNothing": "Ne rien faire",
"User": "Utilisateur",
"Users": "Utilisateurs",
"UsersNotFound": "Aucun utilisateur trouvé",
"IconStyle": "Style d'icône",
"IconStatic": "Statique",
"IconDynamic": "Dynamique",
"IconDynamicH": "Dynamique (horizontale)",
"IconDynamicV": "Dynamique (verticale)",
"IODeviceMode": "Mode",
"IODeviceModeInput": "Définir l'entrée",
"IODeviceModeOutput": "Définir la sortie",
"IODeviceModeBoth": "Définir les deux",
"IODevice": "Périphérique",
"IODeviceInput": "Entrée",
"IODeviceOutput": "Sortie",
"IODeviceDefault": "Par défaut",
"IODeviceInputNotFound": "Aucune entrée trouvée",
"IODeviceOutputNotFound": "Aucune sortie trouvée",
"SrvStatMsg": "Messages",
"SrvStatMsgDisplayNew": "Afficher le nombre de nouveaux messages",
"SrvStatUsrOnline": "Afficher les utilisateurs en ligne",
"SrvStatUsrActive": "Afficher les utilisateurs récemment actifs",
"OnPress": "Lors d'un appui",
"OnLongPress": "Lors d'un appui long",
"OnPressRecentMsg": "Atteindre le message le plus récent",
"OnPressClearMsg": "Effacer le nombre de messages",
"OnPressNotification": "Ouvrir la notification",
"OnPressClearNotification": "Effacer les notifications",
"SrvWidgetWarn": "Pour que vous puissiez suivre les utilisateurs en ligne, le widget de serveur doit être activé",
"SoundLabel": "Son",
"SoundboardSearch": "Résultats de recherche",
"SoundboardSearchEmpty": "Aucun son trouvé",
"SoundboardDefaults": "Sons Discord",
"Search": "Rechercher"
},
"Volume": "Volume"
}
}

View File

@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<g id="notDeaf" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<path id="background" fill="#5865f2" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<g id="icon">
<path id="notDeaf" fill="#FFF" fill-rule="nonzero" d="M108,102l0,-32c0,-19.869 -16.131,-36 -36,-36c-19.869,0 -36,16.131 -36,36l0,32c0,4.415 3.585,8 8,8l4,0c4.415,0 8,-3.585 8,-8l0,-8c0,-4.415 -3.585,-8 -8,-8l-4,0c0,0 0,-16 0,-16c0,-15.454 12.546,-28 28,-28c15.454,0 28,12.546 28,28l-0,16c-0,0 -4,0 -4,0c-4.415,0 -8,3.585 -8,8l0,8c0,4.415 3.585,8 8,8l4,0c4.415,0 8,-3.585 8,-8Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<g id="deaf" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<path id="background" fill="#5865f2" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<g id="icon">
<path id="deaf" fill="#FFF" fill-rule="nonzero" d="M104.158,53.812l-6.052,6.052c1.223,3.143 1.894,6.562 1.894,10.136l-0,16c-0,0 -4,0 -4,0c-4.415,0 -8,3.585 -8,8l0,8c0,4.415 3.585,8 8,8l4,0c4.415,0 8,-3.585 8,-8l0,-32c0,-5.822 -1.385,-11.322 -3.842,-16.188Zm-48.158,48.158l-8.03,8.03l0.03,0c4.415,0 8,-3.585 8,-8l0,-0.03Zm-20,0.06l15.313,-15.313c-1.009,-0.46 -2.131,-0.717 -3.313,-0.717l-4,0c0,0 0,-16 0,-16c0,-15.454 12.546,-28 28,-28c6.716,0 12.883,2.37 17.711,6.319l5.678,-5.678c-6.293,-5.386 -14.464,-8.641 -23.389,-8.641c-19.869,-0 -36,16.131 -36,36l0,32l0,0.03Z"/>
<path fill="#f44841" fill-rule="nonzero" d="M111.769,41.76l-5.529,-5.529l-71.136,71.137l5.528,5.528l71.137,-71.136Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 144 144"
version="1.1"
id="svg3"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs7" />
<g
id="pushToMute"
fill="none"
fill-rule="evenodd"
stroke="none"
stroke-width="1">
<path
id="background"
fill="#5865f2"
fill-rule="nonzero"
d="M 0,0 H 144 V 144 H 0 Z" />
<path
id="DiscordBackgroundLogo"
fill="#000000"
opacity="0.15"
d="m 0,63.072 v 80.65 c 0.214,0.094 0.428,0.186 0.642,0.278 h 12.824 c 1.345,-2.079 2.582,-4.227 3.701,-6.445 0.104,-0.204 0.005,-0.447 -0.208,-0.528 -3.263,-1.238 -6.371,-2.748 -9.36,-4.462 -0.237,-0.138 -0.256,-0.476 -0.038,-0.638 0.629,-0.472 1.258,-0.962 1.859,-1.457 0.108,-0.091 0.26,-0.11 0.388,-0.053 19.638,8.967 40.9,8.967 60.307,0 0.128,-0.061 0.279,-0.042 0.392,0.048 0.601,0.495 1.23,0.99 1.864,1.462 0.218,0.162 0.203,0.5 -0.033,0.638 -2.989,1.747 -6.097,3.224 -9.365,4.457 -0.213,0.081 -0.308,0.329 -0.204,0.533 1.144,2.216 2.391,4.365 3.729,6.445 h 12.825 c 6.564,-2.805 13.213,-6.496 20.004,-11.483 0.09,-0.066 0.147,-0.166 0.156,-0.276 2.502,-25.884 -4.191,-48.369 -17.742,-68.302 -0.033,-0.066 -0.09,-0.114 -0.156,-0.142 -7.648,-3.51 -15.85,-6.095 -24.426,-7.576 -0.156,-0.029 -0.312,0.043 -0.392,0.185 -1.055,1.877 -2.223,4.324 -3.042,6.248 -9.223,-1.381 -18.399,-1.381 -27.433,0 -0.819,-1.967 -2.03,-4.371 -3.089,-6.248 C 23.122,56.268 22.966,56.197 22.81,56.221 14.839,57.594 7.188,59.926 0,63.072 Z m 20.1,55.532 c -5.913,0 -10.784,-5.429 -10.784,-12.095 0,-6.666 4.777,-12.095 10.784,-12.095 6.054,0 10.879,5.476 10.784,12.095 0,6.666 -4.777,12.095 -10.784,12.095 z m 39.874,0 c -5.913,0 -10.785,-5.429 -10.785,-12.095 0,-6.666 4.778,-12.095 10.785,-12.095 6.054,0 10.879,5.476 10.784,12.095 0,6.666 -4.73,12.095 -10.784,12.095 z" />
</g>
<path
id="headphonesAndMicrophone"
fill="#FFF"
fill-rule="nonzero"
d="M106.056,91.822c-12.025,-1.455 -21.355,-11.708 -21.355,-24.123l6.394,0c0,9.882 8.023,17.905 17.905,17.905c9.883,0 17.906,-8.023 17.906,-17.905l6.394,0c0,12.097 -8.857,22.14 -20.433,23.994l-0,14.255l-6.811,-0l-0,-14.126Zm13.196,-44.99l-0,21.71c-0,5.639 -4.578,10.216 -10.217,10.216c-5.638,0 -10.216,-4.577 -10.216,-10.216l0,-21.71c0,-5.638 4.578,-10.216 10.216,-10.216c5.639,-0 10.217,4.578 10.217,10.216Zm-40.474,51.172c0,3.969 -3.222,7.192 -7.191,7.192l-3.596,-0c-3.969,-0 -7.192,-3.223 -7.192,-7.192l0,-10.788c0,-3.969 3.223,-7.191 7.192,-7.191l3.596,-0l-0,-10.788c-0,-13.892 -11.279,-25.171 -25.171,-25.171c-13.893,-0 -25.172,11.279 -25.172,25.171l0,10.788l3.596,-0c3.97,-0 7.192,3.222 7.192,7.191l0,10.788c0,3.969 -3.222,7.192 -7.192,7.192l-3.596,-0c-3.969,-0 -7.191,-3.223 -7.191,-7.192l-0,-28.767c-0,-17.862 14.501,-32.363 32.363,-32.363c17.861,0 32.362,14.501 32.362,32.363l0,28.767Z" />
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 144 144"
version="1.1"
id="svg3"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs7" />
<g
id="pushToMute"
fill="none"
fill-rule="evenodd"
stroke="none"
stroke-width="1">
<path
id="background"
fill="#5865f2"
fill-rule="nonzero"
d="M 0,0 H 144 V 144 H 0 Z" />
<path
id="DiscordBackgroundLogo"
fill="#000000"
opacity="0.15"
d="m 0,63.072 v 80.65 c 0.214,0.094 0.428,0.186 0.642,0.278 h 12.824 c 1.345,-2.079 2.582,-4.227 3.701,-6.445 0.104,-0.204 0.005,-0.447 -0.208,-0.528 -3.263,-1.238 -6.371,-2.748 -9.36,-4.462 -0.237,-0.138 -0.256,-0.476 -0.038,-0.638 0.629,-0.472 1.258,-0.962 1.859,-1.457 0.108,-0.091 0.26,-0.11 0.388,-0.053 19.638,8.967 40.9,8.967 60.307,0 0.128,-0.061 0.279,-0.042 0.392,0.048 0.601,0.495 1.23,0.99 1.864,1.462 0.218,0.162 0.203,0.5 -0.033,0.638 -2.989,1.747 -6.097,3.224 -9.365,4.457 -0.213,0.081 -0.308,0.329 -0.204,0.533 1.144,2.216 2.391,4.365 3.729,6.445 h 12.825 c 6.564,-2.805 13.213,-6.496 20.004,-11.483 0.09,-0.066 0.147,-0.166 0.156,-0.276 2.502,-25.884 -4.191,-48.369 -17.742,-68.302 -0.033,-0.066 -0.09,-0.114 -0.156,-0.142 -7.648,-3.51 -15.85,-6.095 -24.426,-7.576 -0.156,-0.029 -0.312,0.043 -0.392,0.185 -1.055,1.877 -2.223,4.324 -3.042,6.248 -9.223,-1.381 -18.399,-1.381 -27.433,0 -0.819,-1.967 -2.03,-4.371 -3.089,-6.248 C 23.122,56.268 22.966,56.197 22.81,56.221 14.839,57.594 7.188,59.926 0,63.072 Z m 20.1,55.532 c -5.913,0 -10.784,-5.429 -10.784,-12.095 0,-6.666 4.777,-12.095 10.784,-12.095 6.054,0 10.879,5.476 10.784,12.095 0,6.666 -4.777,12.095 -10.784,12.095 z m 39.874,0 c -5.913,0 -10.785,-5.429 -10.785,-12.095 0,-6.666 4.778,-12.095 10.785,-12.095 6.054,0 10.879,5.476 10.784,12.095 0,6.666 -4.73,12.095 -10.784,12.095 z" />
</g>
<path
id="headphonesAndMicrophone"
fill="#FFF"
fill-rule="nonzero"
d="M106.056,91.822c-12.025,-1.455 -21.355,-11.708 -21.355,-24.123l6.394,0c0,9.882 8.023,17.905 17.905,17.905c9.883,0 17.906,-8.023 17.906,-17.905l6.394,0c0,12.097 -8.857,22.14 -20.433,23.994l-0,14.255l-6.811,-0l-0,-14.126Zm13.196,-44.99l-0,21.71c-0,5.639 -4.578,10.216 -10.217,10.216c-5.638,0 -10.216,-4.577 -10.216,-10.216l0,-21.71c0,-5.638 4.578,-10.216 10.216,-10.216c5.639,-0 10.217,4.578 10.217,10.216Zm-40.474,51.172c0,3.969 -3.222,7.192 -7.191,7.192l-3.596,-0c-3.969,-0 -7.192,-3.223 -7.192,-7.192l0,-10.788c0,-3.969 3.223,-7.191 7.192,-7.191l3.596,-0l-0,-10.788c-0,-13.892 -11.279,-25.171 -25.171,-25.171c-13.893,-0 -25.172,11.279 -25.172,25.171l0,10.788l3.596,-0c3.97,-0 7.192,3.222 7.192,7.191l0,10.788c0,3.969 -3.222,7.192 -7.192,7.192l-3.596,-0c-3.969,-0 -7.191,-3.223 -7.191,-7.192l-0,-28.767c-0,-17.862 14.501,-32.363 32.363,-32.363c17.861,0 32.362,14.501 32.362,32.363l0,28.767Z" />
<rect
style="fill:#000000;fill-opacity:0.45093459;stroke-width:1.88976;stop-color:#000000"
id="rect881"
width="157.69072"
height="151.25774"
x="-5.2783504"
y="-1.9793814" />
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<g id="unmuted" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<path id="background" fill="#5865f2" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<g id="icon">
<path id="unmuted" fill="#FFF" fill-rule="nonzero" d="M69.091,98.637l-0,17.363l7.818,-0l0,-17.569c14.171,-2.251 25.018,-14.539 25.018,-29.34l-7.818,-0c0,12.082 -9.809,21.891 -21.891,21.891c-12.082,-0 -21.891,-9.809 -21.891,-21.891c0,-0 -7.818,-0 -7.818,-0c0,15.341 11.653,27.982 26.582,29.546Zm15.636,-54.564c0,-6.904 -5.605,-12.509 -12.509,-12.509c-6.904,-0 -12.509,5.605 -12.509,12.509l0,26.582c0,6.904 5.605,12.509 12.509,12.509c6.904,-0 12.509,-5.605 12.509,-12.509l0,-26.582Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<g id="muted" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<path id="background" fill="#5865f2" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<g id="icon">
<path id="muted" fill="#FFF" fill-rule="nonzero" d="M65.912,90.058l-6.053,6.053c2.861,1.313 5.968,2.184 9.232,2.526l-0,17.363l7.818,-0l0,-17.569c14.171,-2.251 25.018,-14.539 25.018,-29.34l-7.818,-0c0,12.082 -9.809,21.891 -21.891,21.891c-2.191,-0 -4.308,-0.323 -6.306,-0.924Zm-17.171,-2.769l5.587,-5.587c-2.52,-3.566 -4.001,-7.917 -4.001,-12.611c0,-0 -7.818,-0 -7.818,-0c0,6.854 2.326,13.17 6.232,18.198Zm35.972,-16.032c-0.306,6.426 -5.468,11.587 -11.892,11.892l11.892,-11.892Zm-24.074,4.134l24.088,-24.088l0,-7.23c0,-6.904 -5.605,-12.509 -12.509,-12.509c-6.904,-0 -12.509,5.605 -12.509,12.509l0,26.582c0,1.676 0.331,3.276 0.93,4.736Z"/>
<path fill="#f44841" fill-rule="nonzero" d="M109.769,41.76l-5.529,-5.529l-71.136,71.137l5.528,5.528l71.137,-71.136Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<path id="background" fill="#5865f2" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<path id="icon" fill="#FFF" fill-rule="nonzero" d="M93.945,70.566c0.15,12.614 4.121,19.256 6.428,19.256c2.554,-0 4.627,2.152 4.627,4.802c0,2.651 -2.073,4.803 -4.627,4.803l-55.746,0c-2.554,0 -4.627,-2.152 -4.627,-4.803c0,-2.65 2.073,-4.802 4.627,-4.802c2.496,-0 6.658,-7.003 6.658,-19.927l-0,-5.961c-0,-9.742 6.073,-18.022 14.501,-20.979c1.003,-0.353 3.103,-0.956 3.103,-3.033l-0,-1.056c-0,-2.134 1.669,-3.866 3.724,-3.866c2.055,0 3.724,1.732 3.724,3.866l-0,1.069c-0,2.005 2.13,2.676 3.147,3.035c0.506,0.179 1.003,0.377 1.49,0.593c-1.263,2.542 -1.974,5.407 -1.974,8.437c0,9.095 6.404,16.706 14.945,18.566Zm-13.063,32.434c0.078,0.325 0.118,0.659 0.118,1c0,3.311 -3.809,6 -8.5,6c-4.691,-0 -8.5,-2.689 -8.5,-6c0,-0.341 0.04,-0.675 0.118,-1l16.764,0Zm17.118,-65c7.727,-0 14,6.273 14,14c0,7.727 -6.273,14 -14,14c-7.727,0 -14,-6.273 -14,-14c0,-7.727 6.273,-14 14,-14Zm0,5c-4.967,-0 -9,4.033 -9,9c0,4.967 4.033,9 9,9c4.967,0 9,-4.033 9,-9c0,-4.967 -4.033,-9 -9,-9Z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<path id="background" fill="#5865f2" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<path id="icon" fill="#FFF" fill-rule="nonzero" d="M89.459,93.738c-13.171,-1.38 -23.451,-12.532 -23.451,-26.066l6.897,-0c0,10.659 8.654,19.313 19.313,19.313c10.659,-0 19.313,-8.654 19.313,-19.313l6.898,-0c-0,13.058 -9.571,23.899 -22.072,25.885l-0,13.443l-6.898,-0l0,-13.262Zm13.795,-48.138l0,23.451c0,6.091 -4.945,11.036 -11.036,11.036c-6.091,0 -11.036,-4.945 -11.036,-11.036l0,-23.451c0,-6.091 4.945,-11.036 11.036,-11.036c6.091,-0 11.036,4.945 11.036,11.036Zm-74.896,9.262c-1.823,-0.637 -2.786,-2.635 -2.148,-4.459c0.637,-1.823 2.635,-2.786 4.459,-2.149c6.504,2.275 11.175,8.469 11.175,15.746c0,7.177 -4.544,13.302 -10.91,15.65c-1.812,0.669 -3.827,-0.26 -4.495,-2.072c-0.669,-1.813 0.26,-3.827 2.072,-4.495c3.695,-1.363 6.333,-4.917 6.333,-9.083c0,-4.223 -2.711,-7.818 -6.486,-9.138Zm10.87,-12.118c-1.609,-1.068 -2.049,-3.242 -0.981,-4.852c1.068,-1.61 3.241,-2.049 4.851,-0.982c8.772,5.819 14.558,15.785 14.558,27.09c-0,11.305 -5.786,21.271 -14.558,27.09c-1.61,1.067 -3.783,0.628 -4.851,-0.982c-1.068,-1.61 -0.628,-3.784 0.981,-4.852c6.884,-4.566 11.428,-12.384 11.428,-21.256c-0,-8.872 -4.544,-16.69 -11.428,-21.256Z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<path id="background" fill="#5865f2" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<path id="icon" fill="#FFF" fill-rule="nonzero" d="M97.304,67.105c0.09,-0.058 0.19,-0.12 0.261,-0.162c1.843,-1.064 3.974,-1.183 5.829,-0.508c0.418,-0.417 0.898,-0.788 1.436,-1.099c2.217,-1.28 4.848,-1.2 6.924,-0.019c0.3,-0.249 0.624,-0.476 0.973,-0.677c1.45,-0.838 3.204,-1 4.933,-0.515c2.043,0.572 4.004,2.102 4.993,3.816l6.144,10.641c0.082,0.142 0.157,0.285 0.223,0.422l0.004,0.007c0.16,0.248 0.314,0.5 0.462,0.758c0.006,0.01 0.012,0.019 0.016,0.027c4.995,8.654 2.025,19.736 -6.628,24.732c-2.634,1.52 -10.41,4.02 -15.882,2.554c-3.483,-0.933 -4.349,-1.707 -6.055,-2.499c-3.719,-1.728 -6.478,-3.378 -12.45,-6.982c-2.456,-1.481 -3.344,-2.82 -3.738,-3.909c-0.461,-1.272 -0.348,-2.512 0.068,-4.065c0.072,-0.27 0.177,-0.531 0.313,-0.775c1.619,-2.927 3.964,-3.802 6.321,-3.735l-9.959,-17.251c-1.942,-3.363 -0.788,-7.671 2.576,-9.613c3.363,-1.942 7.671,-0.788 9.613,2.576l3.623,6.276Zm28.066,15.04c-0.145,-0.25 -0.296,-0.494 -0.454,-0.731c-0.045,-0.068 -0.084,-0.139 -0.115,-0.214c-0.035,-0.082 -0.075,-0.163 -0.121,-0.242l-6.144,-10.641c-0.424,-0.735 -1.282,-1.37 -2.158,-1.615c-0.445,-0.125 -0.902,-0.161 -1.274,0.054c-1.048,0.605 -1.408,1.947 -0.803,2.995l1.428,2.474c0.238,0.412 0.235,0.92 -0.008,1.329c-0.244,0.408 -0.689,0.654 -1.164,0.641c-0.059,-0.001 -0.116,-0.002 -0.174,-0.003c-0.463,-0.006 -0.889,-0.256 -1.12,-0.657l-3.047,-5.277c-0.608,-1.052 -1.956,-1.414 -3.009,-0.806c-1.048,0.605 -1.369,1.936 -0.764,2.985l2.44,4.225c0.363,0.628 0.147,1.432 -0.481,1.795c-0.008,0.005 -0.068,0.038 -0.068,0.038c-0.01,0.006 -0.02,0.011 -0.03,0.017l-0.011,0.005l-0.031,0.017c-0.626,0.353 -1.421,0.136 -1.781,-0.488l-3.576,-6.192c-0.598,-1.037 -1.926,-1.393 -2.963,-0.794c-1.037,0.599 -1.392,1.926 -0.794,2.963l3.108,5.382c0.247,0.429 0.233,0.961 -0.038,1.376c-0.05,0.075 -0.098,0.151 -0.146,0.227c-0.244,0.392 -0.676,0.626 -1.137,0.618c-0.461,-0.008 -0.884,-0.257 -1.115,-0.657l-10.256,-17.763c-0.63,-1.092 -2.028,-1.467 -3.12,-0.836c-1.091,0.63 -1.466,2.028 -0.835,3.119l14.878,25.77c0.296,0.513 0.212,1.16 -0.204,1.581c-0.416,0.421 -1.063,0.511 -1.579,0.221c-2.678,-1.508 -4.435,-2.56 -5.983,-2.968c-1.144,-0.302 -2.52,-0.445 -3.366,0.945c-0.12,0.385 -0.258,0.701 -0.137,1.035c0.165,0.455 0.699,0.839 1.723,1.457c5.759,3.476 8.414,5.076 11.999,6.742c1.492,0.693 2.236,1.402 5.283,2.218c4.234,1.135 10.236,-0.902 12.274,-2.079c6.382,-3.685 8.572,-11.858 4.887,-18.24c-0.004,-0.009 -0.009,-0.017 -0.014,-0.026Zm-17.093,-3.625c0.005,-0.002 0.01,-0.004 0.015,-0.006l-0.009,-0.015l-0.006,0.021Zm-61.818,15.218c-13.171,-1.38 -23.451,-12.532 -23.451,-26.066l6.897,-0c0,10.659 8.654,19.313 19.313,19.313c10.659,-0 19.313,-8.654 19.313,-19.313l6.898,-0c-0,13.058 -9.571,23.899 -22.072,25.885l-0,13.443l-6.898,-0l0,-13.262Zm13.795,-48.138l0,23.451c0,6.091 -4.945,11.036 -11.036,11.036c-6.091,0 -11.036,-4.945 -11.036,-11.036l0,-23.451c0,-6.091 4.945,-11.036 11.036,-11.036c6.091,-0 11.036,4.945 11.036,11.036Z"/>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<g id="pushToMute" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<path id="background" fill="#5865f2" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<g id="icon">
<path fill="#FFF" opacity="0.15" d="M79.212,76.941c-12.228,-3.406 -21.212,-14.632 -21.212,-27.941c0,-16.006 12.994,-29 29,-29c16.006,0 29,12.994 29,29c0,6.177 -1.935,11.905 -5.233,16.612c-1.046,-0.513 -2.223,-0.801 -3.466,-0.801c-1.13,-0 -2.199,0.235 -3.162,0.661c-1.376,-2.264 -3.866,-3.777 -6.707,-3.777c-0.768,-0 -1.51,0.11 -2.212,0.317l0,-11.008c0,-4.418 -3.586,-8.004 -8.004,-8.004c-4.417,0 -8.004,3.586 -8.004,8.004l0,25.937Z"/>
<path fill="#FFF" opacity="0.15" d="M79.212,64.113c-5.47,-2.828 -9.212,-8.537 -9.212,-15.113c0,-9.383 7.617,-17 17,-17c9.383,-0 17,7.617 17,17c0,5.068 -2.223,9.622 -5.746,12.737c-0.271,-0.028 -0.545,-0.042 -0.822,-0.042c-0.768,-0 -1.51,0.11 -2.212,0.317l0,-11.008c0,-4.418 -3.586,-8.004 -8.004,-8.004c-4.417,0 -8.004,3.586 -8.004,8.004l0,13.109Z"/>
<path id="pushTo" fill="#FFF" fill-rule="nonzero" d="M82.034,91.232c-3.111,-3.111 -5.975,-5.97 -7.634,-7.617c-1.738,-1.725 -7.916,-3.333 -11.817,0.568c-1.564,1.564 -0.785,3.811 2.337,6.932l22.638,22.639c1.179,1.179 2.728,1.764 4.275,1.757c2.901,1.587 6.23,2.489 9.767,2.489c11.26,-0 20.401,-9.141 20.401,-20.4l-0,-0.042c-0,-0.44 -0.014,-0.877 -0.042,-1.312c0.024,-0.196 0.036,-0.395 0.036,-0.596l0,-18.309c0,-2.692 -2.185,-4.877 -4.876,-4.877c-2.692,0 -4.877,2.185 -4.877,4.877l-0,2.813c-0.076,-0.047 -0.152,-0.093 -0.228,-0.138l0,-7.314c0,-2.7 -2.192,-4.891 -4.891,-4.891c-2.7,-0 -4.823,2.191 -4.823,4.891l-0,4.466l-0.108,-0.002l-0.094,-0.002l0,-7.625c0,-2.673 -2.171,-4.844 -4.844,-4.844c-2.674,-0 -4.845,2.171 -4.845,4.844l0,9.805c-0.123,0.062 -0.245,0.126 -0.367,0.19l0,-28.53c0,-2.762 -2.242,-5.004 -5.004,-5.004c-2.761,0 -5.004,2.242 -5.004,5.004l0,40.228Z"/>
<path id="muted" fill="#FFF" fill-rule="nonzero" d="M36.854,74.046l-4.189,4.189c1.98,0.909 4.13,1.512 6.389,1.749l-0,12.016l5.411,-0l-0,-12.159c9.807,-1.558 17.314,-10.062 17.314,-20.306l-5.411,0c0,8.362 -6.788,15.151 -15.15,15.151c-1.517,-0 -2.982,-0.224 -4.364,-0.64Zm-11.884,-1.916l3.867,-3.867c-1.744,-2.468 -2.769,-5.479 -2.769,-8.728c0,0 -5.411,0 -5.411,0c0,4.744 1.61,9.115 4.313,12.595Zm24.895,-11.095c-0.211,4.447 -3.784,8.019 -8.23,8.23l8.23,-8.23Zm-16.661,2.861l16.671,-16.671l0,-5.004c0,-4.778 -3.879,-8.657 -8.657,-8.657c-4.778,-0 -8.657,3.879 -8.657,8.657l-0,18.397c-0,1.16 0.229,2.267 0.643,3.278Z"/>
<path fill="#FFF" fill-rule="nonzero" d="M64.769,42.74l-3.509,-3.509l-45.156,45.156l3.509,3.509l45.156,-45.156Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<g id="pushToMute-pressed" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<path id="background" fill="#eb459e" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<g id="icon">
<path fill="#FFF" opacity="0.15" d="M79.212,76.941c-12.228,-3.406 -21.212,-14.632 -21.212,-27.941c0,-16.006 12.994,-29 29,-29c16.006,0 29,12.994 29,29c0,6.177 -1.935,11.905 -5.233,16.612c-1.046,-0.513 -2.223,-0.801 -3.466,-0.801c-1.13,-0 -2.199,0.235 -3.162,0.661c-1.376,-2.264 -3.866,-3.777 -6.707,-3.777c-0.768,-0 -1.51,0.11 -2.212,0.317l0,-11.008c0,-4.418 -3.586,-8.004 -8.004,-8.004c-4.417,0 -8.004,3.586 -8.004,8.004l0,25.937Z"/>
<path fill="#FFF" opacity="0.15" d="M79.212,64.113c-5.47,-2.828 -9.212,-8.537 -9.212,-15.113c0,-9.383 7.617,-17 17,-17c9.383,-0 17,7.617 17,17c0,5.068 -2.223,9.622 -5.746,12.737c-0.271,-0.028 -0.545,-0.042 -0.822,-0.042c-0.768,-0 -1.51,0.11 -2.212,0.317l0,-11.008c0,-4.418 -3.586,-8.004 -8.004,-8.004c-4.417,0 -8.004,3.586 -8.004,8.004l0,13.109Z"/>
<path id="pushTo" fill="#FFF" fill-rule="nonzero" d="M82.034,91.232c-3.111,-3.111 -5.975,-5.97 -7.634,-7.617c-1.738,-1.725 -7.916,-3.333 -11.817,0.568c-1.564,1.564 -0.785,3.811 2.337,6.932l22.638,22.639c1.179,1.179 2.728,1.764 4.275,1.757c2.901,1.587 6.23,2.489 9.767,2.489c11.26,-0 20.401,-9.141 20.401,-20.4l-0,-0.042c-0,-0.44 -0.014,-0.877 -0.042,-1.312c0.024,-0.196 0.036,-0.395 0.036,-0.596l0,-18.309c0,-2.692 -2.185,-4.877 -4.876,-4.877c-2.692,0 -4.877,2.185 -4.877,4.877l-0,2.813c-0.076,-0.047 -0.152,-0.093 -0.228,-0.138l0,-7.314c0,-2.7 -2.192,-4.891 -4.891,-4.891c-2.7,-0 -4.823,2.191 -4.823,4.891l-0,4.466l-0.108,-0.002l-0.094,-0.002l0,-7.625c0,-2.673 -2.171,-4.844 -4.844,-4.844c-2.674,-0 -4.845,2.171 -4.845,4.844l0,9.805c-0.123,0.062 -0.245,0.126 -0.367,0.19l0,-28.53c0,-2.762 -2.242,-5.004 -5.004,-5.004c-2.761,0 -5.004,2.242 -5.004,5.004l0,40.228Z"/>
<path id="muted" fill="#FFF" fill-rule="nonzero" d="M36.854,74.046l-4.189,4.189c1.98,0.909 4.13,1.512 6.389,1.749l-0,12.016l5.411,-0l-0,-12.159c9.807,-1.558 17.314,-10.062 17.314,-20.306l-5.411,0c0,8.362 -6.788,15.151 -15.15,15.151c-1.517,-0 -2.982,-0.224 -4.364,-0.64Zm-11.884,-1.916l3.867,-3.867c-1.744,-2.468 -2.769,-5.479 -2.769,-8.728c0,0 -5.411,0 -5.411,0c0,4.744 1.61,9.115 4.313,12.595Zm24.895,-11.095c-0.211,4.447 -3.784,8.019 -8.23,8.23l8.23,-8.23Zm-16.661,2.861l16.671,-16.671l0,-5.004c0,-4.778 -3.879,-8.657 -8.657,-8.657c-4.778,-0 -8.657,3.879 -8.657,8.657l-0,18.397c-0,1.16 0.229,2.267 0.643,3.278Z"/>
<path fill="#FFF" fill-rule="nonzero" d="M64.769,42.74l-3.509,-3.509l-45.156,45.156l3.509,3.509l45.156,-45.156Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<g id="pushToTalk" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<path id="background" fill="#5865f2" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<g id="icon">
<path fill="#FFF" opacity="0.15" d="M79.212,76.941c-12.228,-3.406 -21.212,-14.632 -21.212,-27.941c0,-16.006 12.994,-29 29,-29c16.006,0 29,12.994 29,29c0,6.177 -1.935,11.905 -5.233,16.612c-1.046,-0.513 -2.223,-0.801 -3.466,-0.801c-1.13,-0 -2.199,0.235 -3.162,0.661c-1.376,-2.264 -3.866,-3.777 -6.707,-3.777c-0.768,-0 -1.51,0.11 -2.212,0.317l0,-11.008c0,-4.418 -3.586,-8.004 -8.004,-8.004c-4.417,0 -8.004,3.586 -8.004,8.004l0,25.937Z"/>
<path fill="#FFF" opacity="0.15" d="M79.212,64.113c-5.47,-2.828 -9.212,-8.537 -9.212,-15.113c0,-9.383 7.617,-17 17,-17c9.383,-0 17,7.617 17,17c0,5.068 -2.223,9.622 -5.746,12.737c-0.271,-0.028 -0.545,-0.042 -0.822,-0.042c-0.768,-0 -1.51,0.11 -2.212,0.317l0,-11.008c0,-4.418 -3.586,-8.004 -8.004,-8.004c-4.417,0 -8.004,3.586 -8.004,8.004l0,13.109Z"/>
<path id="pushTo" fill="#FFF" fill-rule="nonzero" d="M82.034,91.232c-3.111,-3.111 -5.975,-5.97 -7.634,-7.617c-1.738,-1.725 -7.916,-3.333 -11.817,0.568c-1.564,1.564 -0.785,3.811 2.337,6.932l22.638,22.639c1.179,1.179 2.728,1.764 4.275,1.757c2.901,1.587 6.23,2.489 9.767,2.489c11.26,-0 20.401,-9.141 20.401,-20.4l-0,-0.042c-0,-0.44 -0.014,-0.877 -0.042,-1.312c0.024,-0.196 0.036,-0.395 0.036,-0.596l0,-18.309c0,-2.692 -2.185,-4.877 -4.876,-4.877c-2.692,0 -4.877,2.185 -4.877,4.877l-0,2.813c-0.076,-0.047 -0.152,-0.093 -0.228,-0.138l0,-7.314c0,-2.7 -2.192,-4.891 -4.891,-4.891c-2.7,-0 -4.823,2.191 -4.823,4.891l-0,4.466l-0.108,-0.002l-0.094,-0.002l0,-7.625c0,-2.673 -2.171,-4.844 -4.844,-4.844c-2.674,-0 -4.845,2.171 -4.845,4.844l0,9.805c-0.123,0.062 -0.245,0.126 -0.367,0.19l0,-28.53c0,-2.762 -2.242,-5.004 -5.004,-5.004c-2.761,0 -5.004,2.242 -5.004,5.004l0,40.228Z"/>
<path id="unmuted" fill="#FFF" fill-rule="nonzero" d="M39.054,79.984l-0,12.016l5.411,-0l-0,-12.159c9.807,-1.558 17.314,-10.062 17.314,-20.306l-5.411,0c0,8.362 -6.788,15.151 -15.15,15.151c-8.361,-0 -15.15,-6.789 -15.15,-15.151c0,0 -5.411,0 -5.411,0c0,10.617 8.065,19.366 18.397,20.449Zm10.821,-37.763c0,-4.778 -3.879,-8.657 -8.657,-8.657c-4.778,-0 -8.657,3.879 -8.657,8.657l-0,18.397c-0,4.778 3.879,8.657 8.657,8.657c4.778,-0 8.657,-3.879 8.657,-8.657l0,-18.397Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,15 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<g id="pushToTalk-pressed" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<path id="background" fill="#eb459e" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<g id="icon">
<path fill="#FFF" opacity="0.15" d="M79.212,76.941c-12.228,-3.406 -21.212,-14.632 -21.212,-27.941c0,-16.006 12.994,-29 29,-29c16.006,0 29,12.994 29,29c0,6.177 -1.935,11.905 -5.233,16.612c-1.046,-0.513 -2.223,-0.801 -3.466,-0.801c-1.13,-0 -2.199,0.235 -3.162,0.661c-1.376,-2.264 -3.866,-3.777 -6.707,-3.777c-0.768,-0 -1.51,0.11 -2.212,0.317l0,-11.008c0,-4.418 -3.586,-8.004 -8.004,-8.004c-4.417,0 -8.004,3.586 -8.004,8.004l0,25.937Z"/>
<path fill="#FFF" opacity="0.15" d="M79.212,64.113c-5.47,-2.828 -9.212,-8.537 -9.212,-15.113c0,-9.383 7.617,-17 17,-17c9.383,-0 17,7.617 17,17c0,5.068 -2.223,9.622 -5.746,12.737c-0.271,-0.028 -0.545,-0.042 -0.822,-0.042c-0.768,-0 -1.51,0.11 -2.212,0.317l0,-11.008c0,-4.418 -3.586,-8.004 -8.004,-8.004c-4.417,0 -8.004,3.586 -8.004,8.004l0,13.109Z"/>
<path id="pushTo" fill="#FFF" fill-rule="nonzero" d="M82.034,91.232c-3.111,-3.111 -5.975,-5.97 -7.634,-7.617c-1.738,-1.725 -7.916,-3.333 -11.817,0.568c-1.564,1.564 -0.785,3.811 2.337,6.932l22.638,22.639c1.179,1.179 2.728,1.764 4.275,1.757c2.901,1.587 6.23,2.489 9.767,2.489c11.26,-0 20.401,-9.141 20.401,-20.4l-0,-0.042c-0,-0.44 -0.014,-0.877 -0.042,-1.312c0.024,-0.196 0.036,-0.395 0.036,-0.596l0,-18.309c0,-2.692 -2.185,-4.877 -4.876,-4.877c-2.692,0 -4.877,2.185 -4.877,4.877l-0,2.813c-0.076,-0.047 -0.152,-0.093 -0.228,-0.138l0,-7.314c0,-2.7 -2.192,-4.891 -4.891,-4.891c-2.7,-0 -4.823,2.191 -4.823,4.891l-0,4.466l-0.108,-0.002l-0.094,-0.002l0,-7.625c0,-2.673 -2.171,-4.844 -4.844,-4.844c-2.674,-0 -4.845,2.171 -4.845,4.844l0,9.805c-0.123,0.062 -0.245,0.126 -0.367,0.19l0,-28.53c0,-2.762 -2.242,-5.004 -5.004,-5.004c-2.761,0 -5.004,2.242 -5.004,5.004l0,40.228Z"/>
<path id="unmuted" fill="#FFF" fill-rule="nonzero" d="M39.054,79.984l-0,12.016l5.411,-0l-0,-12.159c9.807,-1.558 17.314,-10.062 17.314,-20.306l-5.411,0c0,8.362 -6.788,15.151 -15.15,15.151c-8.361,-0 -15.15,-6.789 -15.15,-15.151c0,0 -5.411,0 -5.411,0c0,10.617 8.065,19.366 18.397,20.449Zm10.821,-37.763c0,-4.778 -3.879,-8.657 -8.657,-8.657c-4.778,-0 -8.657,3.879 -8.657,8.657l-0,18.397c-0,4.778 3.879,8.657 8.657,8.657c4.778,-0 8.657,-3.879 8.657,-8.657l0,-18.397Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<rect id="background" fill="#5865f2" fill-rule="nonzero" x="0" y="0" width="144" height="144"/>
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" fill-rule="nonzero" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<path id="serverStats-dimmedLights" fill="#FFF" opacity="0.5" fill-rule="nonzero" d="M76,68.75l-0,5.5c-0,0.414 -0.336,0.75 -0.75,0.75l-1.5,0c-0.414,0 -0.75,-0.336 -0.75,-0.75l-0,-5.5c-0,-0.414 0.336,-0.75 0.75,-0.75l1.5,0c0.414,0 0.75,0.336 0.75,0.75Zm12,-21l-0,5.5c-0,0.414 -0.336,0.75 -0.75,0.75l-1.5,0c-0.414,0 -0.75,-0.336 -0.75,-0.75l-0,-5.5c-0,-0.414 0.336,-0.75 0.75,-0.75l1.5,0c0.414,0 0.75,0.336 0.75,0.75Z"/>
<path id="serverStats" fill="#FFF" fill-rule="nonzero" d="M83.089,106l-38.089,0c-3.311,0 -6,-2.689 -6,-6l-0,-15c-0,-1.093 0.293,-2.117 0.804,-3c-0.511,-0.883 -0.804,-1.907 -0.804,-3l-0,-15c-0,-1.093 0.293,-2.117 0.804,-3c-0.511,-0.883 -0.804,-1.907 -0.804,-3l-0,-15c-0,-3.311 2.689,-6 6,-6l53,-0c3.311,-0 6,2.689 6,6l-0,15c-0,1.093 -0.293,2.117 -0.804,3c0.511,0.883 0.804,1.907 0.804,3l-0,1.967c-0.384,-0.018 -0.77,-0.027 -1.158,-0.027c-1.656,0 -3.275,0.162 -4.842,0.472l-0,-2.412l-53,-0l0,15l35.935,-0c-1.013,1.869 -1.794,3.882 -2.304,6l-33.631,0l-0,15l34.681,0c0.857,2.165 2.01,4.182 3.408,6Zm14.911,-48l-0,-15l-53,-0l0,15l53,-0Zm-16,-10.25l-0,5.5c-0,0.414 -0.336,0.75 -0.75,0.75l-1.5,-0c-0.414,-0 -0.75,-0.336 -0.75,-0.75l-0,-5.5c-0,-0.414 0.336,-0.75 0.75,-0.75l1.5,-0c0.414,-0 0.75,0.336 0.75,0.75Zm-27.5,-0.75c1.932,-0 3.5,1.568 3.5,3.5c-0,1.932 -1.568,3.5 -3.5,3.5c-1.932,-0 -3.5,-1.568 -3.5,-3.5c-0,-1.932 1.568,-3.5 3.5,-3.5Zm39.5,0.75l-0,5.5c-0,0.414 -0.336,0.75 -0.75,0.75l-1.5,-0c-0.414,-0 -0.75,-0.336 -0.75,-0.75l-0,-5.5c-0,-0.414 0.336,-0.75 0.75,-0.75l1.5,-0c0.414,-0 0.75,0.336 0.75,0.75Zm-18,0l-0,5.5c-0,0.414 -0.336,0.75 -0.75,0.75l-1.5,-0c-0.414,-0 -0.75,-0.336 -0.75,-0.75l-0,-5.5c-0,-0.414 0.336,-0.75 0.75,-0.75l1.5,-0c0.414,-0 0.75,0.336 0.75,0.75Zm12,23.101c-1.069,0.795 -2.072,1.674 -3,2.627l-0,-4.728c-0,-0.414 0.336,-0.75 0.75,-0.75l1.5,0c0.414,0 0.75,0.336 0.75,0.75l0,2.101Zm4.917,-2.851c-0.654,0.285 -1.294,0.597 -1.917,0.935l-0,-0.185c-0,-0.414 0.336,-0.75 0.75,-0.75l1.167,-0Zm-10.917,0.75l-0,5.5c-0,0.414 -0.336,0.75 -0.75,0.75l-1.5,0c-0.414,0 -0.75,-0.336 -0.75,-0.75l-0,-5.5c-0,-0.414 0.336,-0.75 0.75,-0.75l1.5,0c0.414,0 0.75,0.336 0.75,0.75Zm-27.5,-0.75c1.932,0 3.5,1.568 3.5,3.5c-0,1.932 -1.568,3.5 -3.5,3.5c-1.932,0 -3.5,-1.568 -3.5,-3.5c-0,-1.932 1.568,-3.5 3.5,-3.5Zm21.5,21.75l-0,5.5c-0,0.414 -0.336,0.75 -0.75,0.75l-1.5,0c-0.414,0 -0.75,-0.336 -0.75,-0.75l-0,-5.5c-0,-0.414 0.336,-0.75 0.75,-0.75l1.5,0c0.414,0 0.75,0.336 0.75,0.75Zm-21.5,-0.75c1.932,0 3.5,1.568 3.5,3.5c-0,1.932 -1.568,3.5 -3.5,3.5c-1.932,0 -3.5,-1.568 -3.5,-3.5c-0,-1.932 1.568,-3.5 3.5,-3.5Zm48.342,-17.822c10.854,0 19.665,8.811 19.665,19.664c-0,10.854 -8.811,19.665 -19.665,19.665c-10.853,-0 -19.664,-8.811 -19.664,-19.665c0,-10.853 8.811,-19.664 19.664,-19.664Zm3.657,9.822c0,-1.932 -1.568,-3.5 -3.5,-3.5c-1.932,-0 -3.5,1.568 -3.5,3.5c0,1.932 1.568,3.5 3.5,3.5c1.932,-0 3.5,-1.568 3.5,-3.5Zm-0.489,8.406l1.09,-1.448l0,-0.958l-8.2,-0l0,1.02l1.136,1.467l-0,12.02l-1.136,1.51l0,0.958l8.2,-0l0,-1.02l-1.09,-1.408l0,-12.141Z"/>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<g id="textChannel" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<path id="background" fill="#5865f2" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<g id="icon">
<path fill="#FFF" d="M87.486,49l-26,0l1.087,-10.046c0.235,-2.182 -1.365,-3.954 -3.573,-3.954c-2.208,-0 -4.192,1.772 -4.427,3.954l-1.087,10.046l-12,0c-2.207,0 -4.193,1.792 -4.432,4c-0.239,2.208 1.36,4 3.568,4l12,0l-3.244,30l-12,0c-2.207,0 -4.193,1.792 -4.432,4c-0.239,2.208 1.36,4 3.568,4l12,0l-1.087,10.046c-0.235,2.182 1.365,3.954 3.573,3.954c2.208,-0 4.192,-1.772 4.427,-3.954l1.087,-10.046l26,0l-1.087,10.046c-0.235,2.182 1.365,3.954 3.573,3.954c2.208,-0 4.192,-1.772 4.427,-3.954l1.087,-10.046l12,0c2.207,0 4.193,-1.792 4.432,-4c0.239,-2.208 -1.36,-4 -3.568,-4l-12,0l3.244,-30l12,0c2.207,0 4.193,-1.792 4.432,-4c0.239,-2.208 -1.36,-4 -3.568,-4l-12,0l1.087,-10.046c0.235,-2.182 -1.365,-3.954 -3.573,-3.954c-2.208,-0 -4.192,1.772 -4.427,3.954l-1.087,10.046Zm-26.864,8l-3.244,30l26,0l3.244,-30l-26,0Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<rect id="background" fill="#5865f2" fill-rule="nonzero" x="0" y="0" width="144" height="144"/>
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" fill-rule="nonzero" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<path id="userVolumeControl" fill="#FFF" fill-rule="nonzero" d="M24,66.412l0,-6.604c0,-2.357 1.914,-4.271 4.271,-4.271l7.52,0l13.82,-12.392l5.417,-6.523c1.208,-1.456 3.199,-1.997 4.978,-1.355c1.779,0.642 2.965,2.331 2.965,4.223l-0,62.851c-0,1.892 -1.186,3.581 -2.965,4.223c-1.779,0.642 -3.77,0.101 -4.978,-1.355l-3.463,-4.17c1.4,-3.113 2.18,-6.564 2.18,-10.197c-0,-13.743 -11.159,-24.902 -24.903,-24.902c-1.656,0 -3.275,0.162 -4.842,0.472Zm93,23.588l0,5c0,2.208 -1.792,4 -4,4c-2.208,-0 -4,-1.792 -4,-4l0,-5l-3,0c-2.208,0 -4,-1.792 -4,-4c0,-2.208 1.792,-4 4,-4l14,0c2.208,0 4,1.792 4,4c0,2.208 -1.792,4 -4,4l-3,0Zm-27,-24l0,29c0,2.208 -1.792,4 -4,4c-2.208,-0 -4,-1.792 -4,-4l0,-29l-3,0c-2.208,0 -4,-1.792 -4,-4c0,-2.208 1.792,-4 4,-4l14,-0c2.208,-0 4,1.792 4,4c0,2.208 -1.792,4 -4,4l-3,0Zm19,9.974l0,-28.974c0,-2.208 1.792,-4 4,-4c2.208,-0 4,1.792 4,4l0,28.958l-7.616,-0c-0.13,-0 -0.258,0.005 -0.384,0.016Zm-27,-24l0,-4.974c0,-2.208 1.792,-4 4,-4c2.208,-0 4,1.792 4,4l0,4.958l-7.616,-0c-0.13,-0 -0.258,0.005 -0.384,0.016Zm-53,19.026c11.038,0 20,8.962 20,20c-0,11.038 -8.962,20 -20,20c-11.038,0 -20,-8.962 -20,-20c0,-11.038 8.962,-20 20,-20Zm0.034,6.4c-3.612,0 -6.544,2.932 -6.544,6.544c0,3.611 2.932,6.543 6.544,6.543c3.611,0 6.543,-2.932 6.543,-6.543c0,-3.612 -2.932,-6.544 -6.543,-6.544Zm-0,16.549c-7.485,-0 -13.562,2.809 -13.562,6.268c0,3.46 6.077,6.269 13.562,6.269c7.484,-0 13.561,-2.809 13.561,-6.269c0,-3.459 -6.077,-6.268 -13.561,-6.268Z"/>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<g id="joinChannel" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<path id="background" fill="#5865f2" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<g id="icon">
<path id="joinChannel" fill="#FFF" fill-rule="nonzero" d="M50.633,58.043l-10.633,-0c-1.104,-0 -2,0.896 -2,2l0,24c0,1.103 0.896,2 2,2l10.687,-0l20.288,18.191c0.882,0.79 2.145,0.988 3.226,0.505c1.081,-0.482 1.777,-1.555 1.777,-2.739l0,-59.963c0,-1.184 -0.696,-2.257 -1.777,-2.74c-1.081,-0.482 -2.344,-0.284 -3.226,0.506l-20.342,18.24Zm34.41,-11.004c0.323,-0.012 0.65,-0.018 0.978,-0.018c14.338,0 25.979,11.641 25.979,25.979c0,14.338 -11.641,25.979 -25.979,25.979c-0.328,-0 -0.655,-0.006 -0.978,-0.018l-0,-6.98c0.324,0.017 0.65,0.025 0.978,0.025c10.49,0 19.007,-8.516 19.007,-19.006c-0,-10.49 -8.517,-19.006 -19.007,-19.006c-0.328,-0 -0.654,0.008 -0.978,0.025l-0,-6.98Zm-0,15.773c0.322,-0.03 0.648,-0.046 0.978,-0.046c5.649,-0 10.234,4.586 10.234,10.234c0,5.648 -4.585,10.234 -10.234,10.234c-0.33,0 -0.656,-0.016 -0.978,-0.046l-0,-6.791c0.311,0.089 0.639,0.137 0.978,0.137c1.951,0 3.535,-1.583 3.535,-3.534c-0,-1.951 -1.584,-3.534 -3.535,-3.534c-0.339,-0 -0.667,0.048 -0.978,0.137l-0,-6.791Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<g id="leaveChannel" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<path id="background" fill="#eb459e" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<g id="icon">
<path id="leaveChannel" fill="#FFF" fill-rule="nonzero" d="M34,51l0,25c0,19.869 16.131,36 36,36l27,-0c2.76,-0 5,-2.24 5,-5l0,-14c0,-2.76 -2.24,-5 -5,-5l-14,-0c-2.76,-0 -5,2.24 -5,5l0,5l-8,-0c-12.142,-0 -22,-9.858 -22,-22l0,-6l5,0c2.76,0 5,-2.24 5,-5l0,-14c0,-2.76 -2.24,-5 -5,-5l-14,0c-2.76,0 -5,2.24 -5,5Zm60.036,-4.732l-12.545,-12.546l-5.697,5.697l12.545,12.545l-12.545,12.545l5.697,5.697l12.545,-12.545l12.545,12.545l5.697,-5.697l-12.546,-12.545l12.546,-12.545l-5.697,-5.697l-12.545,12.546Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<rect id="background" fill="#5865f2" fill-rule="nonzero" x="0" y="0" width="144" height="144"/>
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" fill-rule="nonzero" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<path id="volumeControl" fill="#FFF" fill-rule="nonzero" d="M117,90l0,5c0,2.208 -1.792,4 -4,4c-2.208,-0 -4,-1.792 -4,-4l0,-5l-3,0c-2.208,0 -4,-1.792 -4,-4c0,-2.208 1.792,-4 4,-4l14,0c2.208,0 4,1.792 4,4c0,2.208 -1.792,4 -4,4l-3,0Zm-27,-24l0,29c0,2.208 -1.792,4 -4,4c-2.208,-0 -4,-1.792 -4,-4l0,-29l-3,0c-2.208,0 -4,-1.792 -4,-4c0,-2.208 1.792,-4 4,-4l14,-0c2.208,-0 4,1.792 4,4c0,2.208 -1.792,4 -4,4l-3,0Zm-39.903,33.272l-14.256,-12.783l-7.57,0c-2.357,0 -4.271,-1.913 -4.271,-4.27l0,-22.411c0,-2.357 1.914,-4.271 4.271,-4.271l7.52,0l13.82,-12.392l5.417,-6.523c1.208,-1.456 3.199,-1.997 4.978,-1.355c1.779,0.642 2.965,2.331 2.965,4.223l-0,62.851c-0,1.892 -1.186,3.581 -2.965,4.223c-1.779,0.642 -3.77,0.101 -4.978,-1.355l-4.931,-5.937Zm58.903,-23.298l0,-28.974c0,-2.208 1.792,-4 4,-4c2.208,-0 4,1.792 4,4l0,28.958l-7.616,-0c-0.13,-0 -0.258,0.005 -0.384,0.016Zm-27,-24l0,-4.974c0,-2.208 1.792,-4 4,-4c2.208,-0 4,1.792 4,4l0,4.958l-7.616,-0c-0.13,-0 -0.258,0.005 -0.384,0.016Z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<g id="pushToMute" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<path id="background" fill="#5865f2" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<g id="icon">
<path fill="#FFF" opacity="0.15" d="M79.212,76.941c-12.228,-3.406 -21.212,-14.632 -21.212,-27.941c0,-16.006 12.994,-29 29,-29c16.006,0 29,12.994 29,29c0,6.177 -1.935,11.905 -5.233,16.612c-1.046,-0.513 -2.223,-0.801 -3.466,-0.801c-1.13,-0 -2.199,0.235 -3.162,0.661c-1.376,-2.264 -3.866,-3.777 -6.707,-3.777c-0.768,-0 -1.51,0.11 -2.212,0.317l0,-11.008c0,-4.418 -3.586,-8.004 -8.004,-8.004c-4.417,0 -8.004,3.586 -8.004,8.004l0,25.937Z"/>
<path fill="#FFF" opacity="0.15" d="M79.212,64.113c-5.47,-2.828 -9.212,-8.537 -9.212,-15.113c0,-9.383 7.617,-17 17,-17c9.383,-0 17,7.617 17,17c0,5.068 -2.223,9.622 -5.746,12.737c-0.271,-0.028 -0.545,-0.042 -0.822,-0.042c-0.768,-0 -1.51,0.11 -2.212,0.317l0,-11.008c0,-4.418 -3.586,-8.004 -8.004,-8.004c-4.417,0 -8.004,3.586 -8.004,8.004l0,13.109Z"/>
<path id="pushTo" fill="#FFF" fill-rule="nonzero" d="M82.034,91.232c-3.111,-3.111 -5.975,-5.97 -7.634,-7.617c-1.738,-1.725 -7.916,-3.333 -11.817,0.568c-1.564,1.564 -0.785,3.811 2.337,6.932l22.638,22.639c1.179,1.179 2.728,1.764 4.275,1.757c2.901,1.587 6.23,2.489 9.767,2.489c11.26,-0 20.401,-9.141 20.401,-20.4l-0,-0.042c-0,-0.44 -0.014,-0.877 -0.042,-1.312c0.024,-0.196 0.036,-0.395 0.036,-0.596l0,-18.309c0,-2.692 -2.185,-4.877 -4.876,-4.877c-2.692,0 -4.877,2.185 -4.877,4.877l-0,2.813c-0.076,-0.047 -0.152,-0.093 -0.228,-0.138l0,-7.314c0,-2.7 -2.192,-4.891 -4.891,-4.891c-2.7,-0 -4.823,2.191 -4.823,4.891l-0,4.466l-0.108,-0.002l-0.094,-0.002l0,-7.625c0,-2.673 -2.171,-4.844 -4.844,-4.844c-2.674,-0 -4.845,2.171 -4.845,4.844l0,9.805c-0.123,0.062 -0.245,0.126 -0.367,0.19l0,-28.53c0,-2.762 -2.242,-5.004 -5.004,-5.004c-2.761,0 -5.004,2.242 -5.004,5.004l0,40.228Z"/>
<path id="muted" fill="#FFF" fill-rule="nonzero" d="M36.854,74.046l-4.189,4.189c1.98,0.909 4.13,1.512 6.389,1.749l-0,12.016l5.411,-0l-0,-12.159c9.807,-1.558 17.314,-10.062 17.314,-20.306l-5.411,0c0,8.362 -6.788,15.151 -15.15,15.151c-1.517,-0 -2.982,-0.224 -4.364,-0.64Zm-11.884,-1.916l3.867,-3.867c-1.744,-2.468 -2.769,-5.479 -2.769,-8.728c0,0 -5.411,0 -5.411,0c0,4.744 1.61,9.115 4.313,12.595Zm24.895,-11.095c-0.211,4.447 -3.784,8.019 -8.23,8.23l8.23,-8.23Zm-16.661,2.861l16.671,-16.671l0,-5.004c0,-4.778 -3.879,-8.657 -8.657,-8.657c-4.778,-0 -8.657,3.879 -8.657,8.657l-0,18.397c-0,1.16 0.229,2.267 0.643,3.278Z"/>
<path fill="#FFF" fill-rule="nonzero" d="M64.769,42.74l-3.509,-3.509l-45.156,45.156l3.509,3.509l45.156,-45.156Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 144 144">
<g id="pushToMute-pressed" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<path id="background" fill="#eb459e" fill-rule="nonzero" d="M0 0h144v144H0z" />
<path id="DiscordBackgroundLogo" fill="#000" opacity="0.15" d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z"/>
<g id="icon">
<path fill="#FFF" opacity="0.15" d="M79.212,76.941c-12.228,-3.406 -21.212,-14.632 -21.212,-27.941c0,-16.006 12.994,-29 29,-29c16.006,0 29,12.994 29,29c0,6.177 -1.935,11.905 -5.233,16.612c-1.046,-0.513 -2.223,-0.801 -3.466,-0.801c-1.13,-0 -2.199,0.235 -3.162,0.661c-1.376,-2.264 -3.866,-3.777 -6.707,-3.777c-0.768,-0 -1.51,0.11 -2.212,0.317l0,-11.008c0,-4.418 -3.586,-8.004 -8.004,-8.004c-4.417,0 -8.004,3.586 -8.004,8.004l0,25.937Z"/>
<path fill="#FFF" opacity="0.15" d="M79.212,64.113c-5.47,-2.828 -9.212,-8.537 -9.212,-15.113c0,-9.383 7.617,-17 17,-17c9.383,-0 17,7.617 17,17c0,5.068 -2.223,9.622 -5.746,12.737c-0.271,-0.028 -0.545,-0.042 -0.822,-0.042c-0.768,-0 -1.51,0.11 -2.212,0.317l0,-11.008c0,-4.418 -3.586,-8.004 -8.004,-8.004c-4.417,0 -8.004,3.586 -8.004,8.004l0,13.109Z"/>
<path id="pushTo" fill="#FFF" fill-rule="nonzero" d="M82.034,91.232c-3.111,-3.111 -5.975,-5.97 -7.634,-7.617c-1.738,-1.725 -7.916,-3.333 -11.817,0.568c-1.564,1.564 -0.785,3.811 2.337,6.932l22.638,22.639c1.179,1.179 2.728,1.764 4.275,1.757c2.901,1.587 6.23,2.489 9.767,2.489c11.26,-0 20.401,-9.141 20.401,-20.4l-0,-0.042c-0,-0.44 -0.014,-0.877 -0.042,-1.312c0.024,-0.196 0.036,-0.395 0.036,-0.596l0,-18.309c0,-2.692 -2.185,-4.877 -4.876,-4.877c-2.692,0 -4.877,2.185 -4.877,4.877l-0,2.813c-0.076,-0.047 -0.152,-0.093 -0.228,-0.138l0,-7.314c0,-2.7 -2.192,-4.891 -4.891,-4.891c-2.7,-0 -4.823,2.191 -4.823,4.891l-0,4.466l-0.108,-0.002l-0.094,-0.002l0,-7.625c0,-2.673 -2.171,-4.844 -4.844,-4.844c-2.674,-0 -4.845,2.171 -4.845,4.844l0,9.805c-0.123,0.062 -0.245,0.126 -0.367,0.19l0,-28.53c0,-2.762 -2.242,-5.004 -5.004,-5.004c-2.761,0 -5.004,2.242 -5.004,5.004l0,40.228Z"/>
<path id="muted" fill="#FFF" fill-rule="nonzero" d="M36.854,74.046l-4.189,4.189c1.98,0.909 4.13,1.512 6.389,1.749l-0,12.016l5.411,-0l-0,-12.159c9.807,-1.558 17.314,-10.062 17.314,-20.306l-5.411,0c0,8.362 -6.788,15.151 -15.15,15.151c-1.517,-0 -2.982,-0.224 -4.364,-0.64Zm-11.884,-1.916l3.867,-3.867c-1.744,-2.468 -2.769,-5.479 -2.769,-8.728c0,0 -5.411,0 -5.411,0c0,4.744 1.61,9.115 4.313,12.595Zm24.895,-11.095c-0.211,4.447 -3.784,8.019 -8.23,8.23l8.23,-8.23Zm-16.661,2.861l16.671,-16.671l0,-5.004c0,-4.778 -3.879,-8.657 -8.657,-8.657c-4.778,-0 -8.657,3.879 -8.657,8.657l-0,18.397c-0,1.16 0.229,2.267 0.643,3.278Z"/>
<path fill="#FFF" fill-rule="nonzero" d="M64.769,42.74l-3.509,-3.509l-45.156,45.156l3.509,3.509l45.156,-45.156Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 144 144"
version="1.1"
id="svg14"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs18" />
<g
id="pushToMute-pressed"
fill="none"
fill-rule="evenodd"
stroke="none"
stroke-width="1">
<path
id="background"
fill="#eb459e"
fill-rule="nonzero"
d="M0 0h144v144H0z" />
<path
id="DiscordBackgroundLogo"
fill="#000"
opacity="0.15"
d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 144 144"
version="1.1"
id="svg14"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs18" />
<g
id="pushToMute"
fill="none"
fill-rule="evenodd"
stroke="none"
stroke-width="1">
<path
id="background"
fill="#5865f2"
fill-rule="nonzero"
d="M0 0h144v144H0z" />
<path
id="DiscordBackgroundLogo"
fill="#000"
opacity="0.15"
d="M-0,63.072l-0,80.65c0.214,0.094 0.428,0.186 0.642,0.278l12.824,0c1.345,-2.079 2.582,-4.227 3.701,-6.445c0.104,-0.204 0.005,-0.447 -0.208,-0.528c-3.263,-1.238 -6.371,-2.748 -9.36,-4.462c-0.237,-0.138 -0.256,-0.476 -0.038,-0.638c0.629,-0.472 1.258,-0.962 1.859,-1.457c0.108,-0.091 0.26,-0.11 0.388,-0.053c19.638,8.967 40.9,8.967 60.307,0c0.128,-0.061 0.279,-0.042 0.392,0.048c0.601,0.495 1.23,0.99 1.864,1.462c0.218,0.162 0.203,0.5 -0.033,0.638c-2.989,1.747 -6.097,3.224 -9.365,4.457c-0.213,0.081 -0.308,0.329 -0.204,0.533c1.144,2.216 2.391,4.365 3.729,6.445l12.825,0c6.564,-2.805 13.213,-6.496 20.004,-11.483c0.09,-0.066 0.147,-0.166 0.156,-0.276c2.502,-25.884 -4.191,-48.369 -17.742,-68.302c-0.033,-0.066 -0.09,-0.114 -0.156,-0.142c-7.648,-3.51 -15.85,-6.095 -24.426,-7.576c-0.156,-0.029 -0.312,0.043 -0.392,0.185c-1.055,1.877 -2.223,4.324 -3.042,6.248c-9.223,-1.381 -18.399,-1.381 -27.433,-0c-0.819,-1.967 -2.03,-4.371 -3.089,-6.248c-0.081,-0.138 -0.237,-0.209 -0.393,-0.185c-7.971,1.373 -15.622,3.705 -22.81,6.851Zm20.1,55.532c-5.913,-0 -10.784,-5.429 -10.784,-12.095c-0,-6.666 4.777,-12.095 10.784,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.777,12.095 -10.784,12.095Zm39.874,-0c-5.913,-0 -10.785,-5.429 -10.785,-12.095c0,-6.666 4.778,-12.095 10.785,-12.095c6.054,0 10.879,5.476 10.784,12.095c0,6.666 -4.73,12.095 -10.784,12.095Z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 47.999998 47.999998"
version="1.1"
id="svg5"
width="48"
height="48"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs9" />
<path
id="badgeOutline"
fill="#ffffff"
opacity="0.9"
fill-rule="nonzero"
d="M 48,16.32 V 31.68 C 48,40.686721 40.686721,48 31.68,48 H 16.32 C 7.31328,48 0,40.686721 0,31.68 V 16.32 C 0,7.31328 7.31328,0 16.32,0 H 31.68 C 40.686721,0 48,7.31328 48,16.32 Z m -2.88,0 C 45.12,8.9030401 39.096961,2.8799999 31.68,2.8799999 H 16.32 C 8.9030401,2.8799999 2.8799999,8.9030401 2.8799999,16.32 v 15.36 c 0,7.416961 6.0230402,13.44 13.4400001,13.44 h 15.36 c 7.416961,0 13.44,-6.023039 13.44,-13.44 z"
style="stroke-width:1.92" />
<path
id="badgeBackground"
fill="#27338e"
opacity="0.9"
fill-rule="nonzero"
d="M 45.12,16.32 C 45.12,8.9030401 39.096961,2.8799999 31.68,2.8799999 H 16.32 C 8.9030401,2.8799999 2.8799999,8.9030401 2.8799999,16.32 v 15.36 c 0,7.416961 6.0230402,13.44 13.4400001,13.44 h 15.36 c 7.416961,0 13.44,-6.023039 13.44,-13.44 z"
style="stroke-width:1.92" />
<path
id="icon"
fill="#ffffff"
fill-rule="nonzero"
d="m 35.258881,15.12768 c 1.32288,2.07168 2.088959,4.53312 2.088959,7.1712 v 11.8656 c 0,1.635842 -1.328639,2.966399 -2.966399,2.966399 H 32.8992 c -1.637761,0 -2.9664,-1.330557 -2.9664,-2.966399 v -3.926399 c 0,-1.63776 1.328639,-2.9664 2.9664,-2.9664 h 1.482241 V 22.29888 c 0,-1.81632 -0.466561,-3.5232 -1.286399,-5.00736 L 18.0672,32.31936 v 1.84512 c 0,1.635842 -1.32864,2.966399 -2.9664,2.966399 h -1.48224 c -0.11712,0 -0.2304,-0.0077 -0.34176,-0.02111 l -0.7488,0.7488 c -0.65856,0.658561 -1.72608,0.658561 -2.38656,0 -0.6585599,-0.66048 -0.6585599,-1.727999 0,-2.386561 L 35.472,10.14144 c 0.658561,-0.6585599 1.726081,-0.6585599 2.38656,0 0.658562,0.66048 0.658562,1.728 0,2.38656 z M 31.30368,11.1264 29.147522,13.28256 C 27.6288,12.4128 25.872,11.91552 24,11.91552 c -5.72928,0 -10.38144,4.65216 -10.38144,10.38336 v 4.972801 h 1.48224 c 0.0192,0 0.0384,0 0.05568,0 l -4.50432,4.506238 V 22.29888 c 0,-7.36704 5.9808,-13.3497598 13.34784,-13.3497598 2.695681,0 5.203201,0.8006401 7.30368,2.1772798 z"
style="stroke-width:1.92" />
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 48 48"
version="1.1"
id="svg5"
width="48"
height="48"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs9" />
<path
id="badgeOutline"
fill="#ffffff"
opacity="0.9"
fill-rule="nonzero"
d="M 48,16.32 V 31.68 C 48,40.68672 40.68672,48 31.68,48 H 16.32 C 7.31328,48 0,40.68672 0,31.68 V 16.32 C 0,7.31328 7.31328,0 16.32,0 H 31.68 C 40.68672,0 48,7.31328 48,16.32 Z m -2.88,0 C 45.12,8.90304 39.09696,2.88 31.68,2.88 H 16.32 C 8.90304,2.88 2.88,8.90304 2.88,16.32 v 15.36 c 0,7.41696 6.02304,13.44 13.44,13.44 h 15.36 c 7.41696,0 13.44,-6.02304 13.44,-13.44 z"
style="stroke-width:1.92" />
<path
id="badgeBackground"
fill="#27338e"
opacity="0.9"
fill-rule="nonzero"
d="M 45.12,16.32 C 45.12,8.90304 39.09696,2.88 31.68,2.88 H 16.32 C 8.90304,2.88 2.88,8.90304 2.88,16.32 v 15.36 c 0,7.41696 6.02304,13.44 13.44,13.44 h 15.36 c 7.41696,0 13.44,-6.02304 13.44,-13.44 z"
style="stroke-width:1.92" />
<path
id="icon"
fill="#ffffff"
fill-rule="nonzero"
d="M 38.38656,34.06848 V 22.24128 C 38.38656,14.30016 31.94112,7.85472 24,7.85472 c -7.94112,0 -14.38656,6.44544 -14.38656,14.38656 v 11.8272 c 0,1.76448 1.43232,3.1968 3.1968,3.1968 h 1.59936 c 1.76448,0 3.1968,-1.43232 3.1968,-3.1968 V 29.8368 c 0,-1.76448 -1.43232,-3.1968 -3.1968,-3.1968 h -1.59936 c 0,0 0,-4.39872 0,-4.39872 0,-6.17664 5.01312,-11.18976 11.18976,-11.18976 6.17664,0 11.18976,5.01312 11.18976,11.18976 V 26.64 c 0,0 -1.59936,0 -1.59936,0 -1.76448,0 -3.1968,1.43232 -3.1968,3.1968 v 4.23168 c 0,1.76448 1.43232,3.1968 3.1968,3.1968 h 1.59936 c 1.76448,0 3.1968,-1.43232 3.1968,-3.1968 z"
style="stroke-width:1.92" />
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 48 48"
version="1.1"
id="svg5"
width="48"
height="48"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs9" />
<path
id="badgeOutline"
fill="#ffffff"
opacity="0.9"
fill-rule="nonzero"
d="M 48,16.32 V 31.68 C 48,40.68672 40.68672,48 31.68,48 H 16.32 C 7.31328,48 0,40.68672 0,31.68 V 16.32 C 0,7.31328 7.31328,0 16.32,0 H 31.68 C 40.68672,0 48,7.31328 48,16.32 Z m -2.88,0 C 45.12,8.90304 39.09696,2.88 31.68,2.88 H 16.32 C 8.90304,2.88 2.88,8.90304 2.88,16.32 v 15.36 c 0,7.41696 6.02304,13.44 13.44,13.44 h 15.36 c 7.41696,0 13.44,-6.02304 13.44,-13.44 z"
style="stroke-width:1.92" />
<path
id="badgeBackground"
fill="#27338e"
opacity="0.9"
fill-rule="nonzero"
d="M 45.12,16.32 C 45.12,8.90304 39.09696,2.88 31.68,2.88 H 16.32 C 8.90304,2.88 2.88,8.90304 2.88,16.32 v 15.36 c 0,7.41696 6.02304,13.44 13.44,13.44 h 15.36 c 7.41696,0 13.44,-6.02304 13.44,-13.44 z"
style="stroke-width:1.92" />
<path
id="icon"
fill="#ffffff"
fill-rule="nonzero"
d="M 22.24704,35.07456 C 16.87104,34.23168 12.75456,29.5776 12.7488,23.96928 h 3.06624 c 0.0058,4.512 3.67104,8.17536 8.18496,8.17536 4.51392,0 8.1792,-3.66336 8.18496,-8.17536 h 3.06624 c -0.0058,5.60832 -4.12224,10.2624 -9.49824,11.10528 V 40.32 h -3.50592 z m 6.86208,-21.32544 v 10.22016 c 0,2.82048 -2.28864,5.10912 -5.10912,5.10912 -2.82048,0 -5.10912,-2.28864 -5.10912,-5.10912 V 13.74912 C 18.89088,10.92864 21.17952,8.64 24,8.64 c 2.82048,0 5.10912,2.28864 5.10912,5.10912 z"
style="stroke-width:1.92" />
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 48 48"
version="1.1"
id="svg6"
width="48"
height="48"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs10" />
<path
id="badgeOutline"
fill="#ffffff"
opacity="0.9"
fill-rule="nonzero"
d="M 48,16.32 V 31.68 C 48,40.68672 40.68672,48 31.68,48 H 16.32 C 7.31328,48 0,40.68672 0,31.68 V 16.32 C 0,7.31328 7.31328,0 16.32,0 H 31.68 C 40.68672,0 48,7.31328 48,16.32 Z m -2.88,0 C 45.12,8.90304 39.09696,2.88 31.68,2.88 H 16.32 C 8.90304,2.88 2.88,8.90304 2.88,16.32 v 15.36 c 0,7.41696 6.02304,13.44 13.44,13.44 h 15.36 c 7.41696,0 13.44,-6.02304 13.44,-13.44 z"
style="stroke-width:1.92" />
<path
id="badgeBackground"
fill="#27338e"
opacity="0.9"
fill-rule="nonzero"
d="M 45.12,16.32 C 45.12,8.90304 39.09696,2.88 31.68,2.88 H 16.32 C 8.90304,2.88 2.88,8.90304 2.88,16.32 v 15.36 c 0,7.41696 6.02304,13.44 13.44,13.44 h 15.36 c 7.41696,0 13.44,-6.02304 13.44,-13.44 z"
style="stroke-width:1.92" />
<path
id="icon"
fill="#ffffff"
fill-rule="nonzero"
d="M 18.63168,28.53312 C 20.01792,29.88672 21.91296,30.72 24,30.72 c 4.24128,0 7.68384,-3.44064 7.6896,-7.68 h 2.88 c -0.0058,5.21088 -3.78816,9.5424 -8.75328,10.40448 V 39.36 h -3.63264 v -5.91552 c -2.15616,-0.3744 -4.09152,-1.40352 -5.58912,-2.87424 z M 28.8,18.3648 V 23.04 c 0,2.6496 -2.1504,4.8 -4.8,4.8 -1.29216,0 -2.4672,-0.51264 -3.3312,-1.344 z m -9.59616,4.86144 C 19.20192,23.1648 19.2,23.10144 19.2,23.04 v -9.6 c 0,-2.6496 2.1504,-4.8 4.8,-4.8 2.6496,0 4.8,2.1504 4.8,4.8 v 0.18816 z m -4.61568,4.61568 C 13.84896,26.4 13.43232,24.768 13.4304,23.04 h 2.88 c 0.0019,0.91968 0.16512,1.80096 0.4608,2.61696 z"
style="stroke-width:1.92" />
<path
id="slash"
fill="#ffffff"
fill-rule="nonzero"
d="m 36.89856,11.10144 c -0.66048,-0.65856 -1.728,-0.65856 -2.38656,0 L 11.10144,34.512 c -0.65856,0.65856 -0.65856,1.72608 0,2.38656 0.66048,0.65856 1.728,0.65856 2.38656,0 L 36.89856,13.488 c 0.65856,-0.65856 0.65856,-1.72608 0,-2.38656 z"
style="stroke-width:1.92" />
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 48 48"
version="1.1"
id="svg6"
width="48"
height="48"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs10" />
<path
id="badgeOutline"
fill="#ffffff"
opacity="0.9"
fill-rule="nonzero"
d="M 48,16.32 V 31.68 C 48,40.68672 40.68672,48 31.68,48 H 16.32 C 7.31328,48 0,40.68672 0,31.68 V 16.32 C 0,7.31328 7.31328,0 16.32,0 H 31.68 C 40.68672,0 48,7.31328 48,16.32 Z m -2.88,0 C 45.12,8.90304 39.09696,2.88 31.68,2.88 H 16.32 C 8.90304,2.88 2.88,8.90304 2.88,16.32 v 15.36 c 0,7.41696 6.02304,13.44 13.44,13.44 h 15.36 c 7.41696,0 13.44,-6.02304 13.44,-13.44 z"
style="stroke-width:1.92" />
<path
id="badgeBackground"
fill="#27338e"
opacity="0.9"
fill-rule="nonzero"
d="M 45.12,16.32 C 45.12,8.90304 39.09696,2.88 31.68,2.88 H 16.32 C 8.90304,2.88 2.88,8.90304 2.88,16.32 v 15.36 c 0,7.41696 6.02304,13.44 13.44,13.44 h 15.36 c 7.41696,0 13.44,-6.02304 13.44,-13.44 z"
style="stroke-width:1.92" />
<path
id="icon"
fill="#ffffff"
fill-rule="nonzero"
d="M 18.63168,28.53312 C 20.01792,29.88672 21.91296,30.72 24,30.72 c 4.24128,0 7.68384,-3.44064 7.6896,-7.68 h 2.88 c -0.0058,5.21088 -3.78816,9.5424 -8.75328,10.40448 V 39.36 h -3.63264 v -5.91552 c -2.15616,-0.3744 -4.09152,-1.40352 -5.58912,-2.87424 z M 28.8,18.3648 V 23.04 c 0,2.6496 -2.1504,4.8 -4.8,4.8 -1.29216,0 -2.4672,-0.51264 -3.3312,-1.344 z m -9.59616,4.86144 C 19.20192,23.1648 19.2,23.10144 19.2,23.04 v -9.6 c 0,-2.6496 2.1504,-4.8 4.8,-4.8 2.6496,0 4.8,2.1504 4.8,4.8 v 0.18816 z m -4.61568,4.61568 C 13.84896,26.4 13.43232,24.768 13.4304,23.04 h 2.88 c 0.0019,0.91968 0.16512,1.80096 0.4608,2.61696 z"
style="stroke-width:1.92" />
<path
id="slash"
fill="#f4433d"
fill-rule="nonzero"
d="m 36.89856,11.10144 c -0.66048,-0.65856 -1.728,-0.65856 -2.38656,0 L 11.10144,34.512 c -0.65856,0.65856 -0.65856,1.72608 0,2.38656 0.66048,0.65856 1.728,0.65856 2.38656,0 L 36.89856,13.488 c 0.65856,-0.65856 0.65856,-1.72608 0,-2.38656 z"
style="stroke-width:1.92" />
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 36 36"
version="1.1"
id="svg5"
width="36"
height="36"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs9" />
<path
id="badgeOutline"
fill="#ffffff"
opacity="0.9"
fill-rule="nonzero"
d="m 32,13.52 v 8.96 C 32,27.73392 27.73392,32 22.48,32 H 13.52 C 8.26608,32 4,27.73392 4,22.48 V 13.52 C 4,8.26608 8.26608,4 13.52,4 h 8.96 C 27.73392,4 32,8.26608 32,13.52 Z m -1.68,0 c 0,-4.32656 -3.51344,-7.84 -7.84,-7.84 h -8.96 c -4.32656,0 -7.84,3.51344 -7.84,7.84 v 8.96 c 0,4.32656 3.51344,7.84 7.84,7.84 h 8.96 c 4.32656,0 7.84,-3.51344 7.84,-7.84 z"
style="stroke-width:1.12" />
<path
id="badgeBackground"
fill="#27338e"
opacity="0.9"
fill-rule="nonzero"
d="m 30.32,13.52 c 0,-4.32656 -3.51344,-7.84 -7.84,-7.84 h -8.96 c -4.32656,0 -7.84,3.51344 -7.84,7.84 v 8.96 c 0,4.32656 3.51344,7.84 7.84,7.84 h 8.96 c 4.32656,0 7.84,-3.51344 7.84,-7.84 z"
style="stroke-width:1.12" />
<path
id="icon"
fill="#ffffff"
fill-rule="nonzero"
d="m 18,9.46672 c 2.23664,0 4.05328,1.81664 4.05328,4.05328 0,2.23664 -1.81664,4.05328 -4.05328,4.05328 -2.23664,0 -4.05328,-1.81664 -4.05328,-4.05328 0,-2.23664 1.81664,-4.05328 4.05328,-4.05328 z m 0,10.25024 c 4.63568,0 8.4,1.74048 8.4,3.88304 0,2.14256 -3.76432,3.88304 -8.4,3.88304 -4.63568,0 -8.4,-1.74048 -8.4,-3.88304 0,-2.14256 3.76432,-3.88304 8.4,-3.88304 z"
style="stroke-width:1.12" />
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 36 36"
version="1.1"
id="svg5"
width="36"
height="36"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs9" />
<path
id="badgeOutline"
fill="#ffffff"
opacity="0.9"
fill-rule="nonzero"
d="m 32,13.52 v 8.96 C 32,27.73392 27.73392,32 22.48,32 H 13.52 C 8.26608,32 4,27.73392 4,22.48 V 13.52 C 4,8.26608 8.26608,4 13.52,4 h 8.96 C 27.73392,4 32,8.26608 32,13.52 Z m -1.68,0 c 0,-4.32656 -3.51344,-7.84 -7.84,-7.84 h -8.96 c -4.32656,0 -7.84,3.51344 -7.84,7.84 v 8.96 c 0,4.32656 3.51344,7.84 7.84,7.84 h 8.96 c 4.32656,0 7.84,-3.51344 7.84,-7.84 z"
style="stroke-width:1.12" />
<path
id="badgeBackground"
fill="#27338e"
opacity="0.9"
fill-rule="nonzero"
d="m 30.32,13.52 c 0,-4.32656 -3.51344,-7.84 -7.84,-7.84 h -8.96 c -4.32656,0 -7.84,3.51344 -7.84,7.84 v 8.96 c 0,4.32656 3.51344,7.84 7.84,7.84 h 8.96 c 4.32656,0 7.84,-3.51344 7.84,-7.84 z"
style="stroke-width:1.12" />
<path
id="icon"
fill="#ffffff"
fill-rule="nonzero"
d="m 18,9.46672 c 2.23664,0 4.05328,1.81664 4.05328,4.05328 0,2.23664 -1.81664,4.05328 -4.05328,4.05328 -2.23664,0 -4.05328,-1.81664 -4.05328,-4.05328 0,-2.23664 1.81664,-4.05328 4.05328,-4.05328 z m 0,10.25024 c 4.63568,0 8.4,1.74048 8.4,3.88304 0,2.14256 -3.76432,3.88304 -8.4,3.88304 -4.63568,0 -8.4,-1.74048 -8.4,-3.88304 0,-2.14256 3.76432,-3.88304 8.4,-3.88304 z"
style="stroke-width:1.12" />
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 28 28">
<path id="DiscordLogo" fill="#c8c8c8" fill-rule="nonzero" d="M23.01,5.928c-1.657,-0.761 -3.434,-1.321 -5.292,-1.642c-0.034,-0.006 -0.068,0.01 -0.085,0.041c-0.229,0.406 -0.482,0.936 -0.659,1.353c-1.999,-0.299 -3.987,-0.299 -5.944,0c-0.177,-0.426 -0.44,-0.947 -0.669,-1.353c-0.018,-0.03 -0.052,-0.046 -0.085,-0.041c-1.857,0.32 -3.634,0.88 -5.293,1.642c-0.014,0.006 -0.026,0.016 -0.034,0.03c-3.371,5.035 -4.295,9.947 -3.842,14.798c0.002,0.024 0.016,0.047 0.034,0.061c2.224,1.633 4.378,2.625 6.493,3.282c0.033,0.01 0.069,-0.002 0.091,-0.03c0.5,-0.683 0.946,-1.403 1.328,-2.16c0.022,-0.045 0.001,-0.097 -0.045,-0.115c-0.707,-0.268 -1.381,-0.595 -2.028,-0.966c-0.052,-0.03 -0.056,-0.104 -0.008,-0.139c0.136,-0.102 0.272,-0.208 0.402,-0.315c0.024,-0.02 0.057,-0.024 0.084,-0.012c4.255,1.943 8.862,1.943 13.067,0c0.028,-0.013 0.06,-0.009 0.085,0.011c0.13,0.107 0.266,0.214 0.404,0.316c0.047,0.035 0.044,0.109 -0.007,0.139c-0.648,0.378 -1.321,0.698 -2.03,0.965c-0.046,0.018 -0.066,0.071 -0.044,0.116c0.391,0.756 0.837,1.476 1.327,2.159c0.021,0.029 0.058,0.041 0.092,0.031c2.124,-0.657 4.278,-1.649 6.502,-3.282c0.02,-0.014 0.032,-0.036 0.034,-0.06c0.542,-5.608 -0.908,-10.48 -3.844,-14.798c-0.007,-0.015 -0.02,-0.025 -0.034,-0.031Zm-13.322,11.875c-1.281,-0 -2.336,-1.177 -2.336,-2.621c-0,-1.444 1.035,-2.62 2.336,-2.62c1.312,-0 2.357,1.186 2.337,2.62c-0,1.444 -1.035,2.621 -2.337,2.621Zm8.64,-0c-1.281,-0 -2.337,-1.177 -2.337,-2.621c0,-1.444 1.035,-2.62 2.337,-2.62c1.311,-0 2.357,1.186 2.336,2.62c0,1.444 -1.025,2.621 -2.336,2.621Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 20 20">
<path id="toggleDeafen" fill="#d8d8d8" fill-rule="nonzero" d="M19.957,1.964l-1.4,-1.399l-18.007,18.007l1.399,1.4l18.008,-18.008Zm-1.927,3.051l-1.532,1.532c0.31,0.796 0.48,1.661 0.48,2.566l-0,4.05c-0,0 -1.013,0 -1.013,0c-1.118,0 -2.025,0.908 -2.025,2.025l0,2.025c0,1.118 0.907,2.026 2.025,2.026l1.013,-0c1.117,-0 2.025,-0.908 2.025,-2.026l-0,-8.1c-0,-1.474 -0.351,-2.866 -0.973,-4.098Zm-12.19,12.191l-2.033,2.033l0.007,-0c1.118,-0 2.026,-0.908 2.026,-2.026l-0,-0.007Zm-5.063,0.015l3.876,-3.876c-0.255,-0.117 -0.539,-0.182 -0.839,-0.182l-1.012,0c-0,0 -0,-4.05 -0,-4.05c-0,-3.912 3.176,-7.088 7.088,-7.088c1.7,0 3.261,0.6 4.483,1.6l1.437,-1.438c-1.593,-1.363 -3.661,-2.187 -5.92,-2.187c-5.03,-0 -9.113,4.083 -9.113,9.113l-0,8.108Z"/>
</svg>

After

Width:  |  Height:  |  Size: 843 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 20 20">
<path id="toggleMute" fill="#d8d8d8" fill-rule="nonzero" d="M8.473,13.846l-1.434,1.434c0.678,0.311 1.414,0.518 2.188,0.599l-0,4.114l1.852,-0l-0,-4.163c3.358,-0.533 5.928,-3.445 5.928,-6.952l-1.853,0c0,2.863 -2.324,5.187 -5.186,5.187c-0.52,-0 -1.021,-0.077 -1.495,-0.219Zm10.392,-11.444l-1.31,-1.309l-16.855,16.854l1.31,1.31l16.855,-16.855Zm-14.46,10.788l1.324,-1.324c-0.597,-0.845 -0.948,-1.876 -0.948,-2.988c-0,0 -1.853,0 -1.853,0c0,1.624 0.552,3.121 1.477,4.312Zm8.523,-3.799c-0.036,0.762 -0.36,1.448 -0.865,1.953c-0.505,0.505 -1.192,0.829 -1.953,0.865l2.818,-2.818Zm-5.704,0.98l5.707,-5.707l0,-1.714c0,-1.635 -1.328,-2.963 -2.963,-2.963c-1.636,-0 -2.964,1.328 -2.964,2.963l-0,6.299c-0,0.397 0.078,0.776 0.22,1.122Z"/>
</svg>

After

Width:  |  Height:  |  Size: 833 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 20 20">
<path id="notificationsDisplay" fill="#d8d8d8" fill-rule="nonzero" d="M14.428,9.562c0.034,2.859 0.934,4.364 1.457,4.364c0.578,0 1.048,0.488 1.048,1.089c0,0.601 -0.47,1.088 -1.048,1.088l-12.636,0c-0.579,0 -1.049,-0.487 -1.049,-1.088c0,-0.601 0.47,-1.089 1.049,-1.089c0.566,0 1.509,-1.587 1.509,-4.516l-0,-1.352c-0,-2.208 1.377,-4.085 3.287,-4.755c0.227,-0.08 0.703,-0.216 0.703,-0.687l0,-0.24c0,-0.483 0.378,-0.876 0.844,-0.876c0.466,0 0.844,0.393 0.844,0.876l0,0.243c0,0.454 0.483,0.606 0.714,0.688c0.114,0.04 0.227,0.085 0.337,0.134c-0.286,0.576 -0.447,1.226 -0.447,1.912c-0,2.062 1.452,3.787 3.388,4.209Zm-2.961,7.351c0.017,0.074 0.026,0.15 0.026,0.227c0,0.751 -0.863,1.36 -1.926,1.36c-1.064,-0 -1.927,-0.609 -1.927,-1.36c-0,-0.077 0.009,-0.153 0.027,-0.227l3.8,0Zm3.88,-14.733c1.751,0 3.173,1.422 3.173,3.173c-0,1.752 -1.422,3.174 -3.173,3.174c-1.752,-0 -3.174,-1.422 -3.174,-3.174c0,-1.751 1.422,-3.173 3.174,-3.173Zm-0,1.133c-1.126,0 -2.04,0.914 -2.04,2.04c-0,1.126 0.914,2.04 2.04,2.04c1.126,0 2.04,-0.914 2.04,-2.04c-0,-1.126 -0.914,-2.04 -2.04,-2.04Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,2 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 20 20">
<path id="pushToMute" fill="#d8d8d8" fill-rule="nonzero" d="M12.015,13.652c-0.622,-0.622 -1.194,-1.193 -1.526,-1.522c-0.347,-0.345 -1.582,-0.666 -2.361,0.113c-0.313,0.313 -0.157,0.761 0.467,1.385l4.523,4.524c0.236,0.235 0.545,0.352 0.854,0.351c0.58,0.317 1.245,0.497 1.952,0.497c2.25,-0 4.076,-1.826 4.076,-4.076l-0.008,-0.271c0.005,-0.039 0.007,-0.079 0.007,-0.119l0,-3.658c0,-0.538 -0.437,-0.975 -0.974,-0.975c-0.538,0 -0.975,0.437 -0.975,0.975l0,0.562c-0.015,-0.009 -0.03,-0.019 -0.045,-0.028l-0,-1.461c-0,-0.539 -0.438,-0.977 -0.978,-0.977c-0.539,-0 -0.963,0.438 -0.963,0.977l-0,0.892l-0.041,-0l0,-1.524c0,-0.534 -0.433,-0.968 -0.968,-0.968c-0.534,0 -0.968,0.434 -0.968,0.968l0,1.959c-0.024,0.013 -0.049,0.025 -0.073,0.038l0,-6.7c0,-0.552 -0.448,-1 -1,-1c-0.551,-0 -0.999,0.448 -0.999,1l-0,9.038Zm-3.62,-6.425l-4.416,4.416l-0,1.685l1.053,0l-0,-2.357c1.845,-0.292 3.273,-1.845 3.363,-3.744Zm0.221,-2.051l-0.775,-0.774l-7.703,7.703l0.775,0.775l7.703,-7.704Zm-7.505,4.127l0.76,-0.76c-0.266,-0.441 -0.418,-0.957 -0.418,-1.509c-0,0 -1.053,0 -1.053,0c-0,0.843 0.263,1.625 0.711,2.269Zm1.654,-1.654l3.319,-3.32l0,-0.652c0,-0.926 -0.754,-1.678 -1.684,-1.678c-0.93,-0 -1.684,0.752 -1.684,1.678l-0,3.567c-0,0.14 0.017,0.275 0.049,0.405Zm8.235,-0.185c-1.195,-0.692 -2,-1.985 -2,-3.464c0,-2.208 1.792,-4 4,-4c2.208,0 4,1.792 4,4c0,1.479 -0.805,2.772 -2,3.464l0,-2.88c0,-1.104 -0.896,-2 -2,-2c-1.104,0 -2,0.896 -2,2l0,2.88Z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,2 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 20 20">
<path id="pushToTalk" fill="#d8d8d8" fill-rule="nonzero" d="M12.015,13.652c-0.622,-0.622 -1.194,-1.193 -1.526,-1.522c-0.347,-0.345 -1.582,-0.666 -2.361,0.113c-0.313,0.313 -0.157,0.761 0.467,1.385l4.523,4.524c0.236,0.235 0.545,0.352 0.854,0.351c0.58,0.317 1.245,0.497 1.952,0.497c2.25,-0 4.076,-1.826 4.076,-4.076l-0.008,-0.271c0.005,-0.039 0.007,-0.079 0.007,-0.119l0,-3.658c0,-0.538 -0.437,-0.975 -0.974,-0.975c-0.538,0 -0.975,0.437 -0.975,0.975l0,0.562c-0.015,-0.009 -0.03,-0.019 -0.045,-0.028l-0,-1.461c-0,-0.539 -0.438,-0.977 -0.978,-0.977c-0.539,-0 -0.963,0.438 -0.963,0.977l-0,0.892l-0.041,-0l0,-1.524c0,-0.534 -0.433,-0.968 -0.968,-0.968c-0.534,0 -0.968,0.434 -0.968,0.968l0,1.959c-0.024,0.013 -0.049,0.025 -0.073,0.038l0,-6.7c0,-0.552 -0.448,-1 -1,-1c-0.551,-0 -0.999,0.448 -0.999,1l-0,9.038Zm-8.048,-2.653l-0,2.329l1.049,0l-0,-2.357c1.901,-0.302 3.357,-1.951 3.357,-3.937l-1.049,0c-0,1.621 -1.317,2.938 -2.938,2.938c-1.621,-0 -2.937,-1.317 -2.937,-2.938c0,0 -1.049,0 -1.049,0c-0,2.059 1.564,3.755 3.567,3.965Zm2.098,-7.322c-0,-0.926 -0.752,-1.678 -1.679,-1.678c-0.926,-0 -1.678,0.752 -1.678,1.678l-0,3.567c-0,0.926 0.752,1.679 1.678,1.679c0.927,-0 1.679,-0.753 1.679,-1.679l-0,-3.567Zm4.935,3.787c-1.195,-0.692 -2,-1.985 -2,-3.464c0,-2.208 1.792,-4 4,-4c2.208,0 4,1.792 4,4c0,1.479 -0.805,2.772 -2,3.464l0,-2.88c0,-1.104 -0.896,-2 -2,-2c-1.104,0 -2,0.896 -2,2l0,2.88Z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 20 20">
<path id="serverStats" fill="#d8d8d8" fill-rule="nonzero" d="M8.157,18l-6.157,-0c-1.104,-0 -2,-0.896 -2,-2l0,-14c0,-1.104 0.896,-2 2,-2l13,-0c1.104,-0 2,0.896 2,2l-0,5.699c-0.63,-0.232 -1.302,-0.379 -2,-0.427l0,-0.272l-13,0l-0,4l6.157,0c-0.177,0.319 -0.33,0.653 -0.458,1l-5.699,0l-0,4l5.411,0c0.15,0.71 0.404,1.383 0.746,2Zm6.843,-12l-0,-4l-13,0l-0,4l13,0Zm-11,-3c0.552,0 1,0.448 1,1c0,0.552 -0.448,1 -1,1c-0.552,0 -1,-0.448 -1,-1c0,-0.552 0.448,-1 1,-1Zm0,10c0.552,0 1,0.448 1,1c0,0.552 -0.448,1 -1,1c-0.552,0 -1,-0.448 -1,-1c0,-0.552 0.448,-1 1,-1Zm0,-5c0.552,0 1,0.448 1,1c0,0.552 -0.448,1 -1,1c-0.552,0 -1,-0.448 -1,-1c0,-0.552 0.448,-1 1,-1Zm10.5,1c3.036,-0 5.5,2.464 5.5,5.5c0,3.036 -2.464,5.5 -5.5,5.5c-3.036,0 -5.5,-2.464 -5.5,-5.5c-0,-3.036 2.464,-5.5 5.5,-5.5Zm0.935,3.5c0,-0.516 -0.419,-0.935 -0.935,-0.935c-0.516,-0 -0.935,0.419 -0.935,0.935c-0,0.516 0.419,0.935 0.935,0.935c0.516,0 0.935,-0.419 0.935,-0.935Zm0.165,1.5l-2.2,0l0,0.366l0.402,0.634l0,2l-0.402,0.639l0,0.361l2.2,-0l0,-0.366l-0.402,-0.634l-0,-2l0.402,-0.639l0,-0.361Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 20 20">
<path id="setAudioDevice" fill="#d8d8d8" fill-rule="nonzero" d="M12.437,2.708c-0.897,-0.39 -1.887,-0.606 -2.927,-0.606c-4.061,0 -7.358,3.297 -7.358,7.358l0,3.153l1.051,0c1.16,0 2.102,0.942 2.102,2.102l0,3.153c0,1.161 -0.942,2.103 -2.102,2.103l-1.051,-0c-1.16,-0 -2.102,-0.942 -2.102,-2.103l-0,-8.408c-0,-5.221 4.239,-9.46 9.46,-9.46c5.221,-0 9.46,4.239 9.46,9.46l-0,0.12c-0.046,-0.004 -0.092,-0.006 -0.138,-0.006l-1.452,0c-0.082,0 -0.163,0.007 -0.242,0.019l0,-3.164c0,-2.109 -1.713,-3.822 -3.822,-3.822c-0.303,-0 -0.597,0.035 -0.879,0.101Zm6.533,12.518l-0,2.642c-0,1.161 -0.942,2.103 -2.103,2.103l-1.051,-0c-0.047,-0 -0.094,-0.002 -0.14,-0.005c0.007,-0.06 0.011,-0.121 0.011,-0.183l-0,-2.105c1.323,-0.476 2.463,-1.339 3.283,-2.452Zm-6.235,1.334c-2.772,-0.291 -4.935,-2.638 -4.935,-5.486l1.452,0c-0,2.243 1.821,4.064 4.064,4.064c2.243,0 4.064,-1.821 4.064,-4.064l1.452,0c-0,2.748 -2.014,5.029 -4.645,5.447l-0,3.262l-1.452,0l0,-3.223Zm2.903,-10.131l0,4.935c0,1.282 -1.04,2.323 -2.322,2.323c-1.282,-0 -2.323,-1.041 -2.323,-2.323l0,-4.935c0,-1.282 1.041,-2.322 2.323,-2.322c1.282,-0 2.322,1.04 2.322,2.322Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1,2 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 20 20">
<path id="textChannel" fill="#d8d8d8" fill-rule="evenodd" clip-rule="evenodd" d="M13.556,5l-6,0l0.334,-3.012c0.061,-0.545 -0.338,-0.988 -0.89,-0.988c-0.552,0 -1.049,0.443 -1.11,0.988l-0.334,3.012l-2.556,0c-0.552,0 -1,0.448 -1,1c0,0.552 0.448,1 1,1l2.333,0l-0.666,6l-2.667,0c-0.552,0 -1,0.448 -1,1c-0,0.552 0.448,1 1,1l2.444,0l-0.334,3.012c-0.061,0.545 0.338,0.988 0.89,0.988c0.552,0 1.049,-0.443 1.11,-0.988l0.334,-3.012l6,0l-0.334,3.012c-0.061,0.545 0.338,0.988 0.89,0.988c0.552,0 1.049,-0.443 1.11,-0.988l0.334,-3.012l2.556,0c0.552,0 1,-0.448 1,-1c0,-0.552 -0.448,-1 -1,-1l-2.333,0l0.666,-6l2.667,0c0.552,0 1,-0.448 1,-1c0,-0.552 -0.448,-1 -1,-1l-2.444,0l0.334,-3.012c0.061,-0.545 -0.338,-0.988 -0.89,-0.988c-0.552,0 -1.049,0.443 -1.11,0.988l-0.334,3.012Zm-0.223,2l-6,0l-0.666,6l6,0l0.666,-6Z"/></svg>

After

Width:  |  Height:  |  Size: 908 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 20 20">
<path id="togglePushToTalk" fill="#d8d8d8" fill-rule="nonzero" d="M8.225,11.677l0.71,1.229c-0.726,0.633 -1.628,1.07 -2.622,1.228l-0,2.696l-1.383,-0l-0,-2.66c-2.642,-0.276 -4.703,-2.513 -4.703,-5.227l1.383,-0c-0,2.138 1.735,3.873 3.873,3.873c1.071,-0 2.041,-0.436 2.742,-1.139Zm-0.529,-5.854c-1.178,0.686 -1.581,2.199 -0.898,3.381l0.624,1.082c-0.376,0.683 -1.104,1.147 -1.939,1.147c-1.222,-0 -2.213,-0.992 -2.213,-2.213l-0,-4.703c-0,-1.222 0.991,-2.213 2.213,-2.213c1.221,-0 2.213,0.991 2.213,2.213l0,1.306Zm4.334,9.443l-3.933,-6.812c-0.27,-0.468 -0.11,-1.067 0.358,-1.337c0.468,-0.27 1.067,-0.11 1.337,0.358l2.789,4.832c0.014,-0.023 0.029,-0.046 0.044,-0.068l-0.959,-1.661c-0.262,-0.453 -0.106,-1.033 0.347,-1.294c0.452,-0.261 1.032,-0.106 1.294,0.347l0.745,1.291l0.035,-0.019l-0.437,-0.756c-0.264,-0.458 -0.118,-1.036 0.339,-1.3c0.457,-0.264 1.042,-0.107 1.306,0.35l0.715,1.239c0.018,-0 0.035,0 0.052,0.001l-0.275,-0.477c-0.263,-0.456 -0.106,-1.039 0.349,-1.302c0.456,-0.264 1.04,-0.107 1.303,0.349l1.79,3.1c0.02,0.034 0.037,0.069 0.052,0.105l0.14,0.225c1.101,1.907 0.446,4.349 -1.46,5.449c-0.599,0.346 -1.251,0.519 -1.898,0.534c-0.261,0.152 -0.581,0.205 -0.896,0.12l-6.047,-1.62c-0.834,-0.224 -1.185,-0.528 -1.073,-0.946c0.279,-1.042 1.482,-1.373 1.945,-1.251c0.442,0.116 1.207,0.321 2.038,0.543Zm-0.03,-13.266c1.104,0 2,0.896 2,2c0,1.104 -0.896,2 -2,2c-1.104,0 -2,-0.896 -2,-2c0,-1.104 0.896,-2 2,-2Zm5,0c1.104,0 2,0.896 2,2c0,1.104 -0.896,2 -2,2c-1.104,0 -2,-0.896 -2,-2c0,-1.104 0.896,-2 2,-2Zm0,1c-0.552,0 -1,0.448 -1,1c0,0.552 0.448,1 1,1c0.552,0 1,-0.448 1,-1c0,-0.552 -0.448,-1 -1,-1Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 20 20">
<path id="userVolumeControl" fill="#d8d8d8" fill-rule="nonzero" d="M11,7l-0.477,0c-0.552,0 -1,-0.448 -1,-1c0,-0.364 0.196,-0.683 0.487,-0.858c0.15,-0.09 0.326,-0.142 0.513,-0.142l2.954,0c0.187,0 0.363,0.052 0.513,0.142c0.291,0.175 0.487,0.494 0.487,0.858c-0,0.552 -0.448,1 -1,1l-0.477,0l-0,2.877c-0.559,-0.664 -1.237,-1.226 -2,-1.653l-0,-1.224Zm5,5l-0.488,0c-0.551,0 -1,-0.448 -1,-1c0,-0.368 0.2,-0.691 0.497,-0.864c0.148,-0.086 0.32,-0.136 0.503,-0.136l2.976,0c0.183,0 0.355,0.05 0.503,0.136c0.297,0.173 0.497,0.496 0.497,0.864c-0,0.552 -0.449,1 -1,1l-0.488,0l-0,1.515c-0,0.552 -0.448,1 -1,1c-0.552,-0 -1,-0.448 -1,-1l-0,-1.515Zm-15.016,-0.531l-0.033,-0c-0.525,-0 -0.951,-0.426 -0.951,-0.951l0,-4.992c0,-0.525 0.426,-0.951 0.951,-0.951l1.007,-0l3.078,-2.761l1.207,-1.453c0.269,-0.324 0.713,-0.445 1.109,-0.302c0.396,0.144 0.66,0.52 0.66,0.941l0,6.332c-0.169,-0.012 -0.34,-0.018 -0.512,-0.018c-2.883,0 -5.372,1.702 -6.516,4.155Zm10.016,-7.469l-0,-1.521c-0,-0.552 0.448,-1 1,-1c0.552,-0 1,0.448 1,1l-0,1.521l-2,0Zm5,5l-0,-6.515c-0,-0.552 0.448,-1 1,-1c0.552,0 1,0.448 1,1l-0,6.515l-2,0Zm-8.5,-0c3.036,-0 5.5,2.464 5.5,5.5c0,3.036 -2.464,5.5 -5.5,5.5c-3.036,0 -5.5,-2.464 -5.5,-5.5c-0,-3.036 2.464,-5.5 5.5,-5.5Zm-0,6c-2.081,0 -3.77,0.781 -3.77,1.743c0,0.962 1.689,1.743 3.77,1.743c2.081,-0 3.77,-0.781 3.77,-1.743c-0,-0.962 -1.689,-1.743 -3.77,-1.743Zm-0,-4.6c-1.004,0 -1.819,0.815 -1.819,1.819c-0,1.004 0.815,1.819 1.819,1.819c1.004,0 1.819,-0.815 1.819,-1.819c0,-1.004 -0.815,-1.819 -1.819,-1.819Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 20 20">
<path id="joinChannel-leaveChannel" fill="#d8d8d8" fill-rule="nonzero" d="M3.416,6.239l-0.871,0c-1.405,0 -2.545,1.141 -2.545,2.546l0,2.481c0,1.405 1.14,2.545 2.545,2.545l0.886,0l5.486,4.919c0.238,0.214 0.58,0.267 0.872,0.137c0.292,-0.131 0.481,-0.421 0.481,-0.741l-0,-16.215c-0,-0.32 -0.189,-0.61 -0.481,-0.741c-0.292,-0.13 -0.634,-0.076 -0.872,0.137l-5.501,4.932Zm9.357,-2.977c0.07,-0.002 0.141,-0.003 0.213,-0.003c3.877,0 7.012,3.148 7.012,7.025c0,3.877 -3.135,7.025 -7.012,7.025c-0.072,0 -0.143,-0.001 -0.213,-0.003l-0,-1.887c0.07,0.003 0.141,0.005 0.213,0.005c2.836,-0 5.127,-2.303 5.127,-5.14c-0,-2.836 -2.291,-5.139 -5.127,-5.139c-0.072,-0 -0.143,0.001 -0.213,0.004l-0,-1.887Zm-0,4.263c0.07,-0.006 0.141,-0.008 0.213,-0.008c1.527,-0 2.767,1.24 2.767,2.767c-0,1.528 -1.24,2.768 -2.767,2.768c-0.072,-0 -0.143,-0.003 -0.213,-0.009l-0,-1.827c0.068,0.016 0.139,0.024 0.213,0.024c0.527,-0 0.955,-0.428 0.955,-0.956c0,-0.527 -0.428,-0.956 -0.955,-0.956c-0.074,0 -0.145,0.009 -0.213,0.024l-0,-1.827Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 20 20">
<path id="volumeControl" fill="#d8d8d8" fill-rule="nonzero" d="M11,9l-0.477,0c-0.552,0 -1,-0.448 -1,-1c0,-0.364 0.196,-0.683 0.487,-0.858c0.15,-0.09 0.326,-0.142 0.513,-0.142l2.954,0c0.187,0 0.363,0.052 0.513,0.142c0.291,0.175 0.487,0.494 0.487,0.858c-0,0.552 -0.448,1 -1,1l-0.477,0l-0,6.521c-0,0.552 -0.448,1 -1,1c-0.552,0 -1,-0.448 -1,-1l-0,-6.521Zm5,5l-0.488,0c-0.551,0 -1,-0.448 -1,-1c0,-0.368 0.2,-0.691 0.497,-0.864c0.148,-0.086 0.32,-0.136 0.503,-0.136l2.976,0c0.183,0 0.355,0.05 0.503,0.136c0.297,0.173 0.497,0.496 0.497,0.864c-0,0.552 -0.449,1 -1,1l-0.488,0l-0,1.515c-0,0.552 -0.448,1 -1,1c-0.552,-0 -1,-0.448 -1,-1l-0,-1.515Zm-5,-8l-0,-1.521c-0,-0.552 0.448,-1 1,-1c0.552,-0 1,0.448 1,1l-0,1.521l-2,0Zm5,5l-0,-6.515c-0,-0.552 0.448,-1 1,-1c0.552,0 1,0.448 1,1l-0,6.515l-2,0Zm-10.855,5.316l-3.176,-2.847l-1.018,-0c-0.525,-0 -0.951,-0.426 -0.951,-0.951l0,-4.992c0,-0.525 0.426,-0.951 0.951,-0.951l1.007,-0l3.078,-2.761l1.207,-1.453c0.269,-0.324 0.713,-0.445 1.109,-0.302c0.396,0.144 0.66,0.52 0.66,0.941l0,14c0,0.421 -0.264,0.797 -0.66,0.941c-0.396,0.143 -0.84,0.022 -1.109,-0.302l-1.098,-1.323Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

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