chore: change batteries
59
font-patcher
|
@ -6,7 +6,7 @@
|
||||||
from __future__ import absolute_import, print_function, unicode_literals
|
from __future__ import absolute_import, print_function, unicode_literals
|
||||||
|
|
||||||
# Change the script version when you edit this script:
|
# Change the script version when you edit this script:
|
||||||
script_version = "4.16.2"
|
script_version = "4.18.0"
|
||||||
|
|
||||||
version = "3.3.0"
|
version = "3.3.0"
|
||||||
projectName = "Nerd Fonts"
|
projectName = "Nerd Fonts"
|
||||||
|
@ -358,7 +358,7 @@ class font_patcher:
|
||||||
self.sourceFont.encoding = 'UnicodeFull' # Update the font encoding to ensure that the Unicode glyphs are available
|
self.sourceFont.encoding = 'UnicodeFull' # Update the font encoding to ensure that the Unicode glyphs are available
|
||||||
self.onlybitmaps = self.sourceFont.onlybitmaps # Fetch this property before adding outlines. NOTE self.onlybitmaps initialized and never used
|
self.onlybitmaps = self.sourceFont.onlybitmaps # Fetch this property before adding outlines. NOTE self.onlybitmaps initialized and never used
|
||||||
|
|
||||||
if self.args.single:
|
if self.args.forcemono:
|
||||||
# Force width to be equal on all glyphs to ensure the font is considered monospaced on Windows.
|
# Force width to be equal on all glyphs to ensure the font is considered monospaced on Windows.
|
||||||
# This needs to be done on all characters, as some information seems to be lost from the original font file.
|
# This needs to be done on all characters, as some information seems to be lost from the original font file.
|
||||||
self.set_sourcefont_glyph_widths()
|
self.set_sourcefont_glyph_widths()
|
||||||
|
@ -832,12 +832,12 @@ class font_patcher:
|
||||||
logger.warning("Monospaced check: %s and %s",
|
logger.warning("Monospaced check: %s and %s",
|
||||||
report_advance_widths(self.sourceFont),
|
report_advance_widths(self.sourceFont),
|
||||||
panose_check_to_text(panose_mono, self.sourceFont.os2_panose))
|
panose_check_to_text(panose_mono, self.sourceFont.os2_panose))
|
||||||
if self.args.single and not width_mono:
|
if self.args.forcemono and not width_mono:
|
||||||
logger.warning("Sourcefont is not monospaced - forcing to monospace not advisable, "
|
logger.warning("Sourcefont is not monospaced - forcing to monospace not advisable, "
|
||||||
"results might be useless%s",
|
"results might be useless%s",
|
||||||
" - offending char: {:X}".format(offending_char) if offending_char is not None else "")
|
" - offending char: {:X}".format(offending_char) if offending_char is not None else "")
|
||||||
if self.args.single <= 1:
|
if self.args.forcemono <= 1:
|
||||||
logger.critical("Font will not be patched! Give --mono (or -s, or --use-single-width-glyphs) twice to force patching")
|
logger.critical("Font will not be patched! Give --mono (or -s) twice to force patching")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
if width_mono:
|
if width_mono:
|
||||||
force_panose_monospaced(self.sourceFont)
|
force_panose_monospaced(self.sourceFont)
|
||||||
|
@ -1266,6 +1266,14 @@ class font_patcher:
|
||||||
logger.debug("Metrics is strange")
|
logger.debug("Metrics is strange")
|
||||||
pass # Will fail the metrics check some line later
|
pass # Will fail the metrics check some line later
|
||||||
|
|
||||||
|
if self.args.cellopt:
|
||||||
|
logger.debug("Overriding cell Y{%d:%d} with Y{%d:%d}",
|
||||||
|
self.font_dim['ymin'], self.font_dim['ymax'],
|
||||||
|
self.args.cellopt[2], self.args.cellopt[3])
|
||||||
|
self.font_dim['ymin'] = self.args.cellopt[2]
|
||||||
|
self.font_dim['ymax'] = self.args.cellopt[3]
|
||||||
|
our_btb = self.args.cellopt[3] - self.args.cellopt[2]
|
||||||
|
|
||||||
# Calculate font height
|
# Calculate font height
|
||||||
self.font_dim['height'] = -self.font_dim['ymin'] + self.font_dim['ymax']
|
self.font_dim['height'] = -self.font_dim['ymin'] + self.font_dim['ymax']
|
||||||
if self.font_dim['height'] == 0:
|
if self.font_dim['height'] == 0:
|
||||||
|
@ -1288,7 +1296,7 @@ class font_patcher:
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
self.font_dim['iconheight'] = self.font_dim['height']
|
self.font_dim['iconheight'] = self.font_dim['height']
|
||||||
if self.args.single and self.sourceFont.capHeight > 0:
|
if self.args.single and self.sourceFont.capHeight > 0 and not isinstance(self.args.cellopt, list):
|
||||||
# Limit the icon height on monospaced fonts because very slender and tall icons render
|
# Limit the icon height on monospaced fonts because very slender and tall icons render
|
||||||
# excessivly tall otherwise. We ignore that effect for the other variants because it
|
# excessivly tall otherwise. We ignore that effect for the other variants because it
|
||||||
# does not look so much out of place there.
|
# does not look so much out of place there.
|
||||||
|
@ -1348,9 +1356,21 @@ class font_patcher:
|
||||||
if self.font_dim['width'] <= 0:
|
if self.font_dim['width'] <= 0:
|
||||||
logger.critical("Can not detect sane font width")
|
logger.critical("Can not detect sane font width")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
if isinstance(self.args.cellopt, list):
|
||||||
|
logger.debug("Overriding cell X{%d:%d} with X{%d:%d}",
|
||||||
|
self.font_dim['xmin'], self.font_dim['xmin'] + self.font_dim['width'],
|
||||||
|
self.args.cellopt[0], self.args.cellopt[1])
|
||||||
|
self.font_dim['xmin'] = self.args.cellopt[0]
|
||||||
|
self.font_dim['xmax'] = self.args.cellopt[1]
|
||||||
|
self.font_dim['width'] = self.args.cellopt[1]
|
||||||
logger.debug("Final font cell dimensions %d w x %d h%s",
|
logger.debug("Final font cell dimensions %d w x %d h%s",
|
||||||
self.font_dim['width'], self.font_dim['height'],
|
self.font_dim['width'], self.font_dim['height'],
|
||||||
' (with icon cell {} h)'.format(int(self.font_dim['iconheight'])) if self.font_dim['iconheight'] != self.font_dim['height'] else '')
|
' (with icon cell {} h)'.format(int(self.font_dim['iconheight'])) if self.font_dim['iconheight'] != self.font_dim['height'] else '')
|
||||||
|
if self.args.cellopt:
|
||||||
|
logger.info("Cell coordinates %s%d:%d:%d:%d",
|
||||||
|
'' if not isinstance(self.args.cellopt, list) else 'overridden with ',
|
||||||
|
self.font_dim['xmin'], self.font_dim['width'],
|
||||||
|
self.font_dim['ymax'] - self.font_dim['height'], self.font_dim['ymax'])
|
||||||
|
|
||||||
self.xavgwidth.append(self.args.xavgwidth)
|
self.xavgwidth.append(self.args.xavgwidth)
|
||||||
if isinstance(self.xavgwidth[-1], int) and self.xavgwidth[-1] == 0:
|
if isinstance(self.xavgwidth[-1], int) and self.xavgwidth[-1] == 0:
|
||||||
|
@ -1974,7 +1994,9 @@ def setup_arguments():
|
||||||
# optional arguments
|
# optional arguments
|
||||||
parser.add_argument('font', help='The path to the font to patch (e.g., Inconsolata.otf)')
|
parser.add_argument('font', help='The path to the font to patch (e.g., Inconsolata.otf)')
|
||||||
parser.add_argument('-v', '--version', action='version', version=projectName + ": %(prog)s (" + version + ")")
|
parser.add_argument('-v', '--version', action='version', version=projectName + ": %(prog)s (" + version + ")")
|
||||||
parser.add_argument('-s', '--mono', '--use-single-width-glyphs', dest='single', default=False, action='count', help='Whether to generate the glyphs as single-width not double-width (default is double-width) (Nerd Font Mono)')
|
parser.add_argument('-s', '--mono', dest='forcemono', default=False, action='count', help='Create monospaced font, existing and added glyphs are single-width (implies --single-width-glyphs)')
|
||||||
|
parser.add_argument('--use-single-width-glyphs', dest='forcemono', default=False, action='count', help=argparse.SUPPRESS)
|
||||||
|
parser.add_argument('--single-width-glyphs', dest='single', default=False, action='store_true', help='Whether to generate the glyphs as single-width not double-width (default is double-width) (Nerd Font Mono)')
|
||||||
parser.add_argument('--variable-width-glyphs', dest='nonmono', default=False, action='store_true', help='Do not adjust advance width (no "overhang") (Nerd Font Propo)')
|
parser.add_argument('--variable-width-glyphs', dest='nonmono', default=False, action='store_true', help='Do not adjust advance width (no "overhang") (Nerd Font Propo)')
|
||||||
parser.add_argument('--debug', dest='debugmode', default=0, type=int, nargs='?', help='Verbose mode (optional: 1=just to file; 2*=just to terminal; 3=display and file)', const=2, choices=range(0, 3 + 1))
|
parser.add_argument('--debug', dest='debugmode', default=0, type=int, nargs='?', help='Verbose mode (optional: 1=just to file; 2*=just to terminal; 3=display and file)', const=2, choices=range(0, 3 + 1))
|
||||||
parser.add_argument('-q', '--quiet', dest='quiet', default=False, action='store_true', help='Do not generate verbose output')
|
parser.add_argument('-q', '--quiet', dest='quiet', default=False, action='store_true', help='Do not generate verbose output')
|
||||||
|
@ -2028,6 +2050,7 @@ def setup_arguments():
|
||||||
# <none> - copy from sourcefont (default)
|
# <none> - copy from sourcefont (default)
|
||||||
# 0 - calculate from font according to OS/2-version-2
|
# 0 - calculate from font according to OS/2-version-2
|
||||||
# 500 - set to 500
|
# 500 - set to 500
|
||||||
|
expert_group.add_argument('--cell', dest='cellopt', default=None, type=str, help='Adjust or quiery the call size, e.g. use "0:1000:-200:800" resp "?"')
|
||||||
|
|
||||||
# progress bar arguments - https://stackoverflow.com/questions/15008758/parsing-boolean-values-with-argparse
|
# progress bar arguments - https://stackoverflow.com/questions/15008758/parsing-boolean-values-with-argparse
|
||||||
progressbars_group_parser.add_argument('--progressbars', dest='progressbars', action='store_true', help='Show percentage completion progress bars per Glyph Set (default)')
|
progressbars_group_parser.add_argument('--progressbars', dest='progressbars', action='store_true', help='Show percentage completion progress bars per Glyph Set (default)')
|
||||||
|
@ -2088,10 +2111,29 @@ def setup_arguments():
|
||||||
font_complete = False
|
font_complete = False
|
||||||
args.complete = font_complete
|
args.complete = font_complete
|
||||||
|
|
||||||
|
if args.forcemono:
|
||||||
|
args.single = True
|
||||||
if args.nonmono and args.single:
|
if args.nonmono and args.single:
|
||||||
logger.warning("Specified contradicting --variable-width-glyphs and --use-single-width-glyph. Ignoring --variable-width-glyphs.")
|
logger.warning("Specified contradicting --variable-width-glyphs together with --mono or --single-width-glyphs. Ignoring --variable-width-glyphs.")
|
||||||
args.nonmono = False
|
args.nonmono = False
|
||||||
|
|
||||||
|
if args.cellopt:
|
||||||
|
if args.cellopt != '?':
|
||||||
|
try:
|
||||||
|
parts = [ int(v) for v in args.cellopt.split(':') ]
|
||||||
|
if len(parts) != 4:
|
||||||
|
raise
|
||||||
|
except:
|
||||||
|
logger.critical("Parameter for --cell is not 4 colon seprated integer numbers: '%s'", args.cellopt)
|
||||||
|
sys.exit(2)
|
||||||
|
if parts[0] >= parts[1] or parts[2] >= parts[3]:
|
||||||
|
logger.critical("Parameter for --cell do not result in positive cell size: %d x %d",
|
||||||
|
parts[1] - parts[0], parts[3] - parts[2])
|
||||||
|
sys.exit(2)
|
||||||
|
if parts[0] != 0:
|
||||||
|
logger.warn("First parameter for --cell should be zero, this is probably not working")
|
||||||
|
args.cellopt = parts
|
||||||
|
|
||||||
make_sure_path_exists(args.outputdir)
|
make_sure_path_exists(args.outputdir)
|
||||||
if not os.path.isfile(args.font):
|
if not os.path.isfile(args.font):
|
||||||
logger.critical("Font file does not exist: %s", args.font)
|
logger.critical("Font file does not exist: %s", args.font)
|
||||||
|
@ -2126,6 +2168,7 @@ def setup_arguments():
|
||||||
logger.critical("Can not create single font files from True Type Collections")
|
logger.critical("Can not create single font files from True Type Collections")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
# The if might look ridiculous, but isinstance(False, int) is True!
|
||||||
if isinstance(args.xavgwidth, int) and not isinstance(args.xavgwidth, bool):
|
if isinstance(args.xavgwidth, int) and not isinstance(args.xavgwidth, bool):
|
||||||
if args.xavgwidth < 0:
|
if args.xavgwidth < 0:
|
||||||
logger.critical("--xavgcharwidth takes no negative numbers")
|
logger.critical("--xavgcharwidth takes no negative numbers")
|
||||||
|
|
1
src/glyphs/devicons/fixed/akka-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m86.38 21.38c-3.459 0.1335-7.121 1.557-9.766 3.795l-67.75 56.77c-6.155 5.29-6.508 14.7-0.8125 20.4 5.036 5.036 13.02 5.492 18.56 1.016l6.562-5.188c17.5-18.16 46.59-38.4 73.71-30.93 6.307 1.78 10.78 5.441 13.68 9.816l-25.64-51.73c-1.831-2.925-5.086-4.081-8.545-3.947zm6.24 47.36c-19.88 0.01555-39.85 11.79-59.85 33.78 0 0 45.47-16.63 72.74 5.137 18.26 14.6 29.96-28.99 0.8652-37.03-4.578-1.268-9.162-1.89-13.75-1.887z"/></svg>
|
After Width: | Height: | Size: 511 B |
|
@ -1 +1 @@
|
||||||
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m52.864 64h23.28l-12.375-25.877zm10.946-62.974-59.257 20.854 9.363 77.637 49.957 27.457 50.214-27.828 9.36-77.635zm-15.766 73.974-7.265 18.176-13.581 0.056 36.608-81.079s26.531 56.561 38.19 81.417l-13.074-0.287-8.042-18.58-17.173 0.082z" fill="#c4473a"/></svg>
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m52.864 64h23.28l-12.375-25.877zm10.946-62.974-59.257 20.854 9.363 77.637 49.957 27.457 50.214-27.828 9.36-77.635zm-15.766 73.974-7.265 18.176-13.581 0.056 36.608-81.079s26.531 56.561 38.19 81.417l-13.074-0.287-8.042-18.58-17.173 0.082z" /></svg>
|
||||||
|
|
Before Width: | Height: | Size: 346 B After Width: | Height: | Size: 332 B |
1
src/glyphs/devicons/fixed/antdesign-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg width="128" height="128" version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m58.62 2.672-55.94 55.89a7.672 7.672 0 0 0 0 10.87l55.94 55.89a7.684 7.684 0 0 0 10.87 0l23.46-23.44a6.891 6.891 0 0 0 0-9.746 6.9 6.9 0 0 0-9.754 0l-17.78 17.76c-0.75 0.75-1.888 0.75-2.634 0l-44.68-44.63c-0.747-0.75-0.747-1.886 0-2.632l44.68-44.64c0.746-0.746 1.883-0.746 2.633 0l17.78 17.76a6.9 6.9 0 0 0 9.754 0 6.891 6.891 0 0 0 0-9.746l-23.45-23.43c-3.02-2.938-7.879-2.914-10.88 0.078z" fill="#0c68ff"/><path d="m98.36 86.94a6.9 6.9 0 0 0 9.753 0l17.3-17.28a7.667 7.667 0 0 0 0-10.86l-17.45-17.38a6.91 6.91 0 0 0-9.762 0.012 6.884 6.884 0 0 0 0 9.746l11.79 11.78a1.826 1.826 0 0 1 0 2.629l-11.63 11.62a6.88 6.88 0 0 0 0 9.742z" fill="#f62838"/><path d="m79.44 64.28c0-8.336-6.762-15.09-15.11-15.09-8.34 0-15.1 6.758-15.1 15.09 0 8.332 6.765 15.09 15.1 15.09 8.344 0 15.11-6.758 15.11-15.09z" fill="#f62c3c" fill-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 950 B |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.7 KiB |
|
@ -1 +1 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#293138" d="M109.01 28.64L71.28 6.24c-2.25-1.33-4.77-2-7.28-2s-5.03.67-7.28 2.01l-37.74 22.4c-4.5 2.67-7.28 7.61-7.28 12.96v44.8c0 5.35 2.77 10.29 7.28 12.96l37.73 22.4c2.25 1.34 4.76 2 7.28 2 2.51 0 5.03-.67 7.28-2l37.74-22.4c4.5-2.67 7.28-7.62 7.28-12.96V41.6c0-5.34-2.77-10.29-7.28-12.96zM79.79 98.59l.06 3.22c0 .39-.25.83-.55.99l-1.91 1.1c-.3.15-.56-.03-.56-.42l-.03-3.17c-1.63.68-3.29.84-4.34.42-.2-.08-.29-.37-.21-.71l.69-2.91c.06-.23.18-.46.34-.6.06-.06.12-.1.18-.13.11-.06.22-.07.31-.03 1.14.38 2.59.2 3.99-.5 1.78-.9 2.97-2.72 2.95-4.52-.02-1.64-.9-2.31-3.05-2.33-2.74.01-5.3-.53-5.34-4.57-.03-3.32 1.69-6.78 4.43-8.96l-.03-3.25c0-.4.24-.84.55-1l1.85-1.18c.3-.15.56.04.56.43l.03 3.25c1.36-.54 2.54-.69 3.61-.44.23.06.34.38.24.75l-.72 2.88c-.06.22-.18.44-.33.58a.77.77 0 01-.19.14c-.1.05-.19.06-.28.05-.49-.11-1.65-.36-3.48.56-1.92.97-2.59 2.64-2.58 3.88.02 1.48.77 1.93 3.39 1.97 3.49.06 4.99 1.58 5.03 5.09.05 3.44-1.79 7.15-4.61 9.41zm19.78-5.41c0 .3-.04.58-.29.72l-9.54 5.8c-.25.15-.45.02-.45-.28v-2.46c0-.3.18-.46.43-.61l9.4-5.62c.25-.15.45-.02.45.28v2.17zm6.56-55.09l-35.7 22.05c-4.45 2.6-7.73 5.52-7.74 10.89v43.99c0 3.21 1.3 5.29 3.29 5.9-.65.11-1.32.19-1.98.19-2.09 0-4.15-.57-5.96-1.64l-37.73-22.4c-3.69-2.19-5.98-6.28-5.98-10.67V41.6c0-4.39 2.29-8.48 5.98-10.67l37.74-22.4c1.81-1.07 3.87-1.64 5.96-1.64s4.15.57 5.96 1.64l37.74 22.4c3.11 1.85 5.21 5.04 5.8 8.63-1.27-2.67-4.09-3.39-7.38-1.47z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M109.01 28.64L71.28 6.24c-2.25-1.33-4.77-2-7.28-2s-5.03.67-7.28 2.01l-37.74 22.4c-4.5 2.67-7.28 7.61-7.28 12.96v44.8c0 5.35 2.77 10.29 7.28 12.96l37.73 22.4c2.25 1.34 4.76 2 7.28 2 2.51 0 5.03-.67 7.28-2l37.74-22.4c4.5-2.67 7.28-7.62 7.28-12.96V41.6c0-5.34-2.77-10.29-7.28-12.96zM79.79 98.59l.06 3.22c0 .39-.25.83-.55.99l-1.91 1.1c-.3.15-.56-.03-.56-.42l-.03-3.17c-1.63.68-3.29.84-4.34.42-.2-.08-.29-.37-.21-.71l.69-2.91c.06-.23.18-.46.34-.6.06-.06.12-.1.18-.13.11-.06.22-.07.31-.03 1.14.38 2.59.2 3.99-.5 1.78-.9 2.97-2.72 2.95-4.52-.02-1.64-.9-2.31-3.05-2.33-2.74.01-5.3-.53-5.34-4.57-.03-3.32 1.69-6.78 4.43-8.96l-.03-3.25c0-.4.24-.84.55-1l1.85-1.18c.3-.15.56.04.56.43l.03 3.25c1.36-.54 2.54-.69 3.61-.44.23.06.34.38.24.75l-.72 2.88c-.06.22-.18.44-.33.58a.77.77 0 01-.19.14c-.1.05-.19.06-.28.05-.49-.11-1.65-.36-3.48.56-1.92.97-2.59 2.64-2.58 3.88.02 1.48.77 1.93 3.39 1.97 3.49.06 4.99 1.58 5.03 5.09.05 3.44-1.79 7.15-4.61 9.41zm19.78-5.41c0 .3-.04.58-.29.72l-9.54 5.8c-.25.15-.45.02-.45-.28v-2.46c0-.3.18-.46.43-.61l9.4-5.62c.25-.15.45-.02.45.28v2.17zm6.56-55.09l-35.7 22.05c-4.45 2.6-7.73 5.52-7.74 10.89v43.99c0 3.21 1.3 5.29 3.29 5.9-.65.11-1.32.19-1.98.19-2.09 0-4.15-.57-5.96-1.64l-37.73-22.4c-3.69-2.19-5.98-6.28-5.98-10.67V41.6c0-4.39 2.29-8.48 5.98-10.67l37.74-22.4c1.81-1.07 3.87-1.64 5.96-1.64s4.15.57 5.96 1.64l37.74 22.4c3.11 1.85 5.21 5.04 5.8 8.63-1.27-2.67-4.09-3.39-7.38-1.47z"/></svg>
|
||||||
|
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.4 KiB |
1
src/glyphs/devicons/fixed/beats-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m12 0v80c15-0.008049 30 0.01616 45-0.01222 10.61-0.1989 21.02-4.911 28.21-12.71 8.036-8.546 12.02-20.74 10.47-32.38-1.387-11.44-8.068-22.06-17.71-28.34-6.83-4.537-15.08-6.799-23.26-6.563h-42.7zm90.81 62.49c-6.223 13.05-18.11 23.26-31.98 27.35-5.476 1.675-11.23 2.284-16.94 2.159h-41.89v36c20.26-0.00488 40.52 0.00978 60.77-0.00736 11.04-0.1415 21.87-5.168 29.15-13.46 7.102-7.919 10.77-18.76 9.975-29.36-0.5591-8.268-3.787-16.32-9.095-22.68z"/></svg>
|
After Width: | Height: | Size: 536 B |
1
src/glyphs/devicons/fixed/bitbucket-original.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m19.08 20c-1.918 0-3.355 1.758-3.039 3.516l12.95 79.29c0.32 2.078 2.078 3.516 4.156 3.516h62.66c0.7976 0 1.537-0.3508 2.1-0.9004 0.07759-0.0661 0.1453-0.1436 0.2168-0.2168 0.4258-0.4361 0.7458-0.9859 0.8828-1.602l3.66-23.18 9.289-56.74c0.316-1.918-1.121-3.516-3.039-3.516l-89.84-0.1602zm29.73 28.93h30.05l-4.797 28.29h-19.98l-5.277-28.29z"/></svg>
|
After Width: | Height: | Size: 433 B |
1
src/glyphs/devicons/fixed/clojurescript-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m61.18 0.7793-3.24 0.2598c-32.38 2.602-57.94 29.86-57.94 62.96 0 33.1 25.55 60.36 57.94 62.96l3.24 0.2598v-12.1l-2.734-0.2441c-25.96-2.312-46.41-24.24-46.41-50.9 0-26.67 20.44-48.56 46.41-50.88l2.736-0.2422-0.001953-12.07zm3.648 0v12.07l2.734 0.2422c25.96 2.311 46.41 24.24 46.41 50.91 0 26.67-20.45 48.6-46.41 50.91l-2.736 0.2422v12.07l3.24-0.2598c32.38-2.604 57.94-29.86 57.94-62.96 0-33.1-25.55-60.36-57.94-62.96l-3.24-0.2598zm-12.8 42.91v35.61h5.367v-35.61h-5.367zm19.27 0.6055c-0.995 0-1.749 0.2712-2.262 0.7852-0.512 0.514-0.7832 1.239-0.7832 2.207 0 0.906 0.2402 1.632 0.7832 2.176 0.542 0.514 1.299 0.7852 2.264 0.7852 0.934 0 1.687-0.2712 2.199-0.7852 0.513-0.544 0.7832-1.27 0.7832-2.176 0-0.937-0.2702-1.693-0.7832-2.207-0.512-0.514-1.266-0.7852-2.201-0.7852zm-35.31 9.219c-3.95 0-6.934 1.148-9.014 3.445-2.081 2.297-3.107 5.562-3.107 9.824 0 4.172 0.9963 7.374 2.986 9.611s4.883 3.355 8.713 3.355c1.538 0 2.865-0.1216 3.951-0.3926 1.085-0.243 2.109-0.635 3.074-1.209v-4.686c-2.141 1.179-4.401 1.783-6.783 1.783-2.111 0-3.71-0.7265-4.795-2.146-1.085-1.451-1.627-3.567-1.627-6.408 0-5.803 2.171-8.705 6.543-8.705 1.477 0 3.345 0.4531 5.607 1.33l1.627-4.322c-2.111-0.997-4.523-1.48-7.176-1.48zm57.23 0.03125c-3.015 0-5.365 0.5713-7.115 1.781-1.748 1.209-2.623 2.872-2.623 5.049 0 1.783 0.5121 3.264 1.537 4.383 1.025 1.118 3.015 2.267 5.91 3.385 1.507 0.574 2.654 1.089 3.498 1.543 0.844 0.453 1.447 0.9061 1.809 1.33 0.362 0.422 0.543 0.9666 0.543 1.602 0 1.995-1.658 2.992-4.945 2.992-2.563 0-5.337-0.6947-8.291-2.055v4.654c2.05 1.027 4.732 1.541 8.109 1.541 3.347 0 5.909-0.6348 7.719-1.965 1.779-1.33 2.684-3.204 2.684-5.062s-0.2404-2.917-0.6934-3.764c-0.482-0.877-1.176-1.661-2.111-2.326-0.965-0.665-2.473-1.391-4.553-2.207-2.472-0.967-4.1-1.724-4.824-2.268-0.753-0.575-1.115-1.239-1.115-2.025 0-1.602 1.418-2.418 4.252-2.418 1.869 0 4.16 0.5734 6.873 1.691l1.75-4.049c-2.653-1.209-5.457-1.812-8.412-1.812zm-24.63 0.4238v28.26c0 2.6-1.147 3.9-3.438 3.9-1.069-0.002791-2.134-0.1458-3.166-0.4238v4.262c1.055 0.393 2.412 0.5737 4.492 0.5742 2.08 5e-4 4.041-0.6634 5.428-2.023 1.356-1.33 2.051-3.326 2.051-5.926v-28.62h-5.367z"/></svg>
|
After Width: | Height: | Size: 2.2 KiB |
1
src/glyphs/devicons/fixed/cosmosdb-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg width="128" height="128" version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m17.44 6.434c-2.171 0.4727-1.047 3.211-1.788 4.711-1.508 6.297-7.651 11.14-14.14 11.05-2.144-0.1335-1.657 3.006 0.3353 2.609 6.694 0.02981 12.9 5.362 14 11.96 0.1725 1.383 0.002265 4.625 2.281 3.614 1.086-1.238 0.3327-3.135 1.001-4.596 1.527-6.121 7.383-10.85 13.71-10.96 1.968 0.5202 2.63-2.37 0.5628-2.664-3.137 0.2079-6.294-1.001-8.812-2.853-3.665-2.653-5.892-7.074-5.927-11.59 0.06251-0.672-0.5714-1.261-1.22-1.273zm94.43 18.07c-9.492-0.06619-18.69 2.764-27.54 5.91-11.07-6.14-24.91-6.257-36.45-1.335-7.448 3.122-13.98 8.437-18.38 15.22-4.732 6.837-6.872 15.16-7.391 23.37-7.044 6.433-13.79 13.52-18.04 22.16-2.022 4.213-3.445 9.186-1.862 13.78 1.386 3.725 5.024 6.12 8.766 7.026 6.83 1.841 13.97 0.5902 20.78-0.6916 2.532-0.5624 5.032-1.276 7.539-1.939 2.113-0.7514 4.226-1.503 6.339-2.254 10.41 5.211 22.98 5.99 33.88 1.861 12.43-4.48 22.43-15.17 25.95-27.92 1.029-3.635 1.559-7.412 1.557-11.19 7.309-6.804 14.64-14.03 18.94-23.19 1.865-4.075 2.956-8.979 1.032-13.24-1.812-4.127-6.183-6.495-10.48-7.149-1.529-0.2724-3.081-0.3961-4.632-0.424zm-31.61 7.256h4.02c10.61 5.691 18.43 16.29 20.74 28.11-0.4632 1.999-1.905 3.933-4.06 4.219-2.447 0.319-4.927 0.07008-7.39 0.1467-8.861-0.02062-17.72 0.05358-26.58-0.04085-5.554-0.4102-10.39-5.322-10.57-10.92-0.3442-5.45 3.714-10.78 9.086-11.84 2.356-0.4944 4.776-0.1784 7.155-0.3146 0.5219-1.216-0.4845-2.862 0.3857-4.185 0.9782-3.024 4.026-5.25 7.217-5.179zm30.89 0.3496c2.866 0.0774 6.138 0.1912 8.317 2.311 1.405 1.82 0.7253 4.311 0.04532 6.284-2.168 5.759-6.223 10.54-10.32 15.03-1.028 1.092-2.084 2.159-3.152 3.212-1.926-8.969-6.879-17.26-13.87-23.2 6.141-1.97 12.49-3.558 18.97-3.631zm-87 28.37c3.967 0.02148 7.937-0.04516 11.9 0.03758 5.38 0.4506 10.06 5.311 10.04 10.75 0.1152 1.139-0.8983 3.4 1.059 2.824 3.755-0.07778 7.549 1.693 9.638 4.861 2.57 3.647 2.629 8.87-0.01615 12.49-2.347 3.302-6.48 5.147-10.5 4.827h-11.49c-8.959-9.319-13.25-23.08-10.63-35.8zm59.53 12.34h5.793c-2.793 1.958-5.512 4.024-8.355 5.908-2.292 1.464-4.584 2.928-6.875 4.393-0.8132-5.257 3.924-10.34 9.166-10.3zm18.15 0h3.73c-1.47 11.99-8.313 23.45-18.71 29.78-1.741 0.9174-3.493 2.152-5.451 2.424-2.837 0.03542-5.916 0.2394-8.382-1.443-2.827-1.755-4.627-5.103-4.388-8.44 11.73-6.376 22.94-13.75 33.2-22.32zm4.838 0c0.07472 0.931-0.3015 1.396 0 0zm-0.1524 1.469c-0.1858 1.542-0.8892 4.495-1.108 5.135 0.4652-1.693 0.8171-3.405 1.108-5.135zm-83.17 2.605c0.5407 2.034 0.988 4.097 1.802 6.045l0.6259 1.707c-0.4572-0.9743 0.8198 1.966 1.132 2.475 2.551 5.1 6.204 9.626 10.55 13.3-7.02 2.156-14.32 4.103-21.73 3.615-2.283-0.1996-4.988-0.7398-6.24-2.876-1.131-2.437-0.01759-5.174 1.001-7.447 2.936-6.116 7.577-11.19 12.27-16 0.5158-0.7736 0.7129-0.4454 0.7964 0.3245-0.06494-0.3829-0.1728-0.7583-0.2151-1.145zm2.16 7.141c-0.2815-0.6618-0.8672-2.241-0.2589-0.6402l0.1282 0.3206zm79.75-4.047c-0.5333 1.788-1.183 3.542-1.953 5.242 0.7423-1.715 1.392-3.459 1.953-5.242zm-2.373 6.109c-0.6081 1.279-1.565 3.048-2.175 3.915 0.6926-1.323 1.442-2.615 2.175-3.915zm-76.27 0.3691c0.5885 1.077 1.177 2.155 1.766 3.232-0.6379-1.05-1.224-2.13-1.766-3.232zm72.91 5.4c-0.3867 0.577-1.623 2.208-1.558 2.053 0.5126-0.6892 1.036-1.37 1.558-2.053zm-69.16 0.7949c0.4254 0.5654 0.7338 0.9862 0 0zm78.23 9.67c-1.515 1.295-0.6006 3.736-2.006 5.197-1.564 2.62-4.564 4.326-7.62 4.282-1.873 0.7944 0.7019 2.038 1.723 1.665 3.98 0.7074 7.217 4.488 7.136 8.557 0.8193 1.901 2.041-0.6102 1.701-1.679 0.7599-4.017 4.65-7.143 8.735-7.042 1.587-0.598-0.2672-2.099-1.324-1.582-4.152-0.5236-7.637-4.377-7.572-8.592-0.02825-0.4082-0.307-0.8572-0.7729-0.807z"/></svg>
|
After Width: | Height: | Size: 3.6 KiB |
1
src/glyphs/devicons/fixed/datagrip-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m73.16 5.484-11.69 9.701-55.98-8.869v53.18l14.07 11.22-13.06 39.27 78.07 12.53 5.973-21.59h-33.07c-2.47e-4 0.00105 2.36e-4 0.00285 0 0.00391l-0.003906-0.00391h-30.54c-5e-6 -24.72 0-49.43 0-74.15h74.14v65.57l5.973 2.053 1.68-14.81 13.79-8.014-7.461-47.91zm-45.23 22.29v72.15h72.14v-72.15zm53.48 8.48c3.782 0.1704 7.412 1.629 10.27 4.162l-4.191 5.061c-2.132-2.024-4.975-3.129-7.914-3.074-4.875 0-8.703 4.294-8.703 9.439v0.08203c0 5.535 3.816 9.609 9.18 9.609 2.234 0.07294 4.434-0.5591 6.289-1.807v-4.34h-6.703v-5.752h13.15v13.15c-3.589 3.114-8.186 4.822-12.94 4.805-9.433 0-15.92-6.645-15.95-15.53-0.03319-8.887 7.132-15.97 15.88-15.8 0.5675-0.03426 1.145-0.01169 1.631-0.005859zm-34.75 0.5273c9.508 0 16.09 6.537 16.09 15.11 0 8.57-6.586 15.17-16.09 15.17h-11.81v-30.28zm-5.156 6.012v18.29h5.156c5.124 0.2971 9.374-3.916 9.379-9.108 0.004884-5.192-4.235-9.436-9.379-9.179zm-7.352 43.9h27.43v4.57h-27.43z"/></svg>
|
After Width: | Height: | Size: 998 B |
1
src/glyphs/devicons/fixed/electron-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m64.08 9c-3.897-1.248e-4 -7.057 3.159-7.057 7.057-1.25e-4 3.897 3.159 7.057 7.057 7.057 2.625-4.93e-4 5.032-1.458 6.25-3.783 10.18 5.802 17.67 25.06 17.67 47.46 0.0669 8.947-1.207 17.85-3.779 26.42-0.5056 1.829 2.181 2.67 2.809 0.8789h-0.0293c2.66-8.854 3.978-18.06 3.91-27.3 0-23.78-8.111-44.34-19.78-50.39 0.006079-0.1151 0.009335-0.2304 0.009766-0.3457 1.25e-4 -3.897-3.159-7.057-7.057-7.057zm0 2.977c2.253 2.25e-4 4.08 1.827 4.08 4.08-2.25e-4 2.253-1.827 4.08-4.08 4.08-2.253-2.25e-4 -4.08-1.827-4.08-4.08 2.24e-4 -2.253 1.827-4.08 4.08-4.08zm-25.16 19.72c-9.467 0.03469-16.7 3.053-20.1 8.963-3.38 5.85-2.41 13.61 2.34 21.9a1.476 1.476 0 0 0 2.561-1.471c-4.28-7.47-5.122-14.17-2.352-19 3.76-6.51 13.89-8.999 27.17-6.539a1.474 1.474 0 1 0 0.5312-2.9v0.009765c-3.592-0.655-6.997-0.9745-10.15-0.9629zm50.62 0.08203a1.476 1.476 0 0 0 0 2.951c8.4 0.11 14.45 2.729 17.18 7.449 3.75 6.5 0.8189 16.47-7.871 26.74a1.473 1.473 0 0 0 2.25 1.9l-0.03906-0.009765c9.41-11.11 12.69-22.29 8.17-30.11-3.32-5.76-10.35-8.8-19.69-8.92zm-12.65 1.34v0.03125a92 92 0 0 0-26.25 10.4c-20.96 12.13-34.82 29.8-33.75 42.98a7.056 7.056 0 0 0-3.572 6.117 7.056 7.056 0 0 0 7.057 7.057 7.056 7.056 0 0 0 7.057-7.057 7.056 7.056 0 0 0-7.057-7.057 7.056 7.056 0 0 0-0.5078 0.03711c-0.5006-11.72 12.52-28.13 32.24-39.52a89.07 89.07 0 0 1 25.4-10.11 1.473 1.473 0 1 0-0.6191-2.881zm-12.95 28.57c-2.867 0.03652-5.195 2.471-5.016 5.41 0.1913 3.135 3.144 5.355 6.209 4.666 2.736-0.6128 4.464-3.319 3.869-6.059-0.4699-2.162-2.28-3.775-4.482-3.992-0.1954-0.01944-0.3889-0.02783-0.5801-0.02539zm-34.15 8.449a1.479 1.479 0 0 0-1.152 2.477v-0.009766a92.2 92.2 0 0 0 22 17.34c20.24 11.66 41.72 15.06 53.02 8.406a7.056 7.056 0 0 0 4.031 1.281 7.056 7.056 0 0 0 7.057-7.057 7.056 7.056 0 0 0-7.057-7.057 7.056 7.056 0 0 0-7.057 7.057 7.056 7.056 0 0 0 0.9746 3.547c-10.35 5.58-30.48 2.288-49.53-8.736a89.27 89.27 0 0 1-21.26-16.77 1.479 1.479 0 0 0-1.027-0.4766zm77.9 18.36a4.08 4.08 0 0 1 4.08 4.08 4.08 4.08 0 0 1-4.08 4.08 4.08 4.08 0 0 1-4.08-4.08 4.08 4.08 0 0 1 4.08-4.08zm-87.31 0.06836a4.08 4.08 0 0 1 4.08 4.08 4.08 4.08 0 0 1-4.08 4.08 4.08 4.08 0 0 1-4.08-4.08 4.08 4.08 0 0 1 4.08-4.08zm23.14 6.221c-0.191-0.01026-0.3869 0.01694-0.5781 0.08594-0.7647 0.2762-1.161 1.12-0.8848 1.885l-0.05078 0.01953c5 13.73 13 22.22 22.05 22.22 6.6 0 12.7-4.5 17.46-12.42 1.082-1.68-1.463-3.281-2.51-1.58-4.28 7.12-9.529 11-14.94 11-7.52 0-14.69-7.54-19.24-20.24-0.2072-0.5735-0.7337-0.9399-1.307-0.9707z"/></svg>
|
After Width: | Height: | Size: 2.5 KiB |
1
src/glyphs/devicons/fixed/figma-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m45.5 0c-11.9 0-21.5 9.6-21.5 21.5 0 11.9 9.6 21.5 21.5 21.5-11.9 0-21.5 9.6-21.5 21.5s9.6 21.5 21.5 21.5c-11.9 0-21.5 9.6-21.5 21.5 0 11.9 9.6 21.5 21.5 21.5s21.5-9.6 21.5-21.5v-21.5-21.5-21.5h21.5c11.9 0 21.5-9.6 21.5-21.5 0-11.9-9.6-21.5-21.5-21.5h-21.5-21.5zm43 43c-11.9 0-21.5 9.6-21.5 21.5s9.6 21.5 21.5 21.5c11.9 0 21.5-9.6 21.5-21.5s-9.6-21.5-21.5-21.5z"/></svg>
|
After Width: | Height: | Size: 456 B |
1
src/glyphs/devicons/fixed/goland-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m38.3 5.484-32.82 50.2 9.496 23.06-9.496 21.05 43.84 22.71 12.33-12.72c7.52e-4 4.6e-4 36.99 12.72 36.99 12.72l23.87-40.84-13.95-30.92 13.95-20.42-21.45 5.094v65.65h-74.14v-74.14h58.34l-4.92-21.45zm-10.37 22.45v72.14h72.14v-72.14zm21.74 8.635c3.768 0.1712 7.384 1.622 10.24 4.139l-4.18 5.047c-2.12-2.026-4.954-3.134-7.887-3.082-4.875 0-8.711 3.768-8.668 9.629 0 5.363 3.793 9.41 9.145 9.41 2.217 0.066 4.402-0.5704 6.238-1.816v-4.34h-6.68v-5.727h13.08v13.09c-3.575 3.102-8.153 4.805-12.89 4.793-9.375 0-15.84-6.598-15.84-15.52 0.1091-4.412 2.101-8.617 4.633-11.18 2.978-2.922 7.008-4.52 11.18-4.434 0.5427-0.02838 1.085-0.03032 1.623-0.005859zm30.17-0.0222c9.3 0 15.98 6.938 15.99 15.67 0.007072 8.731-7.272 15.8-16.07 15.53-9.313-0.06-15.99-6.995-15.99-15.58-0.03924-4.252 2.175-8.671 4.758-11.25 3.029-2.925 7.112-4.501 11.32-4.371zm-0.08984 6.126c-2.455-0.007425-4.807 0.9839-6.516 2.746-1.707 1.764-2.621 4.148-2.617 6.619 0.004086 2.471 0.9251 4.96 2.648 6.748 1.723 1.789 4.098 2.801 6.582 2.805 2.461 0.004691 4.817-0.9957 6.523-2.77 1.707-1.774 2.614-4.169 2.599-6.678-0.01439-2.508-0.9417-4.906-2.662-6.682-1.719-1.778-4.085-2.784-6.559-2.789zm-45.46 44.19h27.43v4.574h-27.43z"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
src/glyphs/devicons/fixed/googlecloud-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m64.5 14.4c-4.31 0.0131-8.652 0.6387-12.9 1.904-15.01 4.473-26.56 16.36-30.82 31.43-6.152 4.022-10.96 9.904-13.48 16.97-4.8 13.6-0.00116 28.5 11.8 37.3l0.07227-0.06836c5.842 3.955 12.75 6.068 19.93 6.068l-0.09961-0.09961h26.3v-0.09961h24c14.6 0.1 27.5-9.302 31.8-23.1s-1-28.8-13-36.9c-2.245-8.297-6.877-15.83-13.33-21.67l0.0293-0.0293v-0.2988c-8.481-7.475-19.29-11.44-30.3-11.4zm0.7168 20.23c5.223 0.08523 10.44 1.795 14.87 5.189l-0.08203 0.08008c6 4.9 9.501 12.3 9.301 20v2.5c16.9 0 16.9 25.2 0 25.2h-25.4v0.09961h-24.9c-1.81 0-3.529-0.366-5.158-1.006-7.866-4.03-9.516-14.31-3.143-20.39 6.6-6.4 17.8-4.401 21.7 3.799l15.6-14.9c-5.331-6.705-13.08-11.19-21.6-12.61 5.039-5.359 11.92-8.071 18.82-7.959z"/></svg>
|
After Width: | Height: | Size: 795 B |
1
src/glyphs/devicons/fixed/graphql-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m64 1.344a11.16 11.16 0 0 0-11.17 11.17 11.16 11.16 0 0 0 0.498 3.154l-25.82 14.91c-0.7231-0.764-1.561-1.442-2.518-1.998-5.344-3.07-12.19-1.246-15.27 4.098-3.071 5.344-1.246 12.19 4.098 15.27 0.9542 0.5483 1.957 0.9337 2.977 1.178v29.78c-1.008 0.2444-2 0.6271-2.945 1.17-5.343 3.106-7.169 9.922-4.094 15.27 3.07 5.344 9.887 7.168 15.26 4.098 0.9465-0.5501 1.776-1.22 2.494-1.975l25.81 14.9a11.16 11.16 0 0 0-0.4941 3.135 11.16 11.16 0 0 0 11.17 11.17c6.176 0 11.17-5.023 11.17-11.17a11.16 11.16 0 0 0-0.5742-3.512l25.63-14.8c0.7742 0.8699 1.692 1.636 2.756 2.248 5.343 3.07 12.19 1.246 15.26-4.098 3.106-5.344 1.281-12.16-4.094-15.27-0.9444-0.5427-1.936-0.9254-2.945-1.17v-29.78c1.02-0.2439 2.022-0.6296 2.977-1.178 5.344-3.106 7.168-9.922 4.098-15.27-3.105-5.344-9.922-7.168-15.27-4.098-0.9616 0.5589-1.804 1.241-2.529 2.01l-25.79-14.89a11.16 11.16 0 0 0 0.4785-3.184 11.16 11.16 0 0 0-11.17-11.17zm-7.912 18.86a11.16 11.16 0 0 0 0.2676 0.2676l-33.81 58.55c-0.144-0.0418-0.288-0.08118-0.4336-0.1172v-29.82c2.842-0.7071 5.404-2.514 6.977-5.248 1.569-2.731 1.853-5.844 1.049-8.652l25.95-14.98zm15.93 0.07812 25.84 14.92c-0.7976 2.804-0.5128 5.91 1.053 8.635 1.573 2.734 4.135 4.541 6.977 5.248v29.82c-0.1428 0.03511-0.2844 0.07261-0.4258 0.1133l-33.74-58.44a11.16 11.16 0 0 0 0.2988-0.293zm-11.1 2.912a11.16 11.16 0 0 0 3.084 0.4844 11.16 11.16 0 0 0 3.111-0.457l33.74 58.44c-0.7551 0.7197-1.424 1.552-1.971 2.502-0.5425 0.9444-0.9235 1.936-1.168 2.945h-67.42c-0.2444-1.008-0.6251-2-1.168-2.945-0.5482-0.9432-1.216-1.77-1.967-2.486l33.76-58.48zm-30.64 69.22h67.45c0.06017 0.2451 0.1325 0.4861 0.209 0.7266l-25.69 14.83a11.16 11.16 0 0 0-8.244-3.652 11.16 11.16 0 0 0-7.924 3.486l-25.92-14.96c0.04125-0.1425 0.0777-0.2856 0.1133-0.4297z"/></svg>
|
After Width: | Height: | Size: 1.8 KiB |
1
src/glyphs/devicons/fixed/hardhat-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m47.57 22.01c-0.813 0.239-1.54 0.7-2.1 1.334-0.5577 0.6301-0.9231 1.407-1.053 2.238l-0.2383 1.443c-11.34 4.029-21.16 11.45-28.13 21.26-6.938 9.763-10.67 21.44-10.67 33.42v7.766c-3.439 0.99-5.355 2.077-5.355 3.225v6.213c-0.009101 0.7368 0.09338 0.8367 0.2344 1.039 2.815 4.119 30.31 8.418 63.77 8.418 33.53 0 61.03-4.344 63.75-8.453 0.2236-0.4121 0.2122-0.6664 0.2188-1.012v-6.213c0-1.155-1.945-2.255-5.432-3.248l0.08594-7.732c-0.00414-11.93-3.703-23.56-10.59-33.29-6.918-9.781-16.67-17.21-27.94-21.27l-0.25-1.551c-0.1294-0.8298-0.4926-1.605-1.047-2.236-0.5569-0.6333-1.281-1.096-2.09-1.336-5.389-1.567-10.97-2.363-16.58-2.364-5.611-9.76e-4 -11.19 0.7947-16.58 2.362zm16.44 15.88 13.72 23.15-13.72 8.434-13.72-8.439s13.72-23.14 13.72-23.15zm13.72 27.72c0 8e-3 -13.72 19.46-13.72 19.46l-13.72-19.45 13.72 8.436z"/></svg>
|
After Width: | Height: | Size: 904 B |
1
src/glyphs/devicons/fixed/hibernate-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m98.75 124.2"/><path d="m30.67 3.303 23.17 40.13h46.35l-23.19-40.13h-46.33zm-1.42 0.4629-23.17 40.13 23.16 40.19 23.18-40.19-23.17-40.13zm71.38 40.52-23.18 40.19 23.17 40.13 23.17-40.13-23.16-40.19zm-70.96 40.65 23.2 40.13h46.34l-23.16-40.13h-46.38z"/></svg>
|
After Width: | Height: | Size: 344 B |
1
src/glyphs/devicons/fixed/homebrew-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m42.13 0.01758c-1.683 1.079-1.33 3.61-1.391 5.418 0.3826 5.392 3.688 10.12 7.504 13.73-4.297-0.4007-8.615 1.296-11.9 4.022-3.593 3.07-5.906 7.471-6.944 12.04-0.3537 1.768-0.451 3.58-0.3719 5.378-3.663 0.9321-6.418 4.581-6.172 8.376 0.1043 3.691 2.946 7.039 6.535 7.835 0.04572 21.42 0.09208 42.84 0.1367 64.26 0.00281 2.449 2.524 3.181 4.367 3.881 6.265 2.091 12.91 2.657 19.47 2.948 8.679 0.2725 17.51 0.06512 25.93-2.28 2.501-0.7492 5.018-1.65 7.142-3.205 1.731-1.706 0.907-4.224 1.108-6.373 0.1318-1.68-0.2729-3.47 0.2316-5.074 1.32-0.4724 2.802-0.06515 4.189-0.19 3.973 0.1275 8.473-0.06484 11.03-3.655 2.095-2.342 2.192-5.495 2.136-8.44v-28.6c0.1814-5.641-5.176-10.22-10.65-9.738h-6.171c-1.075-0.1681-0.6919-1.313-0.7637-2.057 0.02647-0.5782-0.05181-1.237 0.03711-1.767 4.961-0.4937 8.359-6.012 6.894-10.65-0.9132-3.229-3.93-5.722-7.279-5.986-0.05275-4.725-1.043-9.575-3.752-13.52-2.847-4.071-7.479-7.21-12.56-7.291-2.415-0.1137-4.679 0.8288-6.823 1.822-1.057 0.3687-3.081 1.39-2.437-0.5378 0.3251-3.697 2.284-7.177 5.166-9.491 0.8744-1.323-0.846-2.395-1.554-3.357-1.292-1.684-4.015-2.382-4.958 0.5243-1.47 1.26-2.838 4.244-3.652 5.419-1.288-4.422-4.408-8.159-8.302-10.56-1.758-1.12-3.641-2.033-5.573-2.81l-0.627-0.06641zm1.037 2.775c4.315 1.884 8.524 4.798 10.48 9.236 1.36 2.976 1.739 6.283 1.791 9.523-4.714-2.653-8.892-6.571-11.18-11.53-1.008-2.251-1.492-4.776-1.093-7.23zm19.76 5.84c1.043 0.6163 1.915 1.55 0.4769 2.321-2.981 3.23-4.565 7.721-4.114 12.11 0.6739 1.814 2.984 0.7732 4.389 0.4624 2.302-0.7946 4.447-2.298 6.981-2.168 4.135 0.01526 7.862 2.53 10.42 5.622 2.392 3.082 3.568 6.945 3.769 10.81-0.02155 1.058 0.5931 2.62-1.03 2.53-1.47 1.187-1.537-1.188-2.498-1.922-2.712-3.464-7.754-4.802-11.82-3.097-3.004 1.19-5.353 3.87-6.161 6.996-2.537-3.105-7.153-4.356-10.84-2.664-1.087 0.259-2.404 1.77-3.004 1.776-0.6411-4.542-4.756-8.291-9.355-8.423-3.419-0.201-6.858 1.559-8.73 4.426 0.3515-3.651 1.895-7.133 4.048-10.08 2.62-3.53 6.882-5.726 11.25-5.993 3.484-0.02317 6.495 2.155 9.906 2.513 2.28-0.7826-0.03205-3.916 0.9763-5.518 0.569-3.72 2.695-7.096 5.332-9.703zm-23.25 26.62c5.523-0.2066 9.168 6.003 7.236 10.92 0.853 2.14 3.007-0.3276 3.002-1.594 2.911-5.207 11.59-4.14 13.16 1.617 1.21 2.238 3.325-0.9383 2.256-2.397 0.5494-6.291 9.176-9.309 13.54-4.745 1.41 0.9379 1.536 2.645 2.446 3.906 1.845 0.9639 3.553-1.366 5.52-0.8119 3.51 0.105 6.346 3.715 5.608 7.16-0.5061 3.796-4.507 5.115-7.749 5.619l-3.108 1.063-3.164 0.8819c-1.473 0.5431-0.6878 2.552-1.645 3.547-1.362 2.327-1.249 4.669-1.282 7.042-0.2229 2.442-3.844 3.089-5.354 1.434-1.292-1.748-0.611-4.734-2.95-5.871-1.677-0.7915-2.262-2.568-3.276-3.937-1.847-0.3799-3.794-0.008661-5.684-0.1598-7.964-0.1986-15.93-1.227-23.64-3.243-2.686-0.7483-6.356-0.7832-8.185-3.353-2.465-3.009-1.115-8.203 2.709-9.422 1.986 0.1379 3.739-1.199 3.649-3.356 1.242-2.596 4.034-4.333 6.911-4.301zm45.59 21.89c0.07837 1.572-0.3482 3.326 0.8998 4.59 1.362 1.276 3.223 0.8067 4.894 0.8984 2.093 0.05304 4.204-0.1627 6.273 0.254 3.721 0.8604 5.789 4.662 5.523 8.26v29.89c0.1748 5.008-4.794 8.013-9.292 7.453-1.727-7.2e-4 -3.454-0.00643-5.181-0.02911-3.225-0.03819-3.251 3.451-3.116 5.776-0.001274 1.944-0.001213 3.888-0.009313 5.832-0.6601 1.316-2.343 1.668-3.599 2.293-6.903 2.622-14.38 3.215-21.71 3.34-7.847 0.02063-15.79-0.3511-23.41-2.362-1.495-0.4276-2.998-0.8931-4.367-1.642-0.588-0.5824-0.2686-1.482-0.3531-2.231l-0.1352-62.16c4.511 1.213 9.081 2.225 13.71 2.844 5.683 0.7912 11.43 1.164 17.17 1.023 0.7682 1.641 2.13 3.031 3.619 3.946 1.553 1.726 0.4885 4.74 2.996 5.935 2.732 2.123 7.542 0.9103 8.435-2.568 0.4615-1.797-0.19-3.712 0.5457-5.478 0.7267-1.262 1.108-2.993 1.69-4.178 1.828-0.4832 3.642-1.025 5.415-1.682zm-49.22 5.412v51.16c0.2995 2.106 2.745 2.272 4.34 2.991 7.223 2.313 14.92 2.831 22.45 2.437 5.977-0.4224 12.08-1.573 17.33-4.59 1.431-1.238 0.6853-3.255 0.8746-4.905 0.003685-12.95 0.004016-25.91 0.004299-38.86-2.459 6.857-13.1 7.314-16.57 1.098-1.533-1.523-0.5186-4.379-2.895-5.211l-1.223-1.359c-5.056-0.007905-10.12-0.3249-15.12-1.059 0.1314 1.481 0.02345 2.985 0.05859 4.476-0.007724 13.94 0.01544 27.88-0.01156 41.81-0.1366 3.194-5.499 3.053-5.252-0.3303v-45.67l0.2031-1.006c-0.9123-0.4784-3.183-0.5038-4.186-0.9863zm52.76 5.439c-2.578-0.09129-3.742 2.482-3.531 4.671v26.64c-0.09231 2.58 2.484 3.742 4.672 3.531h4.941c2.531 0.09348 3.745-2.428 3.531-4.596v-26.71c0.09035-2.579-2.484-3.742-4.672-3.531zm0 2.289h6.082c1.342 0.0288 1.275 1.435 1.242 2.381v26.64c0.01283 1.184-1.256 1.326-2.155 1.244h-5.167c-1.281-2e-4 -1.293-1.376-1.244-2.307v-26.72c-0.02578-0.6733 0.5942-1.256 1.242-1.242z"/></svg>
|
After Width: | Height: | Size: 4.6 KiB |
1
src/glyphs/devicons/fixed/intellij-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m21.91 5.484-16.95 46.36 11.45 3.83-10.13 18.76 17.21 13.59-1.584 5.305-7.508 26.29 35.85-12.96 24.55 15.85 45.08-18.06 2.105-67.78-36.81-29.28-14.14 15.9-10.83-13.29-38.3-4.523zm5.023 21.45h74.14l-0.00195 30.26 0.00195-0.001953v43.89h-74.14v-74.14zm1 1v72.14h72.14v-72.14h-72.14zm38.88 8.641h6.094v17.86c0.02746 1.446-0.1986 2.886-0.668 4.254-0.8129 2.305-2.646 4.106-4.965 4.879-1.3 0.4379-2.664 0.6525-4.035 0.6328l0.08594 0.04688c-1.859 0.0611-3.703-0.3585-5.352-1.219-1.356-0.7273-2.563-1.703-3.559-2.875l3.766-4.207c0.687 0.778 1.484 1.45 2.367 2 0.7861 0.4885 1.696 0.7423 2.621 0.7305 1.001 0.05022 1.974-0.3363 2.668-1.059 0.7348-0.9923 1.082-2.219 0.9766-3.449v-17.59zm-30.21 0.02734h13.64v4.996h-3.816v17.26h3.816v5h-13.64v-5h3.824v-17.26h-3.824v-4.996zm-0.05078 50.15h27.43v4.574h-27.43v-4.574z"/></svg>
|
After Width: | Height: | Size: 901 B |
1
src/glyphs/devicons/fixed/jetbrains-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m54 0c-0.4 0-0.7-3.905e-4 -1 0.09961h-0.3008c-1.4 0.2-2.599 0.7-3.699 1.5l-42.3 25.6c-1.2 0.6-2.299 1.5-3.199 2.5l-0.1992 0.2012c-0.3 0.3-0.5008 0.6004-0.8008 0.9004-0.1 0.1-0.1992 0.1988-0.1992 0.2988-0.2 0.4-0.5012 0.6996-0.7012 1.1 0 0.1-0.09961 0.1016-0.09961 0.1016-0.2 0.4-0.3996 0.8988-0.5996 1.299 0 0.1-0.09961 0.2008-0.09961 0.3008-0.1 0.3-0.2008 0.6996-0.3008 1.1 0 0.2-0.09961 0.3-0.09961 0.5-0.1 0.3-0.1012 0.7-0.2012 1 0 0.2-0.09961 0.3-0.09961 0.5-0.1 0.5-0.09961 1-0.09961 1.5 0 0.4-3.905e-4 0.7992 0.09961 1.199v0.4004c0 0.3 0.09961 0.5008 0.09961 0.8008 0 0.1 0.1016 0.3004 0.1016 0.4004 0.1 0.2 0.09922 0.4992 0.1992 0.6992 0 0.1 0.09961 0.3004 0.09961 0.4004 0.1 0.2 0.2008 0.4992 0.3008 0.6992 0.1 0.3 0.2004 0.6004 0.4004 0.9004 0.1 0.1 0.09922 0.3004 0.1992 0.4004 0.1 0.2 0.2004 0.3992 0.4004 0.6992 0 0.1 0.09961 0.2012 0.09961 0.2012 0.2 0.2 0.3 0.4992 0.5 0.6992 1.7 2.3 4.1 4.001 7 4.801l28.9 8.799v29.9h29.5l-29 14.2c-4.3 2.2-7 6.6-7 11.4 0 7.1 5.699 12.8 12.8 12.8 2.8 0 5.3-0.9004 7.4-2.4l73.1-50.1c1.6-1.1 2.701-3.001 2.701-5.201 0-1.9-0.8-3.499-2-4.699l-65.2-62.8c-1.7-1.6-4-2.699-6.6-2.699h-0.09961zm0 21.4 20.1 17h-35.7v5l-5.6-4.701 21.2-17.3zm-4.1 23.3h6.4v1.9h-4.201v1.201h3.801v1.799h-3.801v1.301h4.301v1.9h-6.5v-0.1016-8zm7.199 0.1016h7v1.898h-2.4v6h-2.199v-6h-2.4v-1.898zm-10.4 0.09961h2.201v5.1c0 1-0.3008 1.701-0.8008 2.301-0.5 0.5-1.299 0.7988-2.199 0.7988-1.4-0.2-2.201-0.8-2.801-1.5l1.4-1.299c0.4 0.5 0.8008 0.6992 1.301 0.6992 0.5 0 0.8984-0.3996 0.8984-1.1v-5zm42.8 6.4 20.8 17.5-20.8 10.1v-27.6zm-28 4.5h2.1l3.4 8.1h-2.4l-0.5996-1.5h-3.1l-0.5996 1.5h-4.201l-1.6-2.4h-0.6992v2.4h-2.201v-8h3.5c1.2 0 2.1 0.2988 2.6 0.7988 0.5 0.5 0.7012 1.1 0.7012 1.9 0 1.2-0.5996 2-1.6 2.5l1.5 2.301c0.4-0.9 3.199-7.6 3.199-7.6zm5.801 0h2.199v8h-2.199v-8zm3.1 0h2.1l2.9 4.199v-4.199h2.199v8h-0.09961-1.9l-3-4.301v4.301h-2.199v-8zm10.9 0c1.4 0 2.399 0.3996 3.299 1.1l-1.1 1.6c-0.7-0.5-1.501-0.8008-2.301-0.8008-0.5 0-0.7988 0.2-0.7988 0.5 0 0.4 0.3004 0.5008 1.4 0.8008 1.9 0.2 3 0.8004 3 2.4 0 1.6-1.301 2.6-3.201 2.6-1.3 0-2.699-0.4008-3.699-1.301l1.199-1.5c0.8 0.6 1.7 1 2.6 1 0.6 0 0.9004-0.2 0.9004-0.5 0-0.3-0.3004-0.4988-1.4-0.7988-1.7-0.4-3-0.9-3-2.5 0-1.5 1.202-2.6 3.102-2.6zm-37.3 0.09961h3.801c1 0 1.699 0.2992 2.199 0.6992 0.3 0.3 0.5 0.8008 0.5 1.301 0 0.9-0.4992 1.499-1.199 1.799 1 0.3 1.6 0.9004 1.6 1.9 0 1.4-1.1 2.201-3 2.201h-3.9v-7.9zm2.199 1.699v1.4h1.102c0.6 0.1 1-0.1992 1-0.6992 0-0.5-0.3-0.7012-1-0.7012h-1.102zm7.602 0.2012v1.898h1.199c0.7 0 1.199-0.4 1.199-1 0-0.6-0.4992-0.8984-1.199-0.8984h-1.199zm8.699 0.6992-0.9004 2.199h1.801l-0.9004-2.199zm-16.4 2.1v1.5h1.4c0.7 0 1.1-0.1992 1.1-0.6992 0-0.5-0.2996-0.8008-1.1-0.8008h-1.4zm-2.199 19.3h19.2v3.199h-19.2v-3.199z"/></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
src/glyphs/devicons/fixed/karma-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m46.49 0.3906v37.63l15.17 72.28 3.535 17.12h9.75v-31.76l2.76-5.258 19.2 37.02h31.02l-34.78-66.42 31.82-60.61h-31.02l-19 36.29v-36.29h-28.46zm-46.49 39.18 14.75 70.3 14.37-17.5 22.97 35.05-14.75-70.3-0.01953 0.03906 0.01953-0.04297-14.36 17.51-22.98-35.05z"/></svg>
|
After Width: | Height: | Size: 350 B |
1
src/glyphs/devicons/fixed/kibana-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m12 0v115.2c33.34-38.38 66.66-76.77 100-115.2h-100zm58.04 66.62c-17.77 20.46-35.52 40.93-53.3 61.38h93.26c-4.644-23.24-18.02-44.55-36.77-59.01-1.045-0.8107-2.106-1.601-3.182-2.37z"/></svg>
|
After Width: | Height: | Size: 274 B |
1
src/glyphs/devicons/fixed/latex-original.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m27.4 41c-0.6 0-0.8 0.2008-1 0.8008l-8 20.3c-0.3 0.8-0.9 2.4-4 2.4v1.199h7.699v-1.199c-1.5 0-2.5-0.6992-2.5-1.699 0-0.2-3.9e-4 -0.3012 0.09961-0.7012l1.701-4.299h9.9l2 5.1c0.1 0.2 0.1992 0.3996 0.1992 0.5996 0 1-1.901 1-2.801 1v1.199h9.801v-1.199h-0.6992c-2.3 0-2.6-0.3008-2.9-1.301l-8.6-21.4c-0.2-0.6-0.3004-0.8008-0.9004-0.8008zm-25.4 0.9004v1.5h1.1c3.8 0 3.9 0.4988 3.9 2.299v26.1c0 1.8-0.1004 2.299-3.9 2.299h-1.1v1.5h25.8l1.398-12.6h-1.199c-0.5 5.1-1.2 11.3-10 11.3h-4c-2.3 0-2.4-0.3-2.4-2v-26.5c0-1.7 0.001177-2.4 4.701-2.4h1.6v-1.5c-1.9 0.1-6.3 0.09961-8.4 0.09961-1.9 0-5.8 3.91e-4 -7.5-0.09961zm89.8 0v1.5h0.8984c2.7 0 3.702 0.2992 4.602 1.699l9.1 13.8-8.1 12c-0.7 1-2.201 3.299-7.201 3.299v1.5h2.352c-1.15 6.586-2.731 9.801-10.65 9.801h-6.602c-2.3 0-2.398-0.3-2.398-2v-13.3h4.398c4.8 0 5.4 1.601 5.4 5.801h1.201v-13.1h-1.201c0 4.2-0.5004 5.799-5.4 5.799h-4.398v-12c0-1.6 0.09844-2 2.398-2h6.4c7.6 0 8.901 2.701 9.701 9.701h1.199l-1.4-11.2h-22.92l-0.9824-11h-30.3l-0.9004 11.1h1.199c0.7-8 1.4-9.701 9-9.701 0.9 0 2.201-3.9e-4 2.701 0.09961 1 0.2 1 0.7004 1 1.9v26.1c0 1.7-0.001177 2.4-5.201 2.4h-2v1.5c2-0.1 7.1-0.09961 9.4-0.09961 2.3 0 7.4-3.91e-4 9.5 0.09961v-1.5h-2c-5.2 0-5.199-0.7004-5.199-2.4v-26c0-1 3.91e-4 -1.698 0.9004-1.898 0.5-0.1 1.899-0.1016 2.799-0.1016 7.435 0 8.188 1.582 8.883 9.5h-3.783v1.5h1.102c3.8 0 3.898 0.5008 3.898 2.301v26c0 1.8-0.09844 2.301-3.898 2.301h-1.102v1.699h28.6l1.854-11.3h8.346v-1.5c-2.3 0-3.1-1.399-3.1-2.299 0-0.4 0.1-0.6012 0.5-1.201l7-10.4 7.9 11.9c0.1 0.2 0.1992 0.4 0.1992 0.5 0 0.6-1.099 1.4-3.199 1.5v1.5c1.7-0.1 5.399-0.09961 7.199-0.09961 2.1 0 4.4-3.9e-4 6.5 0.09961v-1.5h-0.9004c-2.6 0-3.599-0.1988-4.699-1.799l-10.5-15.8 6.799-10c1-1.6 2.701-3.199 7.201-3.199v-1.5h-11.9v1.5c2 0 3.1 1.099 3.1 2.299 0 0.5-0.1004 0.6016-0.4004 1.102l-5.699 8.398-6.4-9.6c-0.1-0.1-0.2988-0.4992-0.2988-0.6992 0-0.6 1.099-1.4 3.199-1.5v-1.5c-1.7 0.1-5.299 0.09961-7.199 0.09961-1.5 0-4.6 3.91e-4 -6.5-0.09961zm-65.4 3.5 4.4 11.3h-8.9l4.5-11.3z"/></svg>
|
After Width: | Height: | Size: 2 KiB |
1
src/glyphs/devicons/fixed/livewire-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg width="128" height="128" version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m62.77 2.559c-29.44 0-53.26 24.72-53.26 55.22a56.41 56.41 0 0 0 7.602 28.52c1.274 1.367 2.789 2.395 4.895 2.395 1.991 0 3.355-0.9013 4.473-2.158v4.092 8.9c0 4.11 3.374 7.41 7.484 7.41 4.203 0 7.531-3.3 7.531-7.41v-15.87c0.01691-0.3005 0.0283-0.5953 0.03906-0.8887 1.978 2.809 3.767 5.928 7.488 5.928 2.319 0 3.797-1.206 5.016-2.783v4.717 27.32c0 4.059 3.375 7.434 7.508 7.434h0.02344c4.155 0 7.531-3.375 7.531-7.434v-34.29-0.1758c1.801 2.596 3.589 5.215 6.992 5.215 2.073 0 3.474-0.9747 4.621-2.32v4.254 8.9c0 4.11 3.351 7.41 7.508 7.41 4.156 0 7.531-3.3 7.531-7.41v-15.87-0.709c1.104 1.574 2.178 3.199 3.559 4.328-0.0719 0.1072-0.1383 0.2152-0.2109 0.3223 1.032 0.683 2.254 1.098 3.473 1.098h0.125c0.09676 0 0.1854-0.01176 0.2793-0.01562 0.05505 0.001402 0.1023 0.01562 0.1582 0.01562 4.011 0 5.504-3.621 7.461-6.578 3.059-6.461 4.937-13.54 5.359-21.07 0.05998-1.045 0.08984-2.092 0.08984-3.141 0-0.02096-0.00193-0.04154-0.00195-0.0625 2e-5 -0.01969 0.00195-0.0389 0.00195-0.05859 0-30.5-23.86-55.22-53.28-55.22zm-2.816 14.38c14.5 0 26.27 13.84 26.27 28.98 0 15.07-7.75 25.63-26.27 25.63-18.54 0-26.41-10.56-26.41-25.63 0-15.14 11.86-28.98 26.41-28.98zm-7.09 8.242c-5.453 0-9.926 4.844-9.926 10.81 0 5.965 4.473 10.73 9.926 10.73 5.453 1e-6 9.832-4.769 9.832-10.73 0-5.969-4.379-10.81-9.832-10.81zm-1.637 3.328c2.665 0 4.938 2.273 4.938 5.012 0 2.738-2.273 4.941-4.938 4.941a4.93 4.93 0 0 1-4.941-4.941c0-2.739 2.203-5.012 4.941-5.012z" fill-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
1
src/glyphs/devicons/fixed/materializecss-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m34.07 31.28c-1.312 0.03892-2.099 1.345-2.679 2.371-1.757 3.501-2.61 7.362-3.579 11.13-1.86 7.634-3.291 15.37-4.683 23.1-0.04049 0.7718-0.1453 1.356-0.6543 0.468-1.031-1.192-2.54-1.99-4.14-1.938-2.864-0.07157-5.735-0.01088-8.602-0.03099-2.993 0.01518-5.988-0.03079-8.98 0.02378-1.632 0.02602 0.7453 0.3963 1.193 0.8832 2.506 1.428 3.843 4.17 4.949 6.712 1.909 4.539 2.525 9.45 3.472 14.24 0.5805 2.457 1.096 5.038 2.513 7.172 0.555 0.8976 1.547 1.367 2.586 1.222 5.861-0.02508 11.72-0.004781 17.58-0.01134 1.716-0.5567 2.372-2.588 3.085-4.094 1.975-5.131 3.037-10.55 4.214-15.91 1.234-5.83 2.259-11.75 3.333-17.58 0.6805 4.63 1.721 9.199 2.591 13.8 1.361 6.57 2.616 13.21 4.967 19.51 0.6513 1.54 1.313 3.312 2.821 4.206 0.4981 0.1063 0.9879 0.09545 0.9879 0.09545 6.186 0.08211 12.38 0.05336 18.56 0.037 1.629-0.9393 2.277-2.859 2.976-4.497 2.679-7.388 3.872-15.22 5.503-22.87l1.769-9.719c0.08745-0.3384 0.1885 0.7488 0.272 1.037 1.724 9.203 3.285 18.46 5.839 27.48 0.8897 2.74 1.598 5.721 3.604 7.894 1.167 1.075 2.906 0.4623 4.335 0.63 5.257-0.01469 10.51 0.03832 15.77-0.02503 2.701-2.211 3.828-5.732 4.404-9.058 0.4905-3.433 0.668-6.914 1.439-10.3 0.7442-3.386 1.98-6.901 4.935-9.015 0.9928-0.9939 2.395-1.149 3.539-1.833-3.273-0.08516-6.549-0.008569-9.823-0.033-2.985 0.02286-5.976-0.04789-8.958 0.0395-1.94 0.2568-3.435 1.746-4.277 3.432-0.4352 1.03-0.3983 0.007289-0.4932-0.5182-0.6421-4.417-1.561-8.791-2.383-13.18-1.339-6.556-2.57-13.17-4.783-19.51-0.7534-1.977-1.564-4.205-3.494-5.323-6.63 0.004285-13.26-0.03849-19.89 0-1.804 0.7184-2.488 2.725-3.204 4.371-1.583 4.073-2.342 8.398-3.356 12.63-1.337 6.028-2.433 12.1-3.538 18.18-2.093-9.795-3.496-19.79-6.585-29.35-0.7302-1.777-1.293-3.768-2.742-5.113-0.5246-0.5715-1.211-0.8263-1.967-0.7166-0.4758 0.01468-0.6295-0.06791-1.19-0.037-5.748-0.006505-11.5 0.01312-17.25-0.01z"/></svg>
|
After Width: | Height: | Size: 1.9 KiB |
1
src/glyphs/devicons/fixed/materialui-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m0.1992 13.4v55.2l15.9 9.201v-36.8l31.9 18.4 32-18.4v18.4l-32 18.4v18.4l32 18.4 47.8-27.6v-36.8l-16 9.201v18.4l-31.8 18.4-16-9.199 31.9-18.3v-55.3l-47.9 27.6-47.8-27.6zm127.7 0-16 9.199v18.4l16-9.199v-18.4z"/></svg>
|
After Width: | Height: | Size: 301 B |
1
src/glyphs/devicons/fixed/matplotlib-plain.svg
Normal file
After Width: | Height: | Size: 5.9 KiB |
1
src/glyphs/devicons/fixed/maven-plain.svg
Normal file
After Width: | Height: | Size: 9.6 KiB |
1
src/glyphs/devicons/fixed/maya-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m38 4-36 3.436v114.3s23.7 2.043 30-5.727v-52l-1-2s-5.323 17.61-12.56 31.47a276 276 0 0 1-14.44 24.53s8.866-16.05 13.97-26.88a260.3 260.3 0 0 0 11.9-30.6 3265 3265 0 0 0-11.27-20.3c-6.618-11.81-13.6-28.22-13.6-28.22s42.68 77.23 47 85c1.042 1.782 1.6 2 2 2h19 2c0.4 0 0.969-0.255 2-2 4.073-7.553 44-82 44-82s-5.074 12.43-13.16 27.88c-6.538 12.5-12.84 24.12-12.84 24.12v47l3 7h28v-114l-37-0.01367-24.37 58.37s2.3 5.782 4.227 11.71c2.947 9.073 6.146 19.93 6.146 19.93l-37-93zm86 25a316.9 316.9 0 0 1-9.273 49.01 219.9 219.9 0 0 1-15.73 39.99 396.8 396.8 0 0 0 14-40.93c7.125-25.62 11-48.07 11-48.07z"/></svg>
|
After Width: | Height: | Size: 690 B |
1
src/glyphs/devicons/fixed/mongodb-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m90.49 57.28c-0.37-4.79-1.496-9.409-3.062-13.93-3.244-10.1-8.45-19.05-15.78-26.74-1.854-1.946-3.916-3.729-5.209-6.151-0.818-1.532-1.597-3.085-2.394-4.629l-0.505-1.273c-0.085 0.292-0.139 0.396-0.142 0.501-0.065 2.517-1.491 4.224-3.267 5.817-1.997 1.793-3.856 3.739-5.775 5.618l-5.901 7.763c-1.592 2.925-3.182 5.85-4.772 8.775l-3.19 8.617c-1.743 6.039-2.747 12.46-3.144 17.82-0.16 2.251 0.022 4.535 0.149 6.798 0.181 3.235 0.743 6.415 1.586 9.545 3.062 11.37 9.276 20.8 17.77 28.82 1.579 1.489 3.241 2.839 4.889 4.256 0.316 0.7876 0.52 1.676 0.759 2.505l0.684 3.884 0.326 4.053c-3e-3 0.823-0.036 1.648 0.014 2.47 0.012 0.21 0.288 0.404 0.442 0.606l1.376 0.483 1.434 0.558-0.246-3.603-0.011-3.548 0.495-5.405 0.359-1.177 1.027-1.82c1.268-1.02 2.629-1.946 3.784-3.081 2.09-2.054 4.175-4.134 6.045-6.383 2.434-2.915 4.512-6.11 6.191-9.516 1.122-2.284 2.178-4.614 3.052-7.001 0.77-2.104 1.247-4.315 1.854-6.479 0.054-0.156 0.126-0.309 0.16-0.468 1.254-5.841 1.465-11.74 1.004-17.68z" /></svg>
|
After Width: | Height: | Size: 1 KiB |
|
@ -1 +1 @@
|
||||||
<svg width="52.57" height="59.76" version="1.1" viewBox="0 0 52.57 59.76" xmlns="http://www.w3.org/2000/svg"><path class="cls-2" d="m24.75 0.4199-23.2 13.4c-0.9608 0.544-1.551 1.566-1.543 2.67v26.79c0.07194 1.32 0.6075 2.13 1.543 2.67l23.2 13.4c0.9519 0.5593 2.132 0.5593 3.084 0l23.2-13.4c0.9598-0.5447 1.55-1.566 1.541-2.67v-26.79c0.007892-1.104-0.5826-2.126-1.543-2.67l-23.2-13.4c-1.241-0.5845-2.051-0.5958-3.082 0zm14.94 19.26-0.003907 20.48c-0.1115 1.748-1.643 3.059-3.387 2.9-1.557 0.02071-3.045-0.6441-4.068-1.818l-13.37-16c0.002437 4.944-0.004301 9.902 0.001953 14.84-0.07022 3.906-5.894 3.908-5.967 0.001953l0.001953-20.48c0.1126-1.748 1.645-3.058 3.389-2.898 1.556-0.01971 3.043 0.645 4.066 1.818l13.37 16-0.001953-14.83c0-1.648 1.336-2.984 2.985-2.988 1.649-0.004471 2.984 1.331 2.984 2.978z" fill-rule="evenodd"/></svg>
|
<svg width="52.57" height="59.76" version="1.1" viewBox="0 0 52.57 59.76" xmlns="http://www.w3.org/2000/svg"><path d="m24.75 0.4199-23.2 13.4c-0.9608 0.544-1.551 1.566-1.543 2.67v26.79c0.07194 1.32 0.6075 2.13 1.543 2.67l23.2 13.4c0.9519 0.5593 2.132 0.5593 3.084 0l23.2-13.4c0.9598-0.5447 1.55-1.566 1.541-2.67v-26.79c0.007892-1.104-0.5826-2.126-1.543-2.67l-23.2-13.4c-1.241-0.5845-2.051-0.5958-3.082 0zm14.94 19.26-0.003907 20.48c-0.1115 1.748-1.643 3.059-3.387 2.9-1.557 0.02071-3.045-0.6441-4.068-1.818l-13.37-16c0.002437 4.944-0.004301 9.902 0.001953 14.84-0.07022 3.906-5.894 3.908-5.967 0.001953l0.001953-20.48c0.1126-1.748 1.645-3.058 3.389-2.898 1.556-0.01971 3.043 0.645 4.066 1.818l13.37 16-0.001953-14.83c0-1.648 1.336-2.984 2.985-2.988 1.649-0.004471 2.984 1.331 2.984 2.978z" /></svg>
|
||||||
|
|
Before Width: | Height: | Size: 832 B After Width: | Height: | Size: 799 B |
1
src/glyphs/devicons/fixed/nimble-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg width="128" height="128" version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m64.1 10.12-23.11 7.582 61.8 20.52-0.0117 0.0039 0.0234 16.49c0 1e-6 -1.724 0.7502-3.164 2.117-0.954 0.907-3.453-0.1486-5.238-0.6836-0.687-0.204-2.625 2.051-2.625 2.051v-16.26l0.02148-0.0078-61.87-20.6-27.67 9.082v61.51l61.74 24.39 61.74-24.39v-61.48l0.1016-0.03516-61.74-20.3zm-43.29 42.95 2.23 3.043c1.527-0.254 3.066-0.5437 4.867-0.09766l2.297-2.832 2.348 3.695c1.91 0.246 3.601 1.168 5.328 2.078l2.617-2.371 1.582 4.824c1.68 1.61 2.152 2.422 2.82 3.488l2.473-0.8867-1.449 7.961-0.1133 0.2676-3.031 10.98c-2.172 5.597-8.605 6.505-12.57 5.172-3.828-1.285-9.484-5.973-11.26-12.18l-2.365-11.06-0.08789-0.2852-1.09-7.43 1.875 1.613c0.52-0.707 0.8915-1.266 2.23-2.133l1.301-3.855zm6.742 9.203c-4.524-0.0274-7.82 2.564-8.586 6.076l2.172 4.889 3.074 2.246 5.992-3.391 6.344 6.883 3.559-0.4961 2.648-4.057c-1.124-5.152-6.482-10.55-12.55-11.85-0.9209-0.1984-1.808-0.2957-2.652-0.3008z"/></svg>
|
After Width: | Height: | Size: 998 B |
1
src/glyphs/devicons/fixed/nodejs-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m61.21 0.7441-49.77 28.9 17.41 31.93 35.74-61.53c-0.1956-0.02476-0.1242-0.0439-0.7149-0.04877-0.5907-0.004873-1.817 0.2535-2.666 0.7402zm5.104-0.1406v0.003906l35.2 60.58 16.54-30.45c-0.3087-0.3125-0.6551-0.5862-1.029-0.8164l-25.64-14.89-24.68-14.27h-0.00586c-0.12-0.061-0.2529-0.09939-0.3789-0.1504zm-1.023 0.25-35.87 61.76 35.58 65.28c0.1-0.02 0.1979-0.02378 0.2969-0.05078l35.65-65.62zm-54.71 29.32c-1.502 1.031-2.35 2.753-2.35 4.596v58.48c0 0.93 0.2536 1.839 0.6836 2.646l19.34-33.29zm108.2 1.395c-5.562 10.03-11.1 20.46-16.63 30.63l17.66 30.4v-57.83c0-1.15-0.3923-2.269-1.027-3.199zm-17.19 31.67-34.78 64.05c16.76-9.731 33.52-19.47 50.28-29.2 1.402-0.793 2.3-2.155 2.604-3.693zm-72.72 0.3945-19.28 33.2c0.406 0.5 0.8847 0.9356 1.43 1.266 16.55 9.653 33.13 19.25 49.7 28.87 0.1779 0.1036 0.3587 0.2045 0.5371 0.3066 0.2631 0.1591 0.5595 0.2621 0.7988 0.3711 0.3288 0.1158 0.4258 0.1416 0.8086 0.2363 0.242 0.051 0.4845 0.08742 0.7285 0.1074 0.118 0.01 0.2355 0.00977 0.3535 0.00977z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
src/glyphs/devicons/fixed/norg-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg width="128" height="128" version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m65.88 0.3691c-70.98-1.368-91.76 98.15-23.33 123.9 5.562-17.24 14.06-27.91 23.94-35.26l0.01172 38.96c17.29-0.636 33.57-8.477 45.02-20.64 40.35-41.53 0.7128-119.2-55.95-79.1-0.387-11.06 6.127-19.57 13.73-27.69-1.152-0.07325-2.291-0.1209-3.418-0.1426zm-29.43 35.27c-3.937 14.7-2.035 24.35 2.438 31.8 0.03029-0.04783 0.06144-0.09293 0.0918-0.1406 13.77-19.81 44.43-33.57 66.46-19.73 1.898 2.148 2.751 5.148 3.051 8.273 0.614 16.19-6.437 40.47-21.84 47.98l0.01562-14.84c-0.004222-0.03389-0.01123-0.06403-0.01562-0.09766l0.02734-11.13 0.01172-13.62c-18.64 0.086-36.57 4.523-50.82 31.21-17.86-20.85-15.79-40.65 0.5859-59.7z"/></svg>
|
After Width: | Height: | Size: 737 B |
1
src/glyphs/devicons/fixed/nuxtjs-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m53.45 15.63c-1.703 0-4.254 0.5669-6.24 4.256l-45.96 81.43c-0.284 0.85-2.27 4.54-0.5684 7.66 1.135 1.702 2.838 3.404 6.811 3.404h38.3l53.63-9.7e-4c0.004541 0 20.98-9.8e-4 20.98-9.8e-4 0.851 0 4.824-0.2833 6.811-3.404 0.85-1.418 1.418-3.971-0.5684-7.375l-36.88-66.39c-0.567-0.568-2.554-4.258-6.242-4.258-1.702 0-4.256 0.8519-6.242 4.256l-4.68 7.711-12.91-23.31c-0.283-0.567-2.554-3.971-6.242-3.971zm0 8.512 14.76 26.66-28.94 50.51-1.135 3.404h-30.07zm30.07 15.32 36.6 65.26h-13.05l-1.133-3.402-28.94-50.5-0.03906-0.07031zm-11.06 19.01 26.38 46.25h-52.77z"/></svg>
|
After Width: | Height: | Size: 648 B |
1
src/glyphs/devicons/fixed/okta-plain.svg
Normal file
After Width: | Height: | Size: 5.1 KiB |
1
src/glyphs/devicons/fixed/opera-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m64 0.007812c-16.01-0.08155-31.92 6.188-43.59 17.14-11.98 11.06-19.45 26.86-20.3 43.15-0.9657 15.64 4.094 31.55 13.96 43.73 10.37 13.02 25.99 21.72 42.55 23.54 18.8 2.231 38.48-4.343 51.99-17.68 10.96-10.58 17.93-25.2 19.16-40.39 1.285-14.52-2.571-29.43-10.82-41.45-2.894-4.22-6.261-8.142-10.1-11.53 0.0091-0.00792 0.02445-0.01338 0.0332-0.02148-11.32-10.21-26.63-16.31-41.88-16.49-0.3349-0.005133-0.6689-0.00851-1.004-0.007812zm1.064 16.81c6.27 0.099 12.39 2.743 17.11 6.838 7.877 6.77 12.59 16.58 14.79 26.6 2.821 13.28 1.617 27.56-4.193 39.89-3.767 7.907-9.724 15.18-17.86 18.83-6.513 2.985-14.3 2.925-20.77-0.1426-8.061-3.742-13.95-11.04-17.66-18.95-5.451-11.7-6.724-25.12-4.447-37.76 1.661-9.005 5.352-17.75 11.34-24.74 0.1273-0.1587 0.267-0.2961 0.3965-0.4512-0.2695 0.3272-0.543 0.6489-0.8066 0.9844 4.863-5.806 11.74-10.29 19.41-10.98 0.8982-0.09297 1.798-0.1313 2.693-0.1172z"/></svg>
|
After Width: | Height: | Size: 979 B |
1
src/glyphs/devicons/fixed/playwright-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m55.33 24.15c-1.367-0.085-2.025 1.374-2.523 2.417-1.709 3.617-3.033 7.401-4.221 11.22-7.346 4.615-15.9 7.294-24.56 7.744-3.806 0.2117-7.634-0.09599-11.36-0.9149-1.089-0.1343-2.358-0.5607-3.355 0.09134-0.864 0.8867-0.4464 2.253-0.3995 3.355 0.5322 4.849 1.626 9.627 2.998 14.3 2.268 7.303 5.58 14.37 10.36 20.37 3.717 4.621 8.658 8.57 14.55 9.883 4.608 1.059 9.491 0.4093 13.84-1.37 2.769 4.136 6.663 7.519 11.2 9.589 6.362 2.917 13.76 3.922 20.55 2.016 7.512-2.075 13.69-7.375 18.38-13.44 6.042-7.872 10.22-17.05 13.08-26.51 1.802-6.379 3.302-12.88 3.823-19.51 0.1222-1.125-0.08235-2.715-1.44-2.947-1.973-0.2825-3.921 0.4075-5.855 0.6968-7.688 1.434-15.65 0.9614-23.27-0.6607-5.205-1.136-10.27-2.906-15.07-5.224-4.565-2.249-8.902-5.009-12.67-8.447-1.251-0.9916-2.424-2.354-4.058-2.666zm7.154 26c3.623 0.05585 7.133 2.111 8.9 5.285 0.971 1.68 1.59 3.567 1.798 5.496-6.635-1.885-13.27-3.77-19.91-5.654 2.081-2.959 5.494-5.227 9.209-5.127zm-27.62 6.125c-0.3459 3.259-2.565 6.38-5.792 7.292-2.842 0.9748-6.089 0.1362-8.261-1.889-0.3523-0.4455-1.893-1.449-0.6738-1.523 4.909-1.293 9.818-2.587 14.73-3.88zm58.3 3.08c3.623 0.05885 7.127 2.119 8.895 5.29 0.9732 1.68 1.594 3.567 1.804 5.497-6.634-1.889-13.27-3.779-19.9-5.668 2.08-2.959 5.485-5.222 9.203-5.119zm-48.86 11.39c0.1886 2.619 0.5498 5.228 1.119 7.791-4.546 1.288-9.091 2.577-13.64 3.865 1.206-5.128 5.376-9.23 10.27-10.97 0.7398-0.2558 1.47-0.5537 2.244-0.6906zm12.04 0.9258c11.75 3.283 23.51 6.569 35.26 9.855-4.209 4.332-10.63 6.112-16.53 5.209-6.221-0.8853-12.31-3.984-15.97-9.203-1.24-1.775-2.249-3.748-2.756-5.861z"/></svg>
|
After Width: | Height: | Size: 1.6 KiB |
1
src/glyphs/devicons/fixed/plotly-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg width="136.8" height="136.8" version="1.1" viewBox="0 0 136.8 136.8" xmlns="http://www.w3.org/2000/svg"><path d="m6.217 0c-3.444 0-6.217 2.773-6.217 6.217v124.3c0 3.444 2.773 6.217 6.217 6.217h124.3c3.444 0 6.217-2.773 6.217-6.217v-124.3c0-3.444-2.773-6.217-6.217-6.217zm24.87 24.87a6.217 6.217 0 0 1 6.217 6.217 6.217 6.217 0 0 1-6.217 6.217 6.217 6.217 0 0 1-6.217-6.217 6.217 6.217 0 0 1 6.217-6.217zm24.87 0a6.217 6.217 0 0 1 6.217 6.217 6.217 6.217 0 0 1-6.217 6.217 6.217 6.217 0 0 1-6.217-6.217 6.217 6.217 0 0 1 6.217-6.217zm24.87 0a6.217 6.217 0 0 1 6.217 6.217 6.217 6.217 0 0 1-6.217 6.217 6.217 6.217 0 0 1-6.217-6.217 6.217 6.217 0 0 1 6.217-6.217zm24.87 0a6.217 6.217 0 0 1 6.217 6.217 6.217 6.217 0 0 1-6.217 6.217 6.217 6.217 0 0 1-6.219-6.217 6.217 6.217 0 0 1 6.219-6.217zm-74.6 24.87a6.217 6.217 0 0 1 6.217 6.217 6.217 6.217 0 0 1-6.217 6.217 6.217 6.217 0 0 1-6.217-6.217 6.217 6.217 0 0 1 6.217-6.217zm24.87 0a6.217 6.217 0 0 1 6.217 6.217v49.73a6.217 6.217 0 1 1-12.43 0v-49.73a6.217 6.217 0 0 1 6.217-6.217zm24.87 0a6.217 6.217 0 0 1 6.217 6.217 6.217 6.217 0 0 1-6.217 6.217 6.217 6.217 0 0 1-6.217-6.217 6.217 6.217 0 0 1 6.217-6.217zm24.87 0a6.217 6.217 0 0 1 6.217 6.217v49.73a6.217 6.217 0 0 1-12.43 0v-49.73a6.217 6.217 0 0 1 6.217-6.217zm-74.6 24.87a6.217 6.217 0 0 1 6.217 6.217v24.87a6.217 6.217 0 1 1-12.43 0v-24.87a6.217 6.217 0 0 1 6.217-6.217zm49.73 0a6.217 6.217 0 0 1 6.217 6.217v24.87a6.217 6.217 0 1 1-12.43 0v-24.87a6.217 6.217 0 0 1 6.217-6.217z"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
1
src/glyphs/devicons/fixed/portainer-original.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg width="128px" height="128px" version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m66.59 2.32-0.02539 5.224-31.39 18.09h-15.25v3.859h27.52v18.69h9.971v-18.69h9.18v53.53c0.14 0 2.769-0.0493 3.859 0.4707v-54h2.721v54.52c1.51 0.75 2.829 1.6 3.859 2.77v-57.29h31.05v-3.859h-6.5l-31.13-17.99v-5.318zm0 9.607v13.7h-23.71zm3.859 0.166 23.42 13.54h-23.42zm-21.13 17.4h6.209v8.66h-6.209zm-24.32 14.03v10.03h9.971v-10.03zm11.25 0v10.03h9.971v-10.03zm-11.25 11.16v10.03h9.971v-10.03zm11.25 0v10.03h9.971v-10.03zm11.19 0v10.03h9.971v-10.03zm-22.67 11.53c-1.65 2.87-2.539 6.17-2.539 9.51 0 6.31 3.109 11.87 7.809 15.35 1.22-0.33 2.441-0.5205 3.721-0.5605 0.51 0 0.8394 0.03984 1.359 0.08984 1.46-6.12 7.101-10.22 13.69-10.22 3.72 0 7.389 1.039 9.879 3.439 1.17-2.45 1.551-5.18 1.551-8.1 0-3.34-0.851-6.64-2.541-9.51zm24.79 16.25c-6.21 0-11.44 4.329-12.8 10.12-0.47-0.09-0.9402-0.09102-1.41-0.04102-7.29 0-13.17 5.891-13.17 13.14 0 7.25 5.93 13.14 13.17 13.14 0.94 0 1.84-0.09125 2.73-0.2812 2.21 4.24 6.629 7.16 11.71 7.16 4.43 0 8.33-2.219 10.73-5.559 2.25 1.88 5.171 3.01 8.371 3.01 7.25 0 13.13-5.891 13.13-13.14 0-2.92-0.9898-5.65-2.59-7.82 0.47-1.36 0.7012-2.769 0.7012-4.279 0-7.26-5.881-13.14-13.12-13.14-2.77 0-5.31 0.8505-7.43 2.311-2.45-2.83-6.02-4.619-10.02-4.619z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
src/glyphs/devicons/fixed/postcss-original.svg
Normal file
After Width: | Height: | Size: 12 KiB |
1
src/glyphs/devicons/fixed/puppeteer-plain.svg
Normal file
After Width: | Height: | Size: 5.5 KiB |
1
src/glyphs/devicons/fixed/pytorch-original.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m64 2-36.2 36.2c-20.1 20.1-20.1 52.6 0 72.8 20.1 20.2 52.6 20.1 72.4 0 20.1-20.2 20.1-52.5-0.09961-72.7l-9.199 9.199c15.1 15.1 15.1 39.4 0 54.3-15.1 15.1-39.4 15.1-54.3 0-15.1-15.1-15.1-39.4 0-54.3l27.4-27.4v-18.1zm18.2 20.67a6.7 6.7 0 0 0-6.824 6.576 6.7 6.7 0 0 0 6.576 6.822 6.7 6.7 0 0 0 6.822-6.574 6.7 6.7 0 0 0-6.574-6.824z"/></svg>
|
After Width: | Height: | Size: 425 B |
1
src/glyphs/devicons/fixed/quarkus-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m24.98 5.602c-10.66 0-19.37 8.714-19.37 19.37v78.05c0 10.66 8.714 19.38 19.37 19.38h53.45l-14.43-35.04-10.47 22.13h-28.55c-3.5 0-6.461-2.961-6.461-6.461v-78.05c0-3.5 2.961-6.461 6.461-6.461h78.05c3.5 0 6.461 2.961 6.461 6.461v78.05c0 3.5-2.961 6.461-6.461 6.461h-16.94l5.316 12.91h11.62c10.66 0 19.38-8.714 19.38-19.38v-78.05c0-10.66-8.714-19.37-19.38-19.37h-78.05zm21.04 20.52v20.76 0.003907l0.003907-0.001953 17.98 10.38 17.98-10.38-0.00586-0.003907c0.001991-3.62e-4 0.003868 3.63e-4 0.00586 0v-20.76l-17.98 10.38-17.98-10.38zm-0.9805 22.46-17.98 10.38 17.98 10.38v20.77l17.98-10.38v-20.76l-17.98-10.38zm37.92 0-17.98 10.38v20.76h0.001954l17.98 10.38v-20.77l17.98-10.38-17.98-10.38z"/></svg>
|
After Width: | Height: | Size: 779 B |
1
src/glyphs/devicons/fixed/qwik-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m77.73 15.32c-4.249 0.1125-8.497 0.2877-12.75 0.25-7.065 0.02464-14.13 0.02481-21.2 0.06445-4.947 0.1461-9.674 3.279-11.67 7.816-4.905 9.736-9.809 19.5-14.71 29.22-1.978 3.175-2.938 7.146-1.812 10.8 0.7781 2.717 2.505 4.992 3.889 7.416 4.668 7.733 9.309 15.48 13.99 23.21 2.02 3.217 5.488 5.551 9.314 5.848 2.68 0.1598 5.364-0.1222 8.047-0.1426 3.404-0.07946 6.822-0.2165 10.22-0.1797 11.54 4.311 23.07 8.622 34.61 12.93 0.9858 0.3342 1.241-0.9524 0.6426-1.604l-8.576-17.01c5.536-10.03 11.09-20.06 16.61-30.1 1.754-3.602 3.087-7.805 1.857-11.79-0.6752-2.112-1.927-3.966-2.932-5.928-1.628-2.996-3.239-6.003-4.99-8.93-3.049-5.243-6.063-10.5-9.133-15.73-2.426-3.829-6.879-6.228-11.41-6.143zm-33 3.393c11.96 12.99 23.81 26.08 35.71 39.13 0.1356 0.3306-0.5362 0.645-0.7402 0.9688l-5.562 5.637 3.797 30.58-37.02-36.61 9.152-8.82-5.344-30.88z"/></svg>
|
After Width: | Height: | Size: 930 B |
1
src/glyphs/devicons/fixed/rust-original.svg
Normal file
After Width: | Height: | Size: 6.3 KiB |
1
src/glyphs/devicons/fixed/sdl-plain.svg
Normal file
After Width: | Height: | Size: 9.3 KiB |
1
src/glyphs/devicons/fixed/sequelize-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m64.06 2.48-53.28 30.76v61.52l53.4 30.76 53-30.64v-61.74l0.04101-0.02344zm0 17.68 37.69 21.51 0.01172 0.05273h0.08007v44.28l-37.66 22.32-37.78-21.92v-44.07l-0.003907-0.01172 0.003907 0.001953zm-0.7715 2.779-14.81 8.76 15.05 8.762 14.8-8.641zm-18.43 10.86-14.78 8.75h-0.01562v17.81l15.06 8.23v-17.26l-0.003907-0.01367 14.79-8.637zm38.14 0.4102-14.78 8.789 15.05 8.76v17.24l14.81-8.789v-17.11l-0.07031-0.01562zm-18.4 10.85-14.8 8.76v17.81l15.04 8.219v-0.009765l0.009765 0.009765h0.009766l14.8-8.76v-17.14l-0.01953-0.003907 0.009766-0.005859zm-34.54 20.84v18.1l15.06 8.189v-17.53l-0.1191-0.07031-14.53-8.449zm68.02 0.4395-0.4395 0.2598-14.27 8.35-0.09961 0.05078v17.6l14.81-8.76zm-48.28 10.83v18.06l15.04 8.23v-0.00977l0.009765 0.00977h0.009766l14.8-8.762v-17.45l-0.4395 0.25-14.27 8.32-0.2285 0.08008v-0.05078l-14.51-8.449z"/></svg>
|
After Width: | Height: | Size: 916 B |
1
src/glyphs/devicons/fixed/sqldeveloper-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m51.4 7.758c-12.08 0.05045-24.2 0.6011-36.12 2.685-3.967 0.7878-8.049 1.548-11.63 3.517-1.067 0.5852-2.104 1.617-1.902 2.905 0.01079 8.979-0.0216 17.96 0.01621 26.94 0.4481 1.65 2.247 2.347 3.653 3.009 5.429 2.119 11.25 2.933 17 3.703 14.41 1.707 28.97 1.932 43.46 1.232 8.956-0.5229 17.96-1.279 26.7-3.4 2.671-0.7547 5.535-1.428 7.704-3.259 1.109-0.8861 0.6966-2.345 0.7754-3.563v-25.24c-0.1648-1.51-1.8-2.305-3.035-2.927-4.77-2.063-9.956-2.87-15.06-3.654-10.45-1.449-21.01-1.928-31.55-1.95zm-49.65 42.8c0.01078 7.997-0.02159 16 0.01621 23.99 0.4476 1.651 2.247 2.348 3.653 3.011 5.429 2.119 11.25 2.932 17 3.703 14.16 1.676 28.47 1.927 42.71 1.257 1.527-0.3636 3.87 0.3827 4.837-0.7857 3.705-9.035 12.17-15.92 21.8-17.63 3.058-0.5682 6.206-0.6485 9.289-0.2336v-13.31c-0.1815 1.633-1.928 2.388-3.225 3.038-5.01 2.093-10.43 2.901-15.77 3.681-14.07 1.82-28.3 2.11-42.46 1.573-9.555-0.4546-19.16-1.183-28.5-3.314-2.877-0.7499-5.905-1.448-8.325-3.261-0.5115-0.4302-1.008-1.012-1.009-1.718zm95.42 16.69c-8.37-0.07691-16.59 4.27-21.29 11.19-5.047 7.2-5.972 17.03-2.374 25.05 3.359 7.768 10.76 13.61 19.11 15.04 7.869 1.449 16.34-1.012 22.16-6.519 6.062-5.569 9.168-14.15 8.013-22.31-1.069-8.708-6.953-16.6-14.97-20.16-3.332-1.509-6.989-2.303-10.65-2.296zm-9.102 10.91c8.009 4.624 16.02 9.247 24.03 13.87-8.009 4.624-16.02 9.247-24.03 13.87v-27.74zm-86.32 3.152c0.0108 9.17-0.0216 18.34 0.01621 27.51 0.4478 1.651 2.247 2.348 3.653 3.01 5.429 2.119 11.25 2.932 17 3.703 13.78 1.632 27.7 1.913 41.56 1.31 4.781-0.2264 9.556-0.5844 14.31-1.121-6.838-5.635-10.87-14.48-10.59-23.34-0.29-1.066 1.061-3.535-0.7978-2.976-14.5 0.7842-29.07 0.5766-43.51-1.051-5.909-0.7515-11.88-1.569-17.5-3.631-1.522-0.6687-3.374-1.33-4.076-2.973l-0.04838-0.2183z"/></svg>
|
After Width: | Height: | Size: 1.8 KiB |
1
src/glyphs/devicons/fixed/streamlit-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m63.99 29.2c-0.7866 0-1.569 0.3627-2.049 1.09l-20.39 30.38-38.95-20.59c-0.03556-0.03555-0.107-0.03516-0.1426-0.03516-1.422-0.6755-2.879 0.7457-2.346 2.168l19.85 50.62 0.003906 0.01172c0.02134 0.04994 0.03921 0.09854 0.06055 0.1484 0.8142 1.888 2.591 3.055 4.525 3.514 0.1635 0.03587 0.2802 0.06817 0.4766 0.1074 0.1955 0.04351 0.4704 0.1012 0.7051 0.1191 0.03912 0.0033 0.07416 0.004613 0.1133 0.007813h0.0293c0.02841 0.0044 0.05552 0.004613 0.08398 0.007813h0.03906c0.02491 0.003299 0.05322 0.001953 0.07812 0.001953h0.04688c0.02846 0.0044 0.05748 0.005859 0.08594 0.005859 25.14 2.74 50.49 2.74 75.63 0 0.3021 0 0.5967-0.01484 0.8809-0.04297 0.0926-0.0109 0.1804-0.02262 0.2695-0.0332 0.0107-0.0044 0.02446-0.002659 0.03516-0.005859 0.0606-0.0076 0.121-0.01861 0.1816-0.0293 0.0887-0.0109 0.1788-0.02888 0.2676-0.04688 0.1779-0.03925 0.2585-0.06717 0.5-0.1504 0.2411-0.08276 0.6421-0.2269 0.8926-0.3477 0.2509-0.1207 0.4229-0.2377 0.6328-0.3691 0.2594-0.1638 0.5074-0.3299 0.7578-0.5176 0.1079-0.08276 0.1817-0.1363 0.2598-0.2109 0.2671-0.2615 0.4809-0.5159 0.707-0.7852 0.32-0.3947 0.6196-0.8179 0.8828-1.291l19.8-50.71v-0.07031c0.4979-1.493-1.031-2.845-2.457-2.062h-0.03515l-38.96 20.59-20.38-30.38c-0.4979-0.7271-1.288-1.09-2.074-1.09z" /></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
src/glyphs/devicons/fixed/threejs-original.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m16.22 15.76a1.129 1.129 0 0 0-1.076 1.398l24.39 98.74a1.129 1.129 0 0 0 1.879 0.5449l73.39-70.59a1.129 1.129 0 0 0-0.4707-1.9l-24.86-7.156a1.129 1.129 0 0 0-0.02344-0.007812 1.129 1.129 0 0 0-0.001953 0l-48.44-13.94a1.129 1.129 0 0 0-0.1133-0.04102 1.129 1.129 0 0 0-0.01367 0.005859l-24.34-7.008a1.129 1.129 0 0 0-0.332-0.04492zm1.584 2.754 20.85 6.002-15.64 15.07-5.207-21.08zm24.65 7.098 20.47 5.893-15.37 14.79-5.102-20.69zm-2.203 0.4941v0.001953l5.113 20.74-20.52-5.891 15.4-14.85zm26.43 6.48 20.53 5.91-15.41 14.85-5.119-20.76zm-2.191 0.5527 5.088 20.62-20.43-5.861 15.34-14.76zm26.52 6.451 20.82 5.994-15.63 15.04-5.186-21.03zm-2.203 0.502 5.115 20.74-20.52-5.891 15.4-14.85zm-64.95 2.926 20.88 5.996-15.67 15.09-5.209-21.08zm24.64 7.045 20.52 5.889-15.41 14.85-5.117-20.74zm-2.184 0.5703 5.213 21.12-20.89-6.021 15.68-15.1zm26.41 6.459 20.9 6-15.7 15.1-5.205-21.1zm-2.191 0.541 5.205 21.1-20.86-6.012 15.65-15.08zm-40.53 10.26 20.51 5.91-15.38 14.83-5.125-20.74zm24.64 7.104 20.47 5.898-15.36 14.78-5.104-20.68zm-2.285 0.1621 5.119 20.74-20.52-5.889 15.4-14.85zm-16.38 16.91 21.19 6.082-15.91 15.3-5.283-21.38z" /></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
src/glyphs/devicons/fixed/tomcat-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m67.52 18.63c-2.014 3.398-2.906 11.28-2.71 16.6s0.8811 9.966 1.985 14.23c-16.51 4.091-34.49 14.9-44.54 25.36-4.706-6.352-6.572-11.56-7.127-15.51-0.7-4.989 0.4894-9.564 3.443-13.23 4.623-5.743 11.19-6.148 17.95-5.012-0.131 1.067 0.0085 2.087 0.4355 2.717 1.786 2.639 11.39 3.565 17.12 1.008-3.7-5.185-10.72-8.048-14.01-7.906-0.4696 0.02031-0.8635 0.103-1.16 0.248-0.786 0.384-1.379 1.088-1.785 1.91-2.335-0.418-4.654-0.7278-6.348-0.7148-5.957 0.044-10.51 2.125-13.92 6.363-3.347 4.157-4.7 9.32-3.912 14.93 0.746 5.314 3.376 10.97 7.785 16.83-0.732 0.786-1.439 1.562-2.121 2.324-10.75 12.02-18.6 24.92-18.6 27.06v1.107h14.18l-0.248-1.314c-0.8-4.232 0.7973-9.519 4.072-13.47 2.057-2.481 5.464-5.315 10.81-6.621 4.754 4.64 10.81 9.568 17.55 14.32h10.54v-1.107c0-1.249-0.6201-2.342-1.744-3.078-1.665-1.088-4.234-1.239-6.594-0.4336-2.25-2.506-3.513-5.852-3.785-10.01 22.86 2.024 44.74 11.26 69.41 24.15h13.58l0.1777-0.8887c0.254-1.267-0.4368-2.965-2.354-5.113s-6.68-3.435-10.66-3.34c-2.743-3.265-17.83-19.16-18.71-20.09 5.356-3.759 10.02-8.607 13.69-14.32h8.945v-3.266h-7.014c0.0969-0.1784 0.198-0.3533 0.293-0.5332h6.721v-3.264h-5.133c3.125-7.061 4.844-15.11 4.762-20.74-0.0816-5.631-0.8594-16.17-2.287-19.08-3.872 1.471-10.92 6.239-12.51 11.11-7.642-1.14-16.26-1.005-23.8 0.3008-1.26-5.245-7.589-9.258-12.36-11.52zm28 12.05-2.676 9.232-4.148-9.098zm-11.42 6.902c1.325 0 2.379 0.6088 3.047 1.758 1.186 2.037 1.046 5.561 0.2422 9.146h11.49c1.527-4.485 4.715-6.6 10.04-6.6v1.434c-5.772 0-7.391 2.448-8.545 5.166h6.27l-0.0137 1.428-6.222 0.0078h-0.5772c-0.7093 2.436-0.1693 4.576 1.531 7.084l-8e-3 2e-3c1e-3 0.0027 2e-3 0.0055 4e-3 0.0078-0.383 0.245-8.098 5.258-8.098 5.258l5.16 3.191-0.7656 1.215-5.564-3.633-5.156 3.398-0.7891-1.197 4.611-3.039-8.193-5.158 0.3398-0.5977c1.049-1.846 1.981-4.176 2.645-6.531h-6.184v-1.436h6.549c0.807-3.453 0.9661-6.753-0.0059-8.426-0.416-0.71-0.9906-1.043-1.809-1.043-3.741 0-5.286 3.95-5.354 4.125l-1.344-0.5039c0.077-0.207 1.95-5.057 6.697-5.057zm14.27 12.34h-11.34c-0.602 2.221-1.426 4.39-2.314 6.17h14.6c-1.255-2.1-1.458-4.546-0.9492-6.17zm-30.69-5.863 6.559 3.48-5.891 0.4004zm48.44 2.543-0.9394 2.945-4.414-0.6699zm-46.83 4.549 4.016 1.605-3.346 0.9355zm44.69 2.008-0.8027 2.408-3.346-1.205zm-57.53 1.738 3.611 10.7-10.97-7.357zm29.57 2.629 6.061 3.816 5.783-3.812zm-20.48 1.848h12.91v1.594h-12.91zm39.43 0h12.91v1.594h-12.91zm-59.08 0.207 3.877 6.688-8.162-4.145zm19.65 3.619h12.91v1.594h-12.91zm39.43 0h12.91v1.594h-12.91zm-67.91 1.598 1.873 6.691-5.619-3.883zm59.8 17.93 2.676 2.543-6.154 2.809zm5.486 6.154 2.145 2.273-7.764 2.006z" stroke-width="1.01"/></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
src/glyphs/devicons/fixed/vagrant-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m21.45 3.51-15.96 9.311v11.41l35.91 87.21 22.59 13.05 22.81-13.15 35.71-87.44v-11.08l-15.95-9.311-26.6 15.57-0.01074 10.64-15.96 37.23-15.95-37.23 0.005859-10.58z"/></svg>
|
After Width: | Height: | Size: 257 B |
1
src/glyphs/devicons/fixed/vuestorefront-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m21.21 8.76c-1.926 1.148-1.244 3.162-1.619 4.83h-0.001953c-1.08 0.01-2.15-4.69e-4 -3.23 0.01953-1.89 0.03-2.789 0.7999-2.939 2.67-0.75 9.12-1.479 18.23-2.209 27.35-0.94 11.69-1.881 23.38-2.811 35.07-0.9 11.37-1.791 22.73-2.701 34.11-0.1 1.29-0.2588 2.569-0.2988 3.859-0.05 1.8 0.9305 2.789 2.73 2.869 0.27 0.01 0.5386 0 0.8086 0 36.49 0.01 72.99 0.00125 109.5 0.03125 1.52 0 2.76-0.2806 3.58-1.641v-4.199c-0.31-2.52-0.7002-5.04-0.9102-7.58-1.2-14.2-2.359-28.39-3.529-42.59l-1.92-23.3c-0.34-4.07-0.6515-8.139-1.021-12.21-0.29-3.16-0.6783-6.311-0.9883-9.471-0.07-0.79 0.09-1.61 0-2.4-0.2-1.73-1.151-2.55-2.891-2.58-1.18-0.02-2.371-0.009531-3.551-0.01953-0.1582-1.687 0.06748-3.483-1.34-4.82h-84.64zm65.04 34.88c0.4687 0.04625 0.9318 0.2981 1.342 0.7031 2.72 2.67 5.41 5.37 8.1 8.08 0.75 0.75 0.9104 1.659 0.1504 2.439-0.83 0.85-1.719 0.6501-2.529-0.1699-2.29-2.32-4.601-4.63-7.311-7.35-2.39 2.55-4.66 4.97-6.92 7.4-0.77 0.83-1.641 1.119-2.541 0.3789-0.98-0.8-0.7185-1.859 0.02148-2.629 2.72-2.82 5.499-5.59 8.309-8.32 0.435-0.42 0.9102-0.5795 1.379-0.5332zm-49.39 10.64c0.9517-0.02064 1.599 0.817 1.625 2.252 0.09 4.63 0.959 9.101 2.959 13.28 3.32 6.91 8.111 12.17 15.94 14.02 6.21 1.47 11.56-0.3691 16.42-4.119 5.61-4.33 8.599-10.27 10.05-17.04 0.45-2.11 0.5209-4.311 0.7109-6.471 0.09-1.05 0.2196-1.958 1.6-1.898 1.24 0.05 1.78 0.7789 1.74 1.879-0.45 11.87-4.661 21.78-15.12 28.29-3.45 2.15-7.309 3.079-11.29 3.109-9.04-0.22-15.6-4.591-20.5-11.8-3.9-5.77-5.661-12.24-5.881-19.16-0.04-1.04 0.1503-1.969 1.32-2.279 0.1475-0.03875 0.2898-0.05955 0.4258-0.0625z"/></svg>
|
After Width: | Height: | Size: 1.6 KiB |
1
src/glyphs/devicons/fixed/woocommerce-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m11.7 25.8c-6.5 0-11.7 5.2-11.7 11.6v40c0 6.4 5.199 11.7 11.7 11.7h49.6l22.3 13.1-4.699-13.1h37.5c6.4 0 11.7-5.199 11.7-11.7v-40c-0.1-6.4-5.299-11.6-11.8-11.6h-104.6zm44.04 7.158c2.434-0.1222 4.855 1.204 3.955 6.041-3.9 9.5-7.699 29.6-6.699 40.6-2.7 8.3-9 0.4004-9 0.4004s-6.9-9.1-8.5-16c-1.6-6.8-2-3.699-2-3.699s-5.499 12.4-11.2 20.3c-5.7 7.9-8.5-3.9-8.5-3.9-2-2.4-7.701-37.3-7.701-37.3 3.2-8.9 8.701-1.6 8.701-1.6l5.5 28.4s8.498-17.4 11.4-21.9c2.8-4.5 7.702-3.202 8.102 1.398 0.4 4.7 5.1 17.4 5.1 17.4 0.4-13.4 5.899-26.2 6.699-28.2 0.35-0.875 2.251-1.846 4.145-1.941zm52.74 5.324c3.46 0.1816 7.225 1.991 10.41 7.316 6.9 15.7-4.601 28.7-7.201 29.9s-12.3 7.9-19.2-7.1c-4.3-15.1 5.301-26.2 5.301-26.2s4.921-4.219 10.69-3.916zm-31.87 0.06836c3.442 0.1992 7.191 2.023 10.38 7.348 6.9 15.6-4.5 28.6-7.1 29.8-2.6 1.2-12.3 7.9-19.2-7.1-4.3-15.1 5.301-26.2 5.301-26.2s4.884-4.18 10.62-3.848zm-0.375 8.529c-2.386 0.00293-6.371 1.631-8.246 10.82 0 5.9 1.4 9.501 3.6 10.8 4.1 1.2 8.9-4.299 8.9-10.2 0.3-4.1 0.4992-9.2-3.801-11.4-0.1438-0.0125-0.2941-0.01973-0.4531-0.01953zm31.9 0c-2.386 0.00293-6.369 1.631-8.244 10.82 0 5.9 1.4 9.501 3.6 10.8 4.1 1.2 8.9-4.299 8.9-10.2 0.2-4.1 0.3992-9.2-3.801-11.4-0.1438-0.0125-0.296-0.01973-0.4551-0.01953z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
src/glyphs/devicons/fixed/yii-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m95.43 0c-4.932 3.315-9.21 7.609-12.6 12.48-3.279 4.849-6.13 10.39-6.066 16.39 0.02071 5.845 2.263 11.38 4.841 16.53 2.705 5.799 5.426 11.61 7.639 17.62 2.859 7.712 4.194 16.03 3.434 24.24 6.532-8.434 13.46-16.78 17.72-26.66 2.699-6.3 5.101-12.87 5.595-19.76 0.9622-11.03-2.39-22.42-9.413-31.01-3.126-3.873-6.927-7.188-11.14-9.827zm-65.27 24.83c-6.16 0.04883-12.32 1.217-18.04 3.516-0.5953 8.673 1.298 17.48 5.194 25.24 3.996 7.984 10.68 14.67 18.92 18.22 6.217 2.709 12.96 3.85 19.67 4.543 4.235 0.4763 8.482 1.021 12.6 2.155-3.5 6.253-8.58 11.59-11.26 18.3-2.307 6.043-2.113 12.69-1.309 19.01 0.5677 4.107 1.511 8.149 2.432 12.19 9.904-2.06 19.02-8.024 24.5-16.57 3.074-4.729 5.09-10.14 5.861-15.73 0.1053-1.122 0.246-2.663 0.3286-3.947 0.588-7.563-0.1252-15.25-2.222-22.54-1.352-4.628-3.285-9.065-5.372-13.4-9.687-18.68-30.25-31.15-51.31-30.98z"/></svg>
|
After Width: | Height: | Size: 942 B |
1
src/glyphs/devicons/fixed/zig-plain.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m125.5 5.438-40.99 18.41h-37.65l-15.9 18.4h38.26l-66.7 80.31 40.99-19.24h37.65l15.9-18.41h-38.12l66.57-79.48zm-125.5 18.41v79.48h10.04l15.9-18.41h-7.531v-42.67h5.02 0.001953l0.001953-0.005859 15.06-18.4h-38.48zm118 0-15.9 19.24h7.531v41.83h-5.021l-15.89 18.41h39.32v-79.48h-10.04z"/></svg>
|
After Width: | Height: | Size: 375 B |
|
@ -12,7 +12,7 @@ import fontforge, psMat
|
||||||
|
|
||||||
# Double-quotes required here, for version-bump.sh:
|
# Double-quotes required here, for version-bump.sh:
|
||||||
# version-bump.sh is not working here, need to adjust manually!
|
# version-bump.sh is not working here, need to adjust manually!
|
||||||
version = "3.3.0"
|
version = "3.3.0-49"
|
||||||
|
|
||||||
dev_version = 'v2.16.0'
|
dev_version = 'v2.16.0'
|
||||||
archive = '{}.tar.gz'.format(dev_version)
|
archive = '{}.tar.gz'.format(dev_version)
|
||||||
|
|
|
@ -205,7 +205,7 @@ E6C7 E7C7 dropwizard/dropwizard-plain.svg dropwizard
|
||||||
E6C8 E7C8 dynamodb/dynamodb-plain.svg dynamodb
|
E6C8 E7C8 dynamodb/dynamodb-plain.svg dynamodb
|
||||||
E6C9 E7C9 ecto/ecto-original.svg ecto
|
E6C9 E7C9 ecto/ecto-original.svg ecto
|
||||||
E6CA E7CA elasticsearch/elasticsearch-plain.svg elasticsearch
|
E6CA E7CA elasticsearch/elasticsearch-plain.svg elasticsearch
|
||||||
E6CB E7CB electron/electron-original.svg electron
|
E6CB E7CB electron/electron-plain.svg electron
|
||||||
E6CC E7CC eleventy/eleventy-plain.svg eleventy
|
E6CC E7CC eleventy/eleventy-plain.svg eleventy
|
||||||
E6CD E7CD elixir/elixir-plain.svg elixir
|
E6CD E7CD elixir/elixir-plain.svg elixir
|
||||||
E6CE E7CE elm/elm-plain.svg elm
|
E6CE E7CE elm/elm-plain.svg elm
|
||||||
|
@ -453,7 +453,7 @@ E7BF E8BF thealgorithms/thealgorithms-plain.svg thealgorithms
|
||||||
E7C0 E8C0 threedsmax/threedsmax-plain.svg threedsmax
|
E7C0 E8C0 threedsmax/threedsmax-plain.svg threedsmax
|
||||||
E7C1 E8C1 threejs/threejs-original.svg threejs
|
E7C1 E8C1 threejs/threejs-original.svg threejs
|
||||||
E7C2 E8C2 titaniumsdk/titaniumsdk-original.svg titaniumsdk
|
E7C2 E8C2 titaniumsdk/titaniumsdk-original.svg titaniumsdk
|
||||||
E7C3 E8C3 tomcat/tomcat-original.svg tomcat
|
E7C3 E8C3 tomcat/tomcat-plain.svg tomcat
|
||||||
E7C4 E8C4 tortoisegit/tortoisegit-plain.svg tortoisegit
|
E7C4 E8C4 tortoisegit/tortoisegit-plain.svg tortoisegit
|
||||||
E7C5 E8C5 towergit/towergit-plain.svg towergit
|
E7C5 E8C5 towergit/towergit-plain.svg towergit
|
||||||
E7C6 E8C6 traefikmesh/traefikmesh-original.svg traefikmesh
|
E7C6 E8C6 traefikmesh/traefikmesh-original.svg traefikmesh
|
||||||
|
@ -497,4 +497,4 @@ E7EB E8EB yaml/yaml-plain.svg yaml
|
||||||
E7EC E8EC yarn/yarn-original.svg yarn
|
E7EC E8EC yarn/yarn-original.svg yarn
|
||||||
E7ED E8ED yugabytedb/yugabytedb-plain.svg yugabytedb
|
E7ED E8ED yugabytedb/yugabytedb-plain.svg yugabytedb
|
||||||
E7EE E8EE yunohost/yunohost-plain.svg yunohost
|
E7EE E8EE yunohost/yunohost-plain.svg yunohost
|
||||||
E7EF E8EF zig/zig-original.svg zig
|
E7EF E8EF zig/zig-plain.svg zig
|
||||||
|
|