update pure emacs configuration

This commit is contained in:
horhik 2021-05-02 18:32:09 +03:00
parent e0af9bae61
commit 319efb7f8f
1381 changed files with 3707 additions and 178 deletions

View File

@ -1,178 +0,0 @@
;;; Emacs dotfile
;; ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
;; ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
;; ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
;; ░░░░░░░░░░░░░░░░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░▀░█▀▀░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
;; ░░░░░░░░░░░░░░░░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░▀▀█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
;; ░░░░░░░░░░░░░░░░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░░░▀▀▀░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
;; ░░░░░░░░░░░░░░░░░░█▀▄░█▀█░▀█▀░█▀▀░▀█▀░█░░░█▀▀░█▀▀░░░░░░░░░░░░░░░░░░░░░░░░░░░░
;; ░░░░░░░░░░░░░░░░░░█░█░█░█░░█░░█▀▀░░█░░█░░░█▀▀░▀▀█░░░░░░░░░░░░░░░░░░░░░░░░░░░░
;; ░░░░░░░░░░░░░░░░░░▀▀░░▀▀▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀▀░░░░░░░░░░░░░░░░░░░░░░░░░░░░
;; ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
;; ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
;; ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.org/packages/"))
(package-initialize)
(unless package-archive-contents
(package-refresh-contents))
(defvar package-list
'( lsp-mode rustic evil-mc rainbow-delimiters doom-themes doom-modeline lusty-explorer ac-racer auto-complete all-the-icons linum-relative racer cargo flycheck-rust rust-mode gruvbox-theme evil general use-package treemacs treemacs-all-the-icons treemacs-evil))
(dolist (p package-list)
(when (not (package-installed-p p))
(package-install p)))
;;(mapc
;; (lambda (package)
;; (or (package-installed-p package)
;; (package-install package)))
;; '( lsp-mode rustic evil-mc rainbow-delimiters doom-themes doom-modeline lusty-explorer ac-racer auto-complete all-the-icons linum-relative racer cargo flycheck-rust rust-mode gruvbox-theme evil general))
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(custom-safe-themes
'("7661b762556018a44a29477b84757994d8386d6edee909409fabe0631952dad9" "8d7684de9abb5a770fbfd72a14506d6b4add9a7d30942c6285f020d41d76e0fa" "4cf9ed30ea575fb0ca3cff6ef34b1b87192965245776afa9e9e20c17d115f3fb" "b89ae2d35d2e18e4286c8be8aaecb41022c1a306070f64a66fd114310ade88aa" "aded61687237d1dff6325edb492bde536f40b048eab7246c61d5c6643c696b7f" default))
'(package-selected-packages
'(treemacs-magit treemacs-icons-dired spaceline lsp-mode rustic evil-mc rainbow-delimiters doom-themes doom-modeline lusty-explorer ac-racer auto-complete all-the-icons linum-relative treemacs treemacs-evil treemacs-all-the-icons racer cargo flycheck-rust rust-mode gruvbox-theme evil ##)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(require 'use-package)
;; AutoComplition
(ac-config-default)
(global-auto-complete-mode t)
;; Evil mode
(require 'evil)
(evil-mode 1)
(require 'evil-mc)
(evil-mc-mode 1) ;; enable
;; Appearance
;; Font
(add-to-list 'default-frame-alist '(font . "Mononoki Nerd Font" ))
(set-face-attribute 'default t :font "Mononoki Nerd Font" )
;; theme
(load-theme 'gruvbox-dark-medium)
(menu-bar-mode -1)
(toggle-scroll-bar -1)
(tool-bar-mode -1)
(require 'linum-relative)
(setq display-line-numbers 'relative)
;; mode line
(require 'doom-modeline)
(doom-modeline-mode 1)
(defun add-to-map(keys func)
"Add a keybinding in evil mode from keys to func."
(define-key evil-normal-state-map (kbd keys) func)
(define-key evil-motion-state-map (kbd keys) func))
(add-to-map "<SPC>" nil)
(add-to-map "<SPC> f" 'lusty-file-explorer)
(add-to-map "<SPC> b" 'lusty-buffer-explorer)
(add-to-map "<SPC> o" 'treemacs)
(add-to-map "<SPC> s" 'save-buffer)
(add-to-map "<SPC> <SPC>" 'execute-extended-command)
(defun open-file (file)
"just more shortest function for opening the file"
(interactive)
((lambda (file) (interactive)
(find-file (expand-file-name (format "%s" file)))) file ) )
(general-evil-setup)
(general-nmap
:prefix "SPC"
;; dotfiles editing config
"e e" (lambda() (interactive) (find-file "~/.emacs" ))
"e v" (lambda() (interactive) (find-file "~/.config/nvim/init.vim" ))
"e d" (lambda() (interactive) (find-file "~/dotfiles/home" ))
"e a" (lambda() (interactive) (find-file "~/.config/alacritty/alacritty.yml" ))
;; evil-mc
"c u" 'evil-mc-undo-all-cursors
"c j" 'evil-mc-make-and-goto-prev-cursor
"c k" 'evil-mc-make-and-goto-next-cursor
"c m" 'evil-mc-make-all-cursors
)
;; bind in motion state (inherited by the normal, visual, and operator states)
(general-mmap
"N" 'evil-mc-make-cursor-in-visual-selection-beg
)
;; alternatively, for shorter names
(general-evil-setup t)
(mmap)
(setq vc-follow-symlinks t)
;; Syntax
(require 'flycheck)
(use-package flycheck
:ensure t
:init (global-flycheck-mode))
(use-package treemacs
:ensure t
:defer t
:init
(with-eval-after-load 'winum
(define-key winum-keymap (kbd "M-0") #'treemacs-select-window))
:config
(progn
(treemacs-follow-mode t)
(treemacs-filewatch-mode t)
(treemacs-fringe-indicator-mode 'always)
))
(use-package treemacs-evil
:after (treemacs evil)
:ensure t)
(use-package treemacs-icons-dired
:after (treemacs dired)
:ensure t
:config (treemacs-icons-dired-mode))
(use-package treemacs-magit
:after (treemacs magit)
:ensure t)
(add-hook 'after-init-hook (lambda() (interactive)))
(find-file "~/.emacs")
(setq inhibit-startup-message t)
(setq initial-scratch-message ";; Happy Hacking")
;; Rust
(setq lsp-rust-server 'rust-analyzer)

View File

@ -0,0 +1,478 @@
#+title: Emacs config
#+author O. George
#+BABEL: :cache no
#+PROPERTY: header-args:emacs-lisp :tangle init.el
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░▀░█▀▀░░░░
░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░▀▀█░░░░
░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░░░▀▀▀░░░░
░░█▀▄░█▀█░▀█▀░█▀▀░▀█▀░█░░░█▀▀░█▀▀░░
░░█░█░█░█░░█░░█▀▀░░█░░█░░░█▀▀░▀▀█░░
░░▀▀░░▀▀▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀▀░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
* Help info
~C-z~ to toggle vim/emacs mode
* UI
** Cleaning up UI
#+begin_src emacs-lisp
(require 'package)
(setq inhibit-startup-message t)
(menu-bar-mode -1)
(toggle-scroll-bar -1)
(tool-bar-mode -1)
(tooltip-mode -1)
(set-fringe-mode 10)
(visual-line-mode t)
#+end_src
** Initializing packages
#+begin_src emacs-lisp
(add-to-list 'package-archives
'("melpa" . "http://melpa.org/packages/"))
(package-initialize)
(unless package-archive-contents
(package-refresh-contents))
(defvar package-list
'( lsp-mode rustic evil-mc rainbow-delimiters doom-themes doom-modeline lusty-explorer ac-racer auto-complete all-the-icons linum-relative racer cargo flycheck-rust rust-mode gruvbox-theme evil general use-package treemacs treemacs-all-the-icons treemacs-evil org-roam org-roam-server interaction-log))
(dolist (p package-list)
(when (not (package-installed-p p))
(package-install p)))
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(custom-safe-themes
'("75b8719c741c6d7afa290e0bb394d809f0cc62045b93e1d66cd646907f8e6d43" "7661b762556018a44a29477b84757994d8386d6edee909409fabe0631952dad9" default))
'(package-selected-packages
'(neotree treemacs-persp spaceline-all-the-icons all-the-icons-ivy-rich all-the-icons-ivy treemacs-the-icons dired-icon treemacs-magit treemacs-projectile nlinum linum-mode unicode-fonts ewal-doom-themes ivy-rich which-key counsel org-roam treemacs-evil treemacs-all-the-icons treemacs use-package general gruvbox-theme flycheck-rust cargo linum-relative ac-racer lusty-explorer doom-modeline doom-themes rainbow-delimiters evil-mc rustic lsp-mode avy)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
;; Setting up use-package
(require 'use-package)
(setq use-package-always-ensure t)
#+end_src
** Fonts
#+begin_src emacs-lisp
;; Default fonts
(add-to-list 'default-frame-alist '(font . "Mononoki Nerd Font" ))
(set-face-attribute 'default t :font "Mononoki Nerd Font" )
(use-package unicode-fonts
:init
(unicode-fonts-setup))
(set-fontset-font "fontset-startup" 'unicode
(font-spec :name "Mononoki Nerd Font" :size 14))
;; Fallback for emojies
(set-fontset-font "fontset-default" 'unicode
(font-spec :name "Twemoji" :size 14))
#+end_src
*** Theme
#+begin_src emacs-lisp
(load-theme 'gruvbox-dark-hard)
#+end_src
** Emojies
#+begin_src emacs-lisp
;; Emojies
(use-package emojify
:hook (after-init . global-emojify-mode)
:config
(setq emojify-emoji-set "twemoji-v2")
(setq emojify-set-emoji-styles 'unicode)
(setq emojify-display-style 'unicode)
)
#+end_src
** Modeline (bottom bar)
#+begin_src emacs-lisp
;; mode line
(require 'doom-modeline)
(doom-modeline-mode 1)
#+end_src
** Line numbers
#+begin_src emacs-lisp
;; Line numbers
(column-number-mode)
;; Enable line numbers for some modes
(dolist (mode '(text-mode-hook
prog-mode-hook
conf-mode-hook))
(add-hook mode (lambda ()
(display-line-numbers-mode 1)
(setq display-line-numbers 'relative))))
;; Override some modes which derive from the above
(dolist (mode '(org-mode-hook))
(add-hook mode (lambda () (display-line-numbers-mode 0))))
#+end_src
* Evil mode
#+begin_src emacs-lisp
(use-package evil
:ensure t
:init
(setq evil-want-integration t) ;; This is optional since it's already set to t by default.
(setq evil-want-keybinding nil)
:config
(evil-mode 1)
(define-key evil-insert-state-map (kbd "C-g") 'evil-normal-state)
(evil-global-set-key 'motion "j" 'evil-next-visual-line)
(evil-global-set-key 'motion "k" 'evil-previous-visual-line)
)
(use-package undo-tree
:after evil
:init
(global-undo-tree-mode)
(evil-set-undo-system 'undo-tree)
)
(use-package evil-mc
:after evil
:config
(evil-mc-mode 1) ;; enable
(global-set-key (kbd "<secape>") 'keyboard-escape-quit)
:bind (
:map evil-normal-state-map
("SPC m u" . evil-mc-undo-all-cursors)
:map evil-visual-state-map
("SPC m a" . evil-mc-make-cursor-in-visual-selection-beg)
)
)
(use-package evil-collection
:ensure t
:after evil
:config
(evil-collection-init))
#+end_src
* Completition
#+begin_src emacs-lisp
(use-package counsel)
(use-package ivy
:diminish
:bind (
("M-x" . counsel-M-x)
("C-s" . swiper)
:map ivy-minibuffer-map
("TAB" . ivy-alt-done)
("C-f" . ivy-alt-done)
("C-l" . ivy-alt-done)
("C-j" . ivy-next-line)
("C-k" . ivy-previous-line)
:map ivy-switch-buffer-map
("C-k" . ivy-previous-line)
("C-l" . ivy-done)
("C-d" . ivy-switch-buffer-kill)
:map ivy-reverse-i-search-map
("C-k" . ivy-previous-line)
("C-d" . ivy-reverse-i-search-kill))
:init
(ivy-mode 1))
#+end_src
#+RESULTS:
: ivy-reverse-i-search-kill
* Keybindings
#+begin_src emacs-lisp
(defun add-to-map(keys func)
"Add a keybinding in evil mode from keys to func."
(define-key evil-normal-state-map (kbd keys) func)
(define-key evil-motion-state-map (kbd keys) func))
(add-to-map "<SPC>" nil)
(add-to-map "<SPC> <SPC>" 'counsel-M-x)
;; (add-to-map "<SPC> f" 'lusty-file-explorer)
;; (add-to-map "<SPC> b" 'lusty-buffer-explorer)
(add-to-map "<SPC> o" 'treemacs)
(add-to-map "<SPC> s" 'save-buffer)
(defun open-file (file)
"just more shortest function for opening the file"
(interactive)
((lambda (file) (interactive)
(find-file (expand-file-name (format "%s" file)))) file ) )
(general-evil-setup)
(general-nmap
:prefix "SPC"
;; dotfiles editing config
"f f" '(counsel-find-file :which-key "find-file")
"f r" '(counsel-buffer-or-recentf :which-key "recent files")
"b b" '(counsel-switch-buffer :which-key "switch buff")
"f e" '(lambda() (interactive) (find-file "~/.emacs.d/config.org") :which-key "config.org")
"f v" '(lambda() (interactive) (find-file "~/.config/nvim/init.vim" :which-key "neovim config" ))
"f d" '(lambda() (interactive) (find-file "~/dotfiles/home" :which-key "dotfiles dired" ))
"f a" '(lambda() (interactive) (find-file "~/.config/alacritty/alacritty.yml" :which-key "alacritty"))
"f b" '(lambda() (interactive) (find-file "~/Brain" :which-key "my brain")))
#+end_src
* Features
** Org roam
#+begin_src emacs-lisp
(use-package org-roam
:ensure t
:hook
(after-init . org-roam-mode)
:custom
(org-roam-directory "~/Brain")
:config
(setq
org-roam-server-host "127.0.0.1"
org-roam-server-port 5034
org-roam-server-authenticate nil
org-roam-server-export-inline-images t
org-roam-server-serve-files nil
org-roam-server-served-file-extensions '("pdf" "mp4" "ogv")
org-roam-server-network-poll t
org-roam-server-network-arrows nil
org-roam-server-network-label-truncate t
org-roam-server-network-label-truncate-length 60
org-roam-server-network-label-wrap-length 20)
:bind (:map org-roam-mode-map
(("C-c o l" . org-roam)
("C-c o f" . org-roam-find-file)
("C-c o g" . org-roam-graph)
("C-c o t" . org-roam-dailies-capture-today))
:map org-mode-map
(("C-c o i" . org-roam-insert))
(("C-c o I" . org-roam-insert-immediate)))
)
#+end_src
** Org roam protocol
#+begin_src emacs-lisp
(require 'org-roam-protocol)
#+end_src
** Interaction log
#+begin_src emacs-lisp
(use-package interaction-log
:ensure t)
#+end_src
** Rainbow brakets
#+begin_src emacs-lisp
(use-package highlight-parentheses
:ensure t
:init
(global-highlight-parentheses-mode t)
(show-paren-mode t)) ;
(use-package rainbow-delimiters
:hook (prog-mode . rainbow-delimiters-mode))
#+end_src
** Which key (keybindings autocompletition )
#+begin_src emacs-lisp
;;Which key
(use-package which-key
:init (which-key-mode)
:diminish which-key-mode
:config
(setq which-key-idle-delay 0.3))
(use-package ivy-rich
:init
(ivy-rich-mode 1))
#+end_src
** Treemacs (file tree)
#+begin_src emacs-lisp
(use-package all-the-icons)
(use-package treemacs-all-the-icons)
(use-package treemacs
:after all-the-icons
:ensure t
:defer t
:init
(with-eval-after-load 'winum
(define-key winum-keymap (kbd "M-0") #'treemacs-select-window))
:config
(progn
(setq treemacs-collapse-dirs (if treemacs-python-executable 3 0)
treemacs-deferred-git-apply-delay 0.5
treemacs-directory-name-transformer #'identity
treemacs-display-in-side-window t
treemacs-eldoc-display t
treemacs-file-event-delay 5000
treemacs-file-extension-regex treemacs-last-period-regex-value
treemacs-file-follow-delay 0.2
treemacs-file-name-transformer #'identity
treemacs-follow-after-init t
treemacs-git-command-pipe ""
treemacs-goto-tag-strategy 'refetch-index
treemacs-indentation 2
treemacs-indentation-string " "
treemacs-is-never-other-window nil
treemacs-max-git-entries 5000
treemacs-missing-project-action 'ask
treemacs-move-forward-on-expand nil
treemacs-no-png-images nil
treemacs-no-delete-other-windows t
treemacs-project-follow-cleanup nil
treemacs-persist-file (expand-file-name ".cache/treemacs-persist" user-emacs-directory)
treemacs-position 'left
treemacs-read-string-input 'from-child-frame
treemacs-recenter-distance 0.1
treemacs-recenter-after-file-follow nil
treemacs-recenter-after-tag-follow nil
treemacs-recenter-after-project-jump 'always
treemacs-recenter-after-project-expand 'on-distance
treemacs-show-cursor nil
treemacs-show-hidden-files t
treemacs-silent-filewatch nil
treemacs-silent-refresh nil
treemacs-sorting 'alphabetic-asc
treemacs-space-between-root-nodes t
treemacs-tag-follow-cleanup t
treemacs-tag-follow-delay 1.5
treemacs-user-mode-line-format nil
treemacs-user-header-line-format nil
treemacs-width 35
treemacs-workspace-switch-cleanup nil)
;; The default width and height of the icons is 22 pixels. If you are
;; using a Hi-DPI display, uncomment this to double the icon size.
;;(treemacs-resize-icons 44)
(treemacs-follow-mode t)
(treemacs-filewatch-mode t)
(treemacs-load-theme 'all-the-icons)
(treemacs-fringe-indicator-mode 'always)
(pcase (cons (not (null (executable-find "git")))
(not (null treemacs-python-executable)))
(`(t . t)
(treemacs-git-mode 'deferred))
(`(t . _)
(treemacs-git-mode 'simple))))
:bind
(:map global-map
("M-0" . treemacs-select-window)
("C-x t 1" . treemacs-delete-other-windows)
("C-x t t" . treemacs)
("C-x t B" . treemacs-bookmark)
("C-x t C-t" . treemacs-find-file)
("C-x t M-t" . treemacs-find-tag)))
(use-package treemacs-evil
:after (treemacs evil)
:ensure t)
(use-package treemacs-projectile
:after (treemacs projectile)
:ensure t)
(use-package treemacs-icons-dired
:after (treemacs dired)
:ensure t
:config (treemacs-icons-dired-mode))
(use-package treemacs-magit
:after (treemacs magit)
:ensure t)
(use-package treemacs-persp ;;treemacs-perspective if you use perspective.el vs. persp-mode
:after (treemacs persp-mode) ;;or perspective vs. persp-mode
:ensure t
:config (treemacs-set-scope-type 'Perspectives))
(use-package neotree
:ensure t
:init
(setq neo-theme (if (display-graphic-p) 'icons 'arrow))
)
#+end_src
** Literate programming
#+begin_src emacs-lisp
(org-babel-do-load-languages
'org-babel-load-languages
'((python . t)))
#+end_src
** StartPage
#+begin_src emacs-lisp
(find-file "~/.emacs.d/startup.org")
#+end_src
* Languages
** Rust
#+begin_src emacs-lisp
(use-package rustic
:ensure t
:init
(setq rustic-lsp-server 'rls)
)
#+end_src
* Themes
** Treemacs
#+begin_src emacs-lisp
(treemacs-create-theme "Material"
:icon-directory (treemacs-join-path treemacs-dir "/home/horhik/.emacs.d/icons")
:config
(progn
(treemacs-create-icon :file "folder-core-open.png" :fallback "📁" :extensions (root-open))
(treemacs-create-icon :file "folder-core.png" :fallback "📁" :extensions (root-closed))
(treemacs-create-icon :file "folder-node-open.png" :fallback "📂" :extensions (dir-open))
(treemacs-create-icon :file "folder-node.png" :fallback "📁" :extensions (dir-closed))
(treemacs-create-icon :file "folder-test-open.png" :fallback "📂" :extensions ("tests"))
(treemacs-create-icon :file "folder-test.png" :fallback "📁" :extensions ("tests"))
(treemacs-create-icon :file "emacs.png" :fallback "💜" :extensions ("el" "elc" ".spacemacs" "doom" ))
(treemacs-create-icon :file "emacs.png" :fallback "💜" :extensions ("el" "elc"))
(treemacs-create-icon :file "markdown.png" :fallback "📖" :extensions ("md"))
(treemacs-create-icon :file "readme.png" :fallback "📖" :extensions ("readme.md" "README.md" "README" "readme"))
(treemacs-create-icon :file "editorconfig.png" :fallback "📖" :extensions ("editorconfig"))
(treemacs-create-icon :file "org.png" :fallback "🐴" :extensions ("org"))
(treemacs-create-icon :file "rust.png" :fallback "🐴" :extensions ("rs"))
(treemacs-create-icon :file "haskell.png" :fallback "🐴" :extensions ("hs" "haskell"))
(treemacs-create-icon :file "c.png" :fallback "🐴" :extensions ("c"))
(treemacs-create-icon :file "cpp.png" :fallback "🐴" :extensions ("cpp" "c++"))
(treemacs-create-icon :file "h.png" :fallback "🐴" :extensions ("h"))
(treemacs-create-icon :file "diff.png" :fallback "🐴" :extensions ("diff"))
(treemacs-create-icon :file "makefile.png" :fallback "🐴" :extensions ("mk" "make" "Makefile"))
(treemacs-create-icon :file "assembly.png" :fallback "🐴" :extensions ("bin" "so" "o"))
(treemacs-create-icon :file "document.png" :fallback "🐴" :extensions ("" "txt"))
(treemacs-create-icon :file "file.png" :fallback "🐴" :extensions (fallback))
(treemacs-create-icon :file "toml.png" :fallback "🗃️" :extensions ("toml"))
(treemacs-create-icon :file "json.png" :fallback "🗃️" :extensions ("json"))
(treemacs-create-icon :file "yaml.png" :fallback "🗃️" :extensions ("yml" "yaml"))
(treemacs-create-icon :file "vim.png" :fallback "🗃️" :extensions ("vim" "vi" "nvim"))
(treemacs-create-icon :file "video.png" :fallback "🗃️" :extensions ("mp4" "avi" "gif" "mpv"))
(treemacs-create-icon :file "audio.png" :fallback "🗃️" :extensions ("mp3" "ogg" "wav" ))
(treemacs-create-icon :file "image.png" :fallback "🗃️" :extensions ("png" "jpg"))
(treemacs-create-icon :file "svg.png" :fallback "🗃️" :extensions ("svg"))
(treemacs-create-icon :file "css.png" :fallback "🗃️" :extensions ("css"))
(treemacs-create-icon :file "console.png" :fallback "🗃️" :extensions ("bash" "sh"))
(treemacs-create-icon :file "certificate.png" :fallback "🗃️" :extensions ("cert" "LICENSE" "license" "gpl" "mit" "gpl3" "gplv3" "apache"))
(treemacs-create-icon :file "database.png" :fallback "🗃️" :extensions ("sqlite" "db" "sql"))
(treemacs-create-icon :file "lua.png" :fallback "🗃️" :extensions ("lua"))
(treemacs-create-icon :file "javascript.png" :fallback "🗃️" :extensions ("js" "javascript"))
(treemacs-create-icon :file "typescript.png" :fallback "🗃️" :extensions ("ts" "typescript"))
(treemacs-create-icon :file "react.png" :fallback "🗃️" :extensions ("jsx"))
(treemacs-create-icon :file "react_ts.png" :fallback "🗃️" :extensions ("tsx"))
(treemacs-create-icon :file "settings.png" :fallback "🗃️" :extensions ("config" "conf" "rc" "*rc"))
(treemacs-create-icon :file "sass.png" :fallback "🗃️" :extensions ("sass" "scss"))
(treemacs-create-icon :file "xml.png" :fallback "🗃️" :extensions ("xml"))
(treemacs-create-icon :file "less.png" :fallback "🗃️" :extensions ("less"))
(treemacs-create-icon :file "pdf.png" :fallback "🗃️" :extensions ("pdf"))
(treemacs-create-icon :file "tex.png" :fallback "🗃️" :extensions ("tex" "latex" ))
(treemacs-create-icon :file "log.png" :fallback "🗃️" :extensions ("log" ))
(treemacs-create-icon :file "word.png" :fallback "🗃️" :extensions ("docs" "docx" "word" ))
(treemacs-create-icon :file "powerpoint.png" :fallback "🗃️" :extensions ("ppt" "pptx" ))
(treemacs-create-icon :file "html.png" :fallback "🗃️" :extensions ("html"))
(treemacs-create-icon :file "zip.png" :fallback "🗃️" :extensions ("zip" "tar" "tar.xz" "xz" "xfv" "7z"))
(treemacs-create-icon :file "todo.png" :fallback "🗃️" :extensions ("TODO" "todo" "Tasks" ))
(treemacs-create-icon :file "webassembly" :fallback "🗃️" :extensions ("wasm" "webasm" "webassembly"))
(treemacs-create-icon :file "python" :fallback "🗃️" :extensions ("py" "python"))
)
)
(treemacs-load-theme 'Material)
#+end_src

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m21 16.5c0 .38-.21.71-.53.88l-7.9 4.44c-.16.12-.36.18-.57.18s-.41-.06-.57-.18l-7.9-4.44c-.32-.17-.53-.5-.53-.88v-9c0-.38.21-.71.53-.88l7.9-4.44c.16-.12.36-.18.57-.18s.41.06.57.18l7.9 4.44c.32.17.53.5.53.88v9m-9-12.35-5.96 3.35 5.96 3.35 5.96-3.35-5.96-3.35m-7 11.76 6 3.38v-6.71l-6-3.37v6.7m14 0v-6.7l-6 3.37v6.71z" style="fill:#29b6f6"/></svg>

After

Width:  |  Height:  |  Size: 428 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m13.295 11.033v-3.3829l2.1264-2.136c0.77323-0.76357 0.91821-1.9814 0.37695-2.9286-0.43494-0.76357-1.2275-1.2178-2.0684-1.2178-0.20297 0-0.43494 0.028996-0.61858 0.086988-1.0439 0.2803-1.7494 1.2468-1.7494 2.3294v3.1316l-3.0349 3.0639c-1.6045 1.6334-2.0877 4.0788-1.2082 6.2148 0.74423 1.8364 2.368 3.1026 4.2431 3.4312v0.58959c0 0.2513-0.2223 0.48327-0.48327 0.48327h-1.4498v1.9331h1.4498c1.3048 0 2.4163-1.0729 2.4163-2.4163v-0.48327c1.9621 0 4.0208-1.8558 4.0208-4.5911 0-2.223-1.8558-4.1078-4.0208-4.1078m0-7.249c0-0.2223 0.10632-0.39628 0.30929-0.45427 0.21264-0.057992 0.43494 0.028996 0.54126 0.2223 0.11598 0.19331 0.07732 0.43494-0.07732 0.58959l-0.77323 0.83122v-1.1888m-1.9331 7.7323c-0.93754 0.61858-1.6431 1.6818-1.8944 2.6676l1.8944 0.5026v2.9479c-1.0922-0.28996-2.0297-1.0825-2.484-2.1844-0.57026-1.4111-0.26097-3.0156 0.80223-4.0981l1.6818-1.7688v1.9331m1.9331 6.2825v-4.8907c1.1308 0 2.1071 1.0632 2.1071 2.2327 0 1.6914-1.2275 2.658-2.1071 2.658z" fill="#ff5722" stroke-width=".96654"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,3 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m4.7441 2.0312c-1.1572 0-1.9943.3103-2.5098.92969-.51549.61202-.77148 1.6783-.77148 3.1973v2.4668c0 1.4084-.40163 2.1113-1.2012 2.1113v2.0352c.79954 0 1.2012.6784 1.2012 2.0352v2.6543c0 1.5116.25855 2.5624.7793 3.1523s1.3552.88477 2.502.88477v-2.0684c-.44711 0-.77082-.1508-.9707-.45313-.19462-.30232-.29102-.81449-.29102-1.5371v-2.2676c0-1.8066-.40479-2.9374-1.2148-3.3945v-.044922c.81006-.46454 1.2148-1.5819 1.2148-3.3516v-2.3555c0-1.283.4201-1.9258 1.2617-1.9258v-2.0684zm14.66 0v2.0684c.84162 0 1.2617.64276 1.2617 1.9258v2.2676c0 1.8434.40223 2.9964 1.207 3.4609v.044922c-.8048.44242-1.207 1.5443-1.207 3.3066v2.3555c0 .71525-.098944 1.2207-.29883 1.5156-.19988.30232-.52104.45313-.96289.45313v2.0684c1.152 0 1.9839-.29487 2.4941-.88477.51549-.5899.77148-1.6629.77148-3.2188v-2.5547c0-1.3789.40419-2.0684 1.209-2.0684v-2.0352c-.8048 0-1.209-.69622-1.209-2.0898v-2.5332c0-1.4895-.25599-2.5403-.77148-3.1523-.51549-.61939-1.3474-.92969-2.4941-.92969zm-3.0547 4.459c-.45491 0-.88595.057983-1.293.17383-.40702.11121-.76687.28639-1.0781.52734-.30726.24096-.5509.54849-.73047.92383-.17957.3707-.26953.81695-.26953 1.3359 0 .66263.16497 1.2273.49219 1.6953.3312.46802.83156.86313 1.502 1.1875.26337.12511.50888.24866.73633.36914s.42233.24525.58594.375c.1676.12975.29876.27091.39453.42383s.14453.32686.14453.52148c0 .14365-.029987.27918-.089843.4043-.059856.12048-.15169.22568-.27539.31836-.11971.088042-.27152.15801-.45508.20898-.17957.050972-.39135.076172-.63477.076172-.415 0-.8254-.083183-1.2324-.25-.40702-.17145-.78369-.4254-1.1309-.76367v2.2227c.31125.18535.67858.32529 1.1016.41797.42697.092676.87484.13867 1.3457.13867.4589 0 .89368-.0504 1.3047-.15234.415-.10194.77859-.26831 1.0898-.5.31125-.23632.55676-.54263.73633-.91797.18356-.37997.27539-.84824.27539-1.4043 0-.40314-.0525-.75544-.15625-1.0566-.10375-.30583-.25369-.57618-.44922-.8125s-.42974-.44746-.70508-.63281c-.27135-.18999-.5787-.36834-.92188-.53516-.2514-.12048-.47626-.23644-.67578-.34766-.19952-.11584-.3701-.23181-.50977-.34766-.13966-.12048-.24645-.24525-.32227-.375-.075817-.13438-.11523-.28631-.11523-.45312 0-.15292.033725-.28772.10156-.4082.067837-.12511.16536-.23227.28906-.32031.1237-.088042.27551-.15483.45508-.20117.17957-.050972.37818-.078125.59766-.078125.15962 0 .32638.015166.50195.042969.17957.027803.3595.07062.53906.13086.17957.055606.35389.12875.52148.2168.17159.088042.329.18884.47266.30469v-2.0781c-.2913-.12975-.60987-.22492-.95703-.28516-.34318-.064873-.73862-.095703-1.1855-.095703zm-8.7734.16602l-3.123 9.9668h2.0938l.60547-2.2168h3.0527l.60938 2.2168h2.1074l-3.0527-9.9668h-2.293zm1.0723 1.7793h.046875c.027933.34754.076694.64626.14453.89648l.92188 3.3496h-2.1973l.93359-3.377c.079808-.2873.13044-.57721.15039-.86914z" fill="#f44336"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0 0 180 180" xmlns="http://www.w3.org/2000/svg"><path d="m79.579 25.741-66.481 115.15h63.305l11.218-19.433h-40.008l32.191-55.758 20.005 34.649 11.423-19.783zm42.118 50.221-45.203 78.297h90.408z" style="fill:#7c4dff;paint-order:fill markers stroke;stroke-width:1.0631"/></svg>

After

Width:  |  Height:  |  Size: 304 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -0,0 +1 @@
<svg id="svg" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="svgg" transform="matrix(.034672 0 0 .034731 1.0606 1.0667)" style="fill:#00bcd4"><path d="m164.17 2.632c-130.3 23.066-202.57 166.55-144.04 285.97 73.17 149.28 289.78 148.05 360.87-2.033 69.814-147.38-56.187-312.37-216.83-283.93m16.938 67.233c74.291 14.891 150.93 38.093 153.63 46.514 7.473 23.27 7.369 139.61-.138 153.78-1.887 3.561-34.853-.358-60.009-7.133l-10.098-2.72-.041-12.561c-.122-37.687-3.961-73.359-8.369-77.767-5.06-5.06-37.814-15.67-88.007-28.507l-31.922-8.165-.421-7.693c-.946-17.257 3.374-56.135 6.694-60.254 1.827-2.266 9.093-1.419 38.678 4.511m-95.506 54.626c14.438 1.892 31.249 5.139 43.036 8.313l5.154 1.388.878 28.344c1.643 53.087 3.349 61.312 13.663 65.912 12.931 5.766 60.087 19.567 104.44 30.566l9.772 2.423-.284 18.793c-.321 21.172-2.371 40.126-5.039 46.577l-1.791 4.332-7.518-.875c-28.147-3.275-120.41-25.82-160.57-39.238-17.625-5.889-21.892-8.168-23.404-12.504-6.638-19.043-6.609-141.26.037-153.68 1.54-2.878 2.295-2.89 21.632-.356" style="fill-rule:evenodd;fill:#00bcd4"/></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -0,0 +1 @@
<svg id="svg" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="svgg" transform="matrix(.034672 0 0 .034731 1.0606 1.0667)" style="fill:#7986cb"><path d="m164.17 2.632c-130.3 23.066-202.57 166.55-144.04 285.97 73.17 149.28 289.78 148.05 360.87-2.033 69.814-147.38-56.187-312.37-216.83-283.93m16.938 67.233c74.291 14.891 150.93 38.093 153.63 46.514 7.473 23.27 7.369 139.61-.138 153.78-1.887 3.561-34.853-.358-60.009-7.133l-10.098-2.72-.041-12.561c-.122-37.687-3.961-73.359-8.369-77.767-5.06-5.06-37.814-15.67-88.007-28.507l-31.922-8.165-.421-7.693c-.946-17.257 3.374-56.135 6.694-60.254 1.827-2.266 9.093-1.419 38.678 4.511m-95.506 54.626c14.438 1.892 31.249 5.139 43.036 8.313l5.154 1.388.878 28.344c1.643 53.087 3.349 61.312 13.663 65.912 12.931 5.766 60.087 19.567 104.44 30.566l9.772 2.423-.284 18.793c-.321 21.172-2.371 40.126-5.039 46.577l-1.791 4.332-7.518-.875c-28.147-3.275-120.41-25.82-160.57-39.238-17.625-5.889-21.892-8.168-23.404-12.504-6.638-19.043-6.609-141.26.037-153.68 1.54-2.878 2.295-2.89 21.632-.356" style="fill-rule:evenodd;fill:#7986cb"/></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -0,0 +1 @@
<svg id="svg" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="svgg" transform="matrix(.034672 0 0 .034731 1.0606 1.0667)" style="fill:#ef5350"><path d="m164.17 2.632c-130.3 23.066-202.57 166.55-144.04 285.97 73.17 149.28 289.78 148.05 360.87-2.033 69.814-147.38-56.187-312.37-216.83-283.93m16.938 67.233c74.291 14.891 150.93 38.093 153.63 46.514 7.473 23.27 7.369 139.61-.138 153.78-1.887 3.561-34.853-.358-60.009-7.133l-10.098-2.72-.041-12.561c-.122-37.687-3.961-73.359-8.369-77.767-5.06-5.06-37.814-15.67-88.007-28.507l-31.922-8.165-.421-7.693c-.946-17.257 3.374-56.135 6.694-60.254 1.827-2.266 9.093-1.419 38.678 4.511m-95.506 54.626c14.438 1.892 31.249 5.139 43.036 8.313l5.154 1.388.878 28.344c1.643 53.087 3.349 61.312 13.663 65.912 12.931 5.766 60.087 19.567 104.44 30.566l9.772 2.423-.284 18.793c-.321 21.172-2.371 40.126-5.039 46.577l-1.791 4.332-7.518-.875c-28.147-3.275-120.41-25.82-160.57-39.238-17.625-5.889-21.892-8.168-23.404-12.504-6.638-19.043-6.609-141.26.037-153.68 1.54-2.878 2.295-2.89 21.632-.356" style="fill-rule:evenodd;fill:#ef5350"/></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -0,0 +1 @@
<svg id="svg" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="svgg" transform="matrix(.034672 0 0 .034731 1.0606 1.0667)" style="fill:#fbc02d"><path d="m164.17 2.632c-130.3 23.066-202.57 166.55-144.04 285.97 73.17 149.28 289.78 148.05 360.87-2.033 69.814-147.38-56.187-312.37-216.83-283.93m16.938 67.233c74.291 14.891 150.93 38.093 153.63 46.514 7.473 23.27 7.369 139.61-.138 153.78-1.887 3.561-34.853-.358-60.009-7.133l-10.098-2.72-.041-12.561c-.122-37.687-3.961-73.359-8.369-77.767-5.06-5.06-37.814-15.67-88.007-28.507l-31.922-8.165-.421-7.693c-.946-17.257 3.374-56.135 6.694-60.254 1.827-2.266 9.093-1.419 38.678 4.511m-95.506 54.626c14.438 1.892 31.249 5.139 43.036 8.313l5.154 1.388.878 28.344c1.643 53.087 3.349 61.312 13.663 65.912 12.931 5.766 60.087 19.567 104.44 30.566l9.772 2.423-.284 18.793c-.321 21.172-2.371 40.126-5.039 46.577l-1.791 4.332-7.518-.875c-28.147-3.275-120.41-25.82-160.57-39.238-17.625-5.889-21.892-8.168-23.404-12.504-6.638-19.043-6.609-141.26.037-153.68 1.54-2.878 2.295-2.89 21.632-.356" style="fill-rule:evenodd;fill:#fbc02d"/></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m14.847 5.3571h-.94915v-.94915h.94915m-4.7458.94915h-.94915v-.94915h.94915m5.2488-1.7464 1.2434-1.2434c.18034-.18034.18034-.48407 0-.6739-.18983-.18034-.49356-.18034-.6739 0l-1.4047 1.4047c-.75932-.37017-1.6136-.58847-2.5153-.58847-.91119 0-1.7654.21831-2.5247.59797l-1.4142-1.4142c-.18034-.18034-.48407-.18034-.66441 0-.18983.18983-.18983.49356 0 .6739l1.2434 1.2434c-1.4142 1.0441-2.3349 2.6956-2.3349 4.5939h11.39c0-1.8983-.94915-3.5593-2.3444-4.5939m4.7173 5.5431a1.4237 1.4237 0 0 0 -1.4237 1.4237v6.6441a1.4237 1.4237 0 0 0 1.4237 1.4237 1.4237 1.4237 0 0 0 1.4237 -1.4237v-6.6441a1.4237 1.4237 0 0 0 -1.4237 -1.4237m-16.136 0a1.4237 1.4237 0 0 0 -1.4237 1.4237v6.6441a1.4237 1.4237 0 0 0 1.4237 1.4237 1.4237 1.4237 0 0 0 1.4237 -1.4237v-6.6441a1.4237 1.4237 0 0 0 -1.4237 -1.4237m2.3729 9.4915a.94915 .94915 0 0 0 .94915 .94915h.94915v3.322a1.4237 1.4237 0 0 0 1.4237 1.4237 1.4237 1.4237 0 0 0 1.4237 -1.4237v-3.322h1.8983v3.322a1.4237 1.4237 0 0 0 1.4237 1.4237 1.4237 1.4237 0 0 0 1.4237 -1.4237v-3.322h.94915a.94915 .94915 0 0 0 .94915 -.94915v-9.4915h-11.39z" fill="#c0ca33" stroke-width=".94915" style="fill:#8bc34a"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,3 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 2.5 8.84 3.15-1.34 11.7-7.5 4.15-7.5-4.15-1.34-11.7 8.84-3.15m0 2.1-5.53 12.4h2.06l1.11-2.78h4.7l1.11 2.78h2.05l-5.5-12.4m1.62 7.9h-3.23l1.61-3.87z" fill="#0288d1"/>
</svg>

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,3 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 2.5 8.84 3.15-1.34 11.7-7.5 4.15-7.5-4.15-1.34-11.7 8.84-3.15m0 2.1-5.53 12.4h2.06l1.11-2.78h4.7l1.11 2.78h2.05l-5.5-12.4m1.62 7.9h-3.23l1.61-3.87z" fill="#ab47bc"/>
</svg>

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,3 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 2.5 8.84 3.15-1.34 11.7-7.5 4.15-7.5-4.15-1.34-11.7 8.84-3.15m0 2.1-5.53 12.4h2.06l1.11-2.78h4.7l1.11 2.78h2.05l-5.5-12.4m1.62 7.9h-3.23l1.61-3.87z" fill="#43a047"/>
</svg>

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,3 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 2.5 8.84 3.15-1.34 11.7-7.5 4.15-7.5-4.15-1.34-11.7 8.84-3.15m0 2.1-5.53 12.4h2.06l1.11-2.78h4.7l1.11 2.78h2.05l-5.5-12.4m1.62 7.9h-3.23l1.61-3.87z" fill="#00897b"/>
</svg>

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,3 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 2.5 8.84 3.15-1.34 11.7-7.5 4.15-7.5-4.15-1.34-11.7 8.84-3.15m0 2.1-5.53 12.4h2.06l1.11-2.78h4.7l1.11 2.78h2.05l-5.5-12.4m1.62 7.9h-3.23l1.61-3.87z" fill="#43a047"/>
</svg>

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,3 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 2.5 8.84 3.15-1.34 11.7-7.5 4.15-7.5-4.15-1.34-11.7 8.84-3.15m0 2.1-5.53 12.4h2.06l1.11-2.78h4.7l1.11 2.78h2.05l-5.5-12.4m1.62 7.9h-3.23l1.61-3.87z" fill="#ffca28"/>
</svg>

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,3 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m12 2.5 8.84 3.15-1.34 11.7-7.5 4.15-7.5-4.15-1.34-11.7 8.84-3.15m0 2.1-5.53 12.4h2.06l1.11-2.78h4.7l1.11 2.78h2.05l-5.5-12.4m1.62 7.9h-3.23l1.61-3.87z" fill="#e53935"/>
</svg>

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,5 @@
<svg version="1.1" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<title>api-blueprint</title>
<desc>Created with Sketch.</desc>
<path d="m50.001 8.2165a16.998 16.998 0 0 0 -16.998 16.998 16.998 16.998 0 0 0 4.9453 11.973l-13.219 20.906a16.998 16.998 0 0 0 -3.1758 -.30859 16.998 16.998 0 0 0 -16.998 16.998 16.998 16.998 0 0 0 16.998 16.998 16.998 16.998 0 0 0 16.998 -16.998 16.998 16.998 0 0 0 -7.0625 -13.773l12.576-19.889a16.998 16.998 0 0 0 5.9355 1.0918 16.998 16.998 0 0 0 6.1543 -1.1543l12.537 19.83a16.998 16.998 0 0 0 -7.2441 13.895 16.998 16.998 0 0 0 16.998 17 16.998 16.998 0 0 0 16.998 -17 16.998 16.998 0 0 0 -16.998 -16.998 16.998 16.998 0 0 0 -2.9492 .26172l-13.293-21.025a16.998 16.998 0 0 0 4.7949 -11.807 16.998 16.998 0 0 0 -16.998 -16.998z" fill="#42a5f5"/>
</svg>

After

Width:  |  Height:  |  Size: 799 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,5 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(.66949 0 0 .66949 5.6001 2.6725)" fill="#7e57c2">
<path d="m9.5594-1.6112c-8.5849 0-15.543 6.9586-15.543 15.543 0 8.5848 6.9585 15.543 15.543 15.543 8.5849 0 15.543-6.9585 15.543-15.543 0-1.4521-.19809-2.8571-.57053-4.1907h-.0029a.77582.77582 0 0 0-.03765-.13901c-.0042-.015545-.02028-.046337-.02028-.046337a.77613.77613 0 0 0-.7037-.45179.77721.77721 0 0 0-.77905.77616c0 .087358.01702.17088.04345.24906l-.0029.0029a14.045 14.045 0 0 1 .5184 3.7997c0 3.7367-1.453 7.2512-4.0951 9.8931-2.6423 2.6425-6.1566 4.0951-9.8931 4.0951-3.7367 0-7.2512-1.4529-9.8931-4.0951-2.6427-2.6423-4.098-6.1568-4.098-9.8931 0-3.7368 1.4556-7.2511 4.098-9.8931 2.642-2.6425 6.1566-4.0951 9.8931-4.0951 3.3368 0 6.4936 1.1599 9.0127 3.29a1.8992 1.8992 0 0 0-.13032.69507c0 1.0494.85033 1.8998 1.8998 1.8998 1.0492 0 1.8998-.85041 1.8998-1.8998 0-1.0494-.85058-1.8998-1.8998-1.8998-.22897 0-.4483.041698-.65162.11584-2.721-2.34-6.2604-3.7562-10.131-3.7562zm-1.9636 7.2461-5.7256 14.86h3.5883l.93544-2.5167h5.4099l-.97889-2.7861h-3.5622l2.3169-6.3917 4.1212 11.694h3.5854l-5.7256-14.86z" fill="#7e57c2" stroke-width=".16356"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,3 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m18.733 19.499c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53-1.71-2.47-3.02-7.02-1.26-10.08.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83m-5.71-16c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z" fill="#78909c"/>
</svg>

After

Width:  |  Height:  |  Size: 558 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -0,0 +1,5 @@
<svg preserveAspectRatio="xMidYMid" version="1.1" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(.86441 0 0 .86441 17.356 17.356)" fill-rule="evenodd">
<path d="m127.59 0c71.249 0 128.41 57.165 128.41 127.59 0 71.249-57.165 128.41-128.41 128.41-70.421 0-127.59-57.165-127.59-128.41 0-70.421 57.165-127.59 127.59-127.59zm31.482 152.44c-14.084 18.227-39.767 21.54-57.165 7.4563-17.398-13.256-19.883-38.939-5.7994-57.165 14.913-17.398 40.595-20.712 57.994-7.4563 17.398 14.084 19.883 39.767 4.9709 57.165zm-67.935 83.676 48.88-47.223c-18.227 4.1424-37.282.82848-52.194-11.599-17.398-13.256-24.854-35.625-22.369-56.337l-43.909 48.052s-5.7994-10.77-7.4563-30.654l77.049-60.479c23.197-16.57 54.68-17.398 77.049 0 24.854 19.883 29.825 56.337 11.599 83.676l-56.337 80.362c-8.2848 0-24.854-2.4854-32.311-5.7994z" fill="#00b3e0"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 865 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 B

View File

@ -0,0 +1 @@
<svg width="720" height="720" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><symbol id="a" preserveAspectRatio="xMinYMin meet" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke-opacity="100%" stroke-width="60" stroke="#00979c" d="M174 30a10.5 10.1 0 0 0 0 280C364 320 344 30 544 30a10.5 10.1 0 0 1 0 280C354 320 374 30 174 30"/><path d="M528 205v-32.8h-32.5v-13.7H528V126h13.9v32.5h32.5v13.7h-32.5V205H528z" text-anchor="middle" fill="#00979c" stroke-width="20" stroke="#00979c" font-family="sans-serif" font-size="167"/><path fill="#00979c" stroke="#00979c" stroke-width="23.6" transform="matrix(1.56 0 0 .64 -366 .528)" d="M321 266v-17.4h53.3V266H321z"/></symbol></defs><title>Layer 1</title><use x="20.063" y="360.85" transform="matrix(.997 0 0 .997 -18.596 -159.19)" xlink:href="#a"/></svg>

After

Width:  |  Height:  |  Size: 842 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.079038 0 0 .079038 .13689 .38864)"><path d="m164.74 23.425c-1.585-.01125-3.1996.29044-4.7608.93647-2.4094.99696-4.3208 2.6712-5.6202 4.7056-.53792.7509-1.0007 1.5743-1.3698 2.4662l-45.966 111.09h-44.325c-6.7585 0-12.2 5.4416-12.2 12.2 0 6.7585 5.4416 12.199 12.2 12.199h34.229l-.0055.014h26.406l.006-.014h26.424c6.7586 0 12.199-5.4401 12.199-12.199 0-6.7586-5.4401-12.2-12.199-12.2h-16.33l31.143-75.263 80.655 194.92c2.5841 6.245 9.6922 9.1916 15.937 6.6076 6.245-2.5841 9.1917-9.6922 6.6076-15.937l-91.853-221.98c-1.938-4.6837-6.4216-7.5125-11.176-7.544zm-121.06 165.21c-6.7585 0-12.199 5.4416-12.199 12.2 0 6.7586 5.4401 12.2 12.199 12.2h34.21l-16.752 40.487c-2.5841 6.2451.36407 13.35 6.609 15.934 6.2451 2.5841 13.35-.36112 15.934-6.6061l20.614-49.816h26.445c6.7585 0 12.199-5.4416 12.199-12.2 0-6.7585-5.4402-12.2-12.199-12.2z" style="fill:#f44336;paint-order:fill markers stroke;stroke-miterlimit:1.5;stroke-width:0"/></g></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,4 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m1.6992 1.5469v20.904h3.3828v-2.0879h-1.6914v-16.727h1.6914v-2.0898zm17.219 0v2.0898h1.6934v16.727h-1.6934v2.0898h3.3828v-20.906z" fill="#ff6e40"/>
<path d="m15.165 4.0077c-.4999 0-.9297.075595-1.2894.22496-.35969.14936-.65231.37249-.87788.67121-.22556.30177-.39017.67243-.49381 1.1083-.10364.43589-.15546.94859-.15546 1.5399 0 .57306.04938 1.0821.14997 1.5271.10059.44199.26458.81143.49015 1.1101.22252.29872.5127.52429.87239.6767.35968.15241.79496.23044 1.304.23044.51819 0 .95408-.0756 1.3077-.22496.35359-.15241.64317-.37554.86873-.67121.21947-.28958.38102-.66084.48466-1.112.10364-.45418.15546-.96688.15546-1.5399s-.05121-1.0784-.1518-1.5143c-.10059-.43894-.26214-.80777-.48466-1.1065-.22557-.30482-.51514-.53343-.86873-.68584-.35359-.15546-.79009-.2341-1.3113-.2341zm-6.8145.12071c-.012193.18289-.057916.3353-.13717.45723-.079253.12193-.19813.22008-.35664.29628-.13412.064012-.30177.10973-.50295.13717-.20118.024385-.4115.036578-.63097.036578v1.1101h1.4357v3.5993h-1.4357v1.1888h4.5448v-1.1888h-1.4046v-5.6367zm6.8145 1.1376c.37493 0 .64317.17618.80472.52673.16155.34749.24142.93274.24142 1.7558 0 .81386-.0823 1.3991-.2469 1.7558-.1646.35664-.4304.53404-.79923.53404s-.63646-.1774-.80106-.53404-.2469-.94067-.2469-1.7484c0-.82911.08169-1.4156.24325-1.7631.16155-.35054.42979-.52673.80472-.52673zm-6.3299 7.6394c-.4999 0-.9297.07377-1.2894.22313-.35969.14936-.65231.37432-.87788.67304-.22557.30177-.39017.6706-.49381 1.1065s-.15546.94859-.15546 1.5399c0 .57306.04938 1.0821.14997 1.5271.10059.44199.26458.81325.49015 1.112.22252.29872.51453.52429.87422.6767s.79314.22861 1.3022.22861c.51819 0 .95408-.0756 1.3077-.22496.35359-.15241.64317-.37553.86873-.67121.21947-.28958.38102-.66084.48466-1.112.10364-.45418.15546-.96688.15546-1.5399s-.04938-1.0784-.14997-1.5143c-.10059-.43894-.26397-.80777-.48649-1.1065-.22556-.30482-.51331-.53343-.8669-.68584-.35359-.15546-.79192-.23227-1.3132-.23227zm5.8452.11888c-.01219.18289-.05792.3353-.13717.45723-.07926.12193-.19813.22008-.35664.29628-.13412.06401-.30177.10973-.50295.13717-.20118.02438-.4115.03658-.63097.03658v1.112h1.4357v3.5975h-1.4357v1.1888h4.5448v-1.1888h-1.4046v-5.6367h-1.5125zm-5.8452 1.1376c.37493 0 .64317.17618.80472.52673.16155.34749.24142.93274.24142 1.7558 0 .81386-.080471 1.3991-.24507 1.7558-.1646.35664-.43223.53404-.80106.53404s-.63646-.1774-.80106-.53404-.24507-.93884-.24507-1.7466c0-.82911.079862-1.4174.24142-1.7649.16155-.35054.42979-.52673.80472-.52673z" fill="#ff6e40"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,3 @@
<svg fill="none" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m4.4278 14.135c-0.312 0.99672-0.46707 1.4946-0.42877 1.9682 0.035497 0.41663 0.17749 0.8183 0.41289 1.1649 0.26623 0.39234 0.7006 0.68192 1.5694 1.2611l3.8393 2.5595c0.77534 0.51658 1.163 0.77533 1.5824 0.87622 0.37085 0.08968 0.75665 0.08968 1.1284 0.0028 0.42036-0.09995 0.80896-0.35684 1.588-0.87062l3.8795-2.5633c0.87809-0.58103 1.3181-0.87062 1.588-1.2658 0.23727-0.34843 0.38019-0.75291 0.41382-1.1733 0.03924-0.47641-0.12144-0.97804-0.43904-1.9813l-3.4012-10.701c-0.16441-0.51845-0.24661-0.77814-0.40448-0.9715a1.2956 1.2956 0 0 0-0.52312-0.38206c-0.2298-0.091546-0.50163-0.091546-1.0472-0.091546h-4.4316c-0.5474 0-0.82204 0-1.0528 0.093414-0.20551 0.08127-0.38486 0.21392-0.52405 0.38393-0.15787 0.1943-0.23914 0.45493-0.40168 0.97711l-3.3479 10.714zm9.9299-9.8972c0.13078 0.16254 0.19804 0.383 0.33162 0.82111l2.9182 9.5871a12.146 12.146 0 0 0-3.489-1.1808l-1.9-6.4222a0.24755 0.24755 0 0 0-0.47454 9.342e-4l-1.8776 6.4175c-1.2424 0.21672-2.4213 0.6212-3.5049 1.1836l2.9332-9.588c0.13358-0.43904 0.20084-0.65763 0.33162-0.82017 0.11583-0.14292 0.26623-0.25409 0.43718-0.32321 0.19337-0.077533 0.42223-0.077533 0.88089-0.077533h2.0943c0.45866 0 0.68846 0 0.88183 0.077533 0.17095 0.069126 0.32134 0.18122 0.43718 0.32415zm-2.2625 11.557c1.106 0 2.0663-0.28024 2.5474-0.6922a2.0999 2.0999 0 0 1-0.15413 1.6366c-0.30827 0.56889-0.75572 0.85287-1.1583 1.1079-0.5063 0.32134-0.94161 0.59785-0.94161 1.3396 0 0.24568 0.05605 0.47921 0.15787 0.68659a1.8683 1.8683 0 0 1-1.1518-1.7254v-0.04577c9.35e-4 -0.51191 0.0018-1.1434-0.72209-1.1434a0.76506 0.76506 0 0 0-0.76506 0.76412c-0.8127-0.8127-0.74171-1.9832-0.74171-1.9832 0-0.2382 0.024288-0.61093 0.13171-0.93601 0.30173 0.56796 1.4395 0.99019 2.7977 0.99019z" clip-rule="evenodd" fill="#ff6d00" fill-rule="evenodd" style="stroke-width:.93414"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M16,9V7H12V12.5C11.58,12.19 11.07,12 10.5,12A2.5,2.5 0 0,0 8,14.5A2.5,2.5 0 0,0 10.5,17A2.5,2.5 0 0,0 13,14.5V9H16M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2Z" fill="#ef5350"/>
</svg>

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 B

View File

@ -0,0 +1,107 @@
<svg width="25.6" height="25.6" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="linearGradient4667" x1="-31.824" x2="19.682" y1="-11.741" y2="35.548" gradientTransform="scale(.95818 1.0436)" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient-2"/>
<linearGradient id="linearGradient-2" x1="-3.8815" x2="2.3768" y1="-1.4418" y2="4.3041">
<stop stop-color="#C06FBB" offset="0"/>
<stop stop-color="#6E4D9B" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4671" x1="12.022" x2="-15.716" y1="13.922" y2="-23.952" gradientTransform="scale(.96226 1.0392)" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient-3"/>
<linearGradient id="linearGradient-3" x1=".72945" x2="-.97052" y1=".84424" y2="-1.477">
<stop stop-color="#6E4D9B" offset="0"/>
<stop stop-color="#77327A" offset=".14"/>
<stop stop-color="#B31777" offset=".29"/>
<stop stop-color="#CD0F7E" offset=".84"/>
<stop stop-color="#ED2C89" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4675" x1="-23.39" x2="23.931" y1="-57.289" y2="8.5733" gradientTransform="scale(1.0429 .95884)" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient-4"/>
<linearGradient id="linearGradient-4" x1="-2.8388" x2="2.8754" y1="-6.936" y2="1.0171">
<stop stop-color="#C06FBB" offset="0"/>
<stop stop-color="#6E4D9B" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4679" x1="-53.331" x2="6.771" y1="-30.517" y2="18.785" gradientTransform="scale(.99898 1.001)" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient-5"/>
<linearGradient id="linearGradient-5" x1="-8.2119" x2="1.0199" y1="-4.6905" y2="2.8824">
<stop stop-color="#C06FBB" offset="0"/>
<stop stop-color="#6E4D9B" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4683" x1="-14.029" x2="41.998" y1="-23.111" y2="26.259" gradientTransform="scale(1.0003 .99965)" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient-6"/>
<linearGradient id="linearGradient-6" x1="-1.4036" x2="4.1901" y1="-2.3093" y2="2.6198">
<stop stop-color="#C06FBB" offset="0"/>
<stop stop-color="#6E4D9B" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4687" x1="31.177" x2="3.37" y1="41.442" y2="3.4019" gradientTransform="scale(.96254 1.0389)" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient-7"/>
<linearGradient id="linearGradient-7" x1="1.9108" x2=".20358" y1="2.5395" y2=".20403">
<stop stop-color="#6E4D9B" offset="0"/>
<stop stop-color="#77327A" offset=".14"/>
<stop stop-color="#B31777" offset=".29"/>
<stop stop-color="#CD0F7E" offset=".84"/>
<stop stop-color="#ED2C89" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4691" x1="-31.905" x2="19.599" y1="-14.258" y2="42.767" gradientTransform="scale(.95823 1.0436)" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient-8"/>
<linearGradient id="linearGradient-8" x1="-3.8809" x2="2.3767" y1="-1.7385" y2="5.1899">
<stop stop-color="#C06FBB" offset="0"/>
<stop stop-color="#6E4D9B" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient4695" x1="4.3008" x2="34.534" y1="34.41" y2="4.5141" gradientTransform="scale(1.002 .99796)" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient-9-8"/>
<linearGradient id="linearGradient-9-8" x1=".11188" x2=".90145" y1=".89653" y2=".11577">
<stop stop-color="#6E4D9B" offset="0"/>
<stop stop-color="#77327A" offset=".14"/>
<stop stop-color="#B31777" offset=".53"/>
<stop stop-color="#CD0F7E" offset=".79"/>
<stop stop-color="#ED2C89" offset="1"/>
</linearGradient>
</defs>
<g id="Main-Navigation" transform="matrix(1.489 0 0 1.489 -237.04 -214.61)" clip-rule="evenodd" fill="none" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.4142">
<g id="Main-Navigation---Home" transform="translate(-7.4835,-32.744)">
<g id="Icon" transform="matrix(.31022 .061897 -.061897 .31022 169.49 177.35)">
<g id="Group" transform="rotate(-11.284,17.839,-78.732)" fill="url(#linearGradient4667)">
<path d="M 8.0016,6.1269 4.1172,8.7194 0.1156,2.7226 4,0.1301 Z" fill="url(#linearGradient4667)"/>
</g>
<g transform="rotate(-11.284,129.49,-99.884)" fill="url(#linearGradient4671)">
<path d="m9.1789 1.8875 6.6368 9.9454-7.9061 5.276l-6.6368-9.9455-1.1579-1.7348 7.9062-5.276z" fill="url(#linearGradient4671)"/>
</g>
<g transform="rotate(-11.284,167.2,-62.32)" fill="url(#linearGradient4675)">
<path d="m7.3003 1.8791 1.4612 2.1896-6.0177 4.0158-2.6191-3.9246 1.3147-.87731 4.7032-3.1385z" fill="url(#linearGradient4675)"/>
</g>
<g transform="rotate(-11.284,104.37,-149.22)" fill="url(#linearGradient4679)">
<path d="m2.3281 1.1463 1.6879-1.1263 2.6189 3.9246-3.8848 2.5925-1.4612-2.1896 2.1969-1.4661zm-1.0392 3.2011-1.1577-1.735 2.1969-1.4661 1.1577 1.735z" fill="url(#linearGradient4679)"/>
</g>
<g transform="rotate(-11.284,81.819,7.6453)" fill="url(#linearGradient4683)">
<path d="m5.3459 9.1545-1.3145.87731-4.0019-5.9968 6.0177-4.0158 2.8051 4.2036-4.7031 3.1385 4.7031-3.1385 1.1968 1.7934z" fill="url(#linearGradient4683)"/>
</g>
<g transform="rotate(-11.284,17.141,-7.8246)" fill="url(#linearGradient4687)">
<path d="m14.533 9.9339 1.1967 1.7934-7.9062 5.276l-1.1967-1.7934-6.5747-9.8522 7.9062-5.276z" fill="url(#linearGradient4687)"/>
</g>
<g transform="rotate(-11.284,18.188,-79.174)" fill="url(#linearGradient4691)">
<path d="m6.2346 7.1767-2.1969 1.466-1.1968-1.7933-2.8051-4.2036 3.8848-2.5925 4.0019 5.9968z" fill="url(#linearGradient4691)"/>
</g>
<g transform="rotate(-11.284,166.49,-69.536)" fill="#714896">
<path d="m1.1715 5.0177-1.1579-1.735 4.7032-3.1385 1.1577 1.735z"/>
</g>
<g transform="rotate(-11.284,109.99,-149.77)" fill="#6f4795">
<path d="m1.2889 3.2385-1.1577-1.735 2.1969-1.4661 1.1577 1.735z"/>
</g>
<g transform="rotate(-11.284,100.61,-15.26)" fill="#88519f">
<path d="m1.2271 5.0357-1.1967-1.7933 4.7031-3.1385 1.1968 1.7934z"/>
</g>
<g transform="rotate(-11.284,43.301,-95.418)" fill="#85509e">
<path d="m1.3446 3.415-1.1968-1.7933 2.1971-1.4661 1.1967 1.7934z"/>
</g>
<g transform="rotate(-11.284,129.49,-99.884)" fill="#8d166a">
<path d="m9.1789 1.8875-7.9061 5.2759-1.1579-1.7348 7.9062-5.276z"/>
</g>
<g transform="rotate(-11.284,63.604,-45.609)" fill="#a70d6f">
<path d="m8.038.11216 1.1967 1.7934-7.9062 5.276-1.1967-1.7934z"/>
</g>
<g transform="rotate(45,-13.019,8.751)" fill="#9e61ad">
<rect id="Rectangle-path" x="2.1354e-15" width="2.6884" height="2.6884"/>
</g>
<g transform="rotate(45,-36.276,36.979)" fill="#8053a3">
<rect x="2.1354e-15" width="2.6884" height="2.6884"/>
</g>
<g transform="translate(1.8225,1.5477)" fill="url(#linearGradient4695)">
<path d="m8.3723 38.294-8.3556-8.4182 29.732-29.795 8.6368 8.2012z" fill="url(#linearGradient4695)"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m15.787 13.71c-.27458 0-.58704 0-.91844.04734 1.0983.79535 1.8653 1.8463 1.8653 3.2666v2.3671h5.681v-2.3671c0-2.2061-4.4217-3.3139-6.6279-3.3139m-7.5747 0c-2.2061 0-6.6279 1.1078-6.6279 3.3139v2.3671h13.256v-2.3671c0-2.2061-4.4217-3.3139-6.6279-3.3139m0-1.8937a2.8405 2.8405 0 0 0 2.8405 -2.8405 2.8405 2.8405 0 0 0 -2.8405 -2.8405 2.8405 2.8405 0 0 0 -2.8405 2.8405 2.8405 2.8405 0 0 0 2.8405 2.8405m7.5747 0a2.8405 2.8405 0 0 0 2.8405 -2.8405 2.8405 2.8405 0 0 0 -2.8405 -2.8405 2.8405 2.8405 0 0 0 -2.8405 2.8405 2.8405 2.8405 0 0 0 2.8405 2.8405z" style="fill:#f44336;stroke-width:.94684"/></svg>

After

Width:  |  Height:  |  Size: 684 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,3 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m5 3c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2 -2v-14c0-1.11-.9-2-2-2h-14zm3.668 3.4473c.2596 0 .47778.085775.65234.25586s.26172.37882.26172.625c0 .34017-.01416.85229-.041016 1.5371-.02238.68034-.033203 1.1891-.033203 1.5293 0 .1119-.015544.32674-.046875.64453-.026856.29541-.037679.52303-.033203.67969l2.5781-.48438c1.0071-.17904 1.8739-.28174 2.6035-.30859.017904-.29989.047607-1.1046.087891-2.416.008951-.34465.11499-.74186.31641-1.1895.25065-.55054.53377-.82617.85156-.82617.23722 0 .44735.079671.63086.23633.19694.17008.29492.38159.29492.63672 0 .067139-.007487.13403-.025391.20117-.089518.32674-.13477.61182-.13477.85352 0 .12533-.01416.31991-.041015.58398-.02238.2596-.033203.4528-.033203.57812 0 .42521-.021648 1.0556-.066407 1.8926-.044759.837-.068359 1.4674-.068359 1.8926 0 .32674.024984.81584.074219 1.4648.049235.64901.074218 1.1361.074218 1.4629 0 .24618-.087158.45492-.26172.625-.17456.17008-.39079.25391-.65039.25391-.26408 0-.49308-.083821-.68555-.25391-.19246-.16561-.28906-.36963-.28906-.61133 0-.32674-.015544-.81722-.046875-1.4707-.026856-.65348-.041016-1.144-.041016-1.4707 0-.25513.00472-.4808.013672-.67774-.70272.031332-1.5696.14209-2.6035.33008-.85938.15666-1.7188.31543-2.5781.47656-.0089518.30436-.041992.81177-.095703 1.5234-.044759.62663-.066406 1.1388-.066406 1.5371 0 .24618-.087158.45492-.26172.625-.17456.17008-.39079.25391-.65039.25391-.2596 0-.47778-.083822-.65234-.25391-.17456-.17008-.26172-.37882-.26172-.625 0-.45207.037191-1.1277.11328-2.0273.080566-.89966.12109-1.5753.12109-2.0273 0-.57292.01416-1.4356.041016-2.5859.026855-1.1548.041016-2.0169.041016-2.5898 0-.24618.087158-.45492.26172-.625.17456-.17008.39079-.25586.65039-.25586z" fill="#4caf50"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -0,0 +1,21 @@
<svg width="25.6" height="25.6" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<style>.cls-1 {
fill: #5d83ac;
}
.cls-2 {
fill: #f0f0f0;
fill-rule: evenodd;
}</style>
<style>.cls-1 {
fill: #5d83ac;
}
.cls-2 {
fill: #f0f0f0;
fill-rule: evenodd;
}</style>
</defs>
<g transform="matrix(.0555 0 0 .0555 -59.538 -26.404)">
<path d="m1289 511.79a180.18 180.18 0 0 0 -180.17 180.17 180.18 180.18 0 0 0 180.17 180.17 180.18 180.18 0 0 0 180.2 -180.17 180.18 180.18 0 0 0 -180.2 -180.17zm2.5074 79.61c7.7094 0 14.132 1.7855 19.3 5.3117 5.1681 3.5302 9.5527 7.9149 13.164 13.164l102.87 148.86h-191.45l30.749-42.329h56.746c5.3293 0 9.9521.16723 13.89.49494-2.2996-2.9532-4.9504-6.6698-7.984-11.184-3.0379-4.5106-5.9554-8.7314-8.7429-12.669l-29.528-43.549-77.3 109.24h-60.276l105.57-148.86c3.4453-4.7567 7.7789-9.0251 13.032-12.801 5.2484-3.7723 11.92-5.6746 19.96-5.6746z" fill="#1976d2" stroke-width=".43946"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1 @@
<svg enable-background="new 0 0 40 40" version="1.1" viewBox="0 0 40 40" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.94356 0 0 .94356 1.1289 1.1289)"><path id="Flame" d="m4.0749 27.963h2.3888v5.5738h5.5738v2.3888h-7.9626z" style="fill:#64b5f6;stroke-width:.79626"/><path id="Wings" d="m4.0749 13.365v7.2993l4.6446 4.7831 1.9906-2.1284 5.9719 5.9719-1.9906 1.9906 4.6454 4.6438h7.2993c.73256 0 1.3266-.59401 1.3266-1.3274v-10.616l-11.944-11.944h-10.616c-.73335 0-1.3274.59401-1.3274 1.3274z" style="fill:#1565c0;stroke-width:.79626"/><path id="Body" d="m9.8214 23.232c-.4475-.4475-.51677-1.149-.16562-1.6753l10.883-16.301c.49209-.73813 1.321-1.1808 2.2072-1.1808h11.851c.73335 0 1.3274.59401 1.3274 1.3274v11.851c0 .88703-.44272 1.7151-1.1808 2.2072l-16.301 10.883c-.52633.35115-1.2278.28188-1.6753-.16562z" style="fill:#1e88e5;stroke-width:.79626"/><g id="Wing_shadow" transform="matrix(.79626 0 0 .79626 4.0749 4.0749)"><path d="m8.313 29.222 12.725-12.725 2.464 2.464-12.725 12.725z" style="fill:#0a44c2"/></g><path id="Wing" d="m10.694 27.343 10.132-10.132 1.962 1.962-10.132 10.132z" style="fill:#64b5f6;stroke-width:.79626"/><path id="Intersect" d="m14.276 27.686-1.962-1.962 8.5128-8.5128 1.962 1.962z" style="fill:#42a5f5;stroke-width:.79626"/><g id="Window_shadow" transform="matrix(.79626 0 0 .79626 4.0749 4.0749)"><path d="m30 15c2.761 0 5-2.239 5-5s-2.239-5-5-5-5 2.239-5 5 2.239 5 5 5z" style="fill:#0a44c2"/></g><path id="Window" d="m27.963 16.019c2.1985 0 3.9813-1.7828 3.9813-3.9813 0-2.1985-1.7828-3.9813-3.9813-3.9813-2.1985 0-3.9813 1.7828-3.9813 3.9813 0 2.1985 1.7828 3.9813 3.9813 3.9813z" style="fill:#90caf9;stroke-width:.79626"/></g></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m13.098 3.8849-6.787 14.442-4.7687-.052288 5.3229-9.1609 6.2327-5.2288m.73203 1.1399 8.6275 15.09h-15.958l9.7256-1.736-5.0929-6.055z" style="fill:#1e88e5;stroke-width:1.0458"/></svg>

After

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m18.23 11.21c-.03-.16-.47-.71-1.32-1.65-.02-.19.29-.45.9-.8l1.74-1.55c.39-.5.62-1.28.69-2.38l-.02-.26c-.07-.78-.63-1.4-1.69-1.89-.63-.42-1.76-.65-3.38-.68-1.35.11-3.11.59-5.28 1.43-.6.43-1.28.86-2.04 1.28l.01.14.21-.08c.08-.01.13.03.14.11l.13-.07.07-.01.01.06c0 .07-.47.44-1.76 1.35l-.06.12c-.31.02-.61.25-.91.67l.08.12.25-.09.18.24c.32-.33.66-.62 1.03-.87.19.05.29.11.44.16 1.02-.75 2.03-1.3 3.04-1.64l.01.14c-.2.27-.32.42-.38.42l.1.23c.01.19-2.55 7-6.66 14.44l.08.19c.35-.08.58-.17.75-.26l.01.13.4-.03-.67 1.76.14.06c.57-.64 1-1.29 1.3-1.88 1.67-.49 2.94-.97 3.82-1.44.88-.08 1.56-.31 2.02-.7l.92-.47c1.27-.98 2.22-1.67 2.87-2.08 1.33-.98 2.2-1.93 2.6-2.85l.23-1.37m-3.46 2.31-1.77 1.39c-1.29.85-2 1.3-2.09 1.3-2.07 1.13-3.36 1.72-3.86 1.76l-.05.01c.04-.23.96-2.12 2.75-5.67.78-.06 2.02-.43 3.71-1.1l.41-.03c.85-.08 1.49.09 1.91.49l.03.26c-.31.9-.67 1.44-1.04 1.59m1.09-5.78c-.18.22-.68.59-1.5 1.11-.27.03-1.27.42-3.01 1.18l-.28-.05-.01-.12c-.02-.25.09-.57.34-.95.13-.7.28-1.12.44-1.2l1.45-3.28c-.02-.22.29-.35.93-.46l.21-.02.01.18 1.16-.16c1.15-.1 1.75.14 1.8.7l.13-.02-.03-.32.15-.02c.35.19.52.4.54.68.02.18-.08.41-.29.68-.09.01-.14-.06-.15-.18l-.14.01-.03.4c-.58.87-1.01 1.31-1.27 1.34z" style="fill:#fdd835"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1 @@
<svg enable-background="new 0 0 50 50" version="1.0" viewBox="0 0 50 50" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.87588 0 0 .87588 2.8421 3.1031)" style="fill:#00bfa5"><polygon points="23.281 18.589 11.643 14.137 11.643 .237 23.281 .237" style="fill:#00bfa5"/><polygon points="11.643 18.489 19.608 21.536 11.643 24.582" style="fill:#00bfa5"/><polygon points="11.643 49.763 11.643 28.935 23.281 24.484 23.281 31.215 17.622 49.763" style="fill:#00bfa5"/><polygon points="27.314 18.589 38.953 14.137 38.953 .237 27.314 .237" style="fill:#00bfa5"/><polygon points="38.953 18.489 30.986 21.536 38.953 24.582" style="fill:#00bfa5"/><polygon points="38.953 49.763 38.953 28.935 27.314 24.484 27.314 31.215 32.972 49.763" style="fill:#00bfa5"/></g></svg>

After

Width:  |  Height:  |  Size: 784 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><style>.regular{fill:#43A047;} .dark-left{fill:#00701A;} .dark-right{fill:#004300;} .light{fill:#76D275;}</style><g transform="matrix(.91525 0 0 .91525 21.695 21.695)"><path class="light" d="m144 32 112 112-112 112-112-112z" style="fill:#81c784"/><path class="regular" d="m32 144v112l112 112v-112z" style="fill:#43a047"/><path class="light" d="m368 32 112 112-112 112-112-112z" style="fill:#81c784"/><path class="regular" d="m480 144v112l-112 112v-112z" style="fill:#43a047"/><path class="regular" d="m256 144 112 112-112 112-112-112z" style="fill:#43a047"/><path class="dark-left" d="m256 368v112l-112-112v-112z" style="fill:#2e7d32"/><path class="dark-right" d="m256 368 112-112v112l-112 112z" style="fill:#1b5e20"/></g></svg>

After

Width:  |  Height:  |  Size: 805 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,3 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m3.4498 18.021s0.94981-10.685 3.7993-14.57l4.7491 0.94981-0.94981 2.9349h-1.8996v6.8007h0.94981c1.8996-2.9159 5.8319-3.9797 8.2064-2.9159 3.1344 1.4532 2.8494 5.8319 0 7.7695-2.2796 1.5577-9.1562 2.9159-14.855-0.96881z" style="fill:#fbc02d;stroke-width:.94982"/>
</svg>

After

Width:  |  Height:  |  Size: 355 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1 @@
<svg class="header__svg-logo header__svg-logo" width="300" height="300" preserveAspectRatio="xMinYMin meet" version="1.1" viewBox="0 0 681.57088 842.22857" xmlns="http://www.w3.org/2000/svg"><defs><style>.logo__text__fill{fill:#253858;} .header__svg-logo__icon--path--3{fill:#2684ff;} .header__svg-logo__icon--path--4{fill:url(#logo-gradient);}</style><linearGradient id="logo-gradient" x1="64.01" x2="32.99" y1="65.26" y2="89.48" gradientUnits="userSpaceOnUse"><stop stop-color="#0052cc" style="stop-color:#1565c0" offset=".18"/><stop stop-color="#2684ff" style="stop-color:#1e88e5" offset="1"/></linearGradient></defs><title>Bitbucket logo</title><g class="header__svg-logo__icon" transform="matrix(11.235 0 0 11.235 70.626 -357.72)"><g transform="matrix(.96468 0 0 .96468 1.1019 2.4485)"><path class="header__svg-logo__icon--path--3" d="m2 41.25a2 2 0 0 0 -2 2.32l8.49 51.54a2.72 2.72 0 0 0 2.66 2.27h40.73a2 2 0 0 0 2 -1.68l8.51-52.11a2 2 0 0 0 -2 -2.32zm35.75 37.25h-13l-3.52-18.38h19.67z" style="fill:#1e88e5"/><path class="header__svg-logo__icon--path--4" d="m59.67 60.12h-18.77l-3.15 18.38h-13l-15.35 18.23a2.71 2.71 0 0 0 1.75 .66h40.74a2 2 0 0 0 2 -1.68z" style="fill:url(#logo-gradient)"/></g></g></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -0,0 +1 @@
<svg enable-background="new 0 0 400 444" fill-opacity=".05" version="1.1" viewBox="0 0 400 400" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.88 0 0 .88 24.698 4.003)" fill="#e53935" fill-opacity="1"><path d="m370.5 207c-1.5-14.8-4.8-29.9-9.5-44-13.5-40.3-38.6-81.6-70.3-110.1-1.4-1.2-6.7-4.4-8.7-3.3-5.2 2.9 4.6 22.8 5.8 26.4 7.4 22 12.1 45.3 6.8 68.3-7.1 30.4-30.4 51.7-61.5 54.3-17.1 1.4-34.3-.5-51.4 1.5-25.6 3-51.7 11.8-68 32.8-1.9 2.4-3.6 5.1-5.2 7.9h-.4c-6.3.7-12.6-2-15.7-3.7-.8-.5-1.6-.9-2.2-1.2-19-10.5-33-34-41.6-53.4-3.9-9-7.2-18.4-9.3-27.9-1-4.3-1.1-8.8-1.3-13.2-.1-2.7.3-6.5-1.2-8.9-3.3-5.2-7.5-.2-8.2 4-1.1 6.9-2.1 13.7-1.8 20.7.5 11.8 3.8 23.5 8 34.5 6.2 16.2 14.9 31.1 26.2 44.4 4.7 5.5 9.7 10.6 15.1 15.3 4.8 4.3 10.9 7.7 14.5 13.2 4.2 6.3 4.9 14.1 4.5 21.4-1 19.3-1.6 37.4 3.9 56.2 4.8 16.7 10.8 33.8 20.8 48.1 5 7.1 11.2 14.6 18 19.9 4.6 3.6 13.3 4 8.3-9.2-11.1-29.3-12.1-59.7 5.2-87.1 14.5-22.8 40.1-43.1 69-39.5 42.5 5.3 72.1 44.3 70 86-.6 11.7-1 21.7-4.7 32.7-1.5 4.4-2.6 10-1.5 14.6 1.8 7.8 10.5 4.9 14.3-.2 10.3-14 21.1-27.6 30.8-42 31.6-47.2 47-101.8 41.3-158.5z"/><path d="m132.4 92.1c.7 2.3 1.4 4.8 1.9 7.5.1 1.1.4 2.3 1 3.4 2.6 6.8 8.9 10.5 14.8 14 3.6 2.2 10.1 4.3 14.1 5.9 5.2 2.1 16.4-.6 21.7-1 12.2-1 23.5-5.3 34.7 1.2-57.4 67.3-3.2 82.3 38.8 49.9 48-37 2.8-124.3 2.8-124.3s-1-6.8-19.2-10.8c-1.7-.9-3.4-1.7-5.1-2.4-18-8.3-34.2 5.3-47.2 16.4-3.8 3.2-7.5 6.4-11.5 9.4-5.4 4-11.2 7.3-17.3 10.2-6.4 3-14 6.4-21.1 6.7-1 0-2.9.2-4.9.6-3.1.3-4.7 1.1-5.4 2.5-1.2 1-2 2.4-1.8 4.2.2 2.5 1.4 4.6 2.7 6.2.4.1.7.3 1 .4z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg enable-background="new 0 0 256 256" version="1.1" viewBox="0 0 256 256" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><style type="text/css">
.st0{fill:#F9A825;}
</style><title>website_productpages-logos</title><g transform="matrix(.90185 0 0 .90185 9.8555 13.463)"><path class="st0" d="m134.3 11c64.1 1.8 114.5 55.2 112.7 119.3s-55.2 114.5-119.3 112.7c-64-1.8-114.4-55-112.7-119 1.7-64.1 55-114.7 119.1-113h0.2zm-0.6 12c-57.4-1.5-105.2 43.9-106.6 101.4-1.5 57.4 43.9 105.2 101.3 106.6 57.4 1.5 105.2-43.9 106.6-101.3 1.6-57.5-43.8-105.2-101.3-106.7 0.1 0 0 0 0 0z" fill="#f9a825"/></g><path class="st0" d="m137.9 93.403c-4.1485 3.9681-2.5252 12.806 3.878 19.57s15.241 8.8381 19.209 4.7798c3.9681-4.0583 2.7056-12.987-3.7878-19.751-6.4933-6.7639-15.422-8.7479-19.57-4.7798zm52.217-25.162c8.2068 8.5676 14.43 18.758 18.398 29.851 0 0 2.7056 7.3952-5.862 7.3952h-20.923s-6.6737-0.54111-6.9442 5.1405c-0.45093 7.0344-0.27056 12.987-0.27056 12.987 0.27056 4.0583 1.8037 8.0265 4.3289 11.183l21.554 22.727c3.5172 3.2467 3.9681 8.5676 1.0822 12.355-10.912 18.578-28.408 32.286-49.061 38.509-6.3129 1.8939-6.9442-3.2466-6.7639-6.7639 0-2.2546 2.6154-52.397 2.6154-52.397 0.72148-5.4111-0.99204-10.912-4.7798-14.881-6.7639-7.2148-11.003-11.814-11.003-11.814s-4.7798-4.7798-11.634-11.904c-3.7878-3.878-9.0185-5.862-14.43-5.5013h-52.397c-3.427 0-8.6578-0.81166-6.4031-7.0344 7.305-20.292 21.915-37.066 41.124-46.896 3.878-2.7055 9.1989-1.9841 12.265 1.7135l21.554 22.727c3.0663 2.7055 6.9442 4.3289 11.003 4.7798 0 0 5.862 0.45092 12.987 0.36074 5.5915 0 5.5013-6.7639 5.5013-6.7639s0.90185-13.888 1.1724-20.923c-0.27056-2.9761 1.8939-5.5915 4.7798-5.862 0.99203-0.09018 1.8939 0.09019 2.7957 0.45092 11.003 4.6896 21.013 11.634 29.22 20.292z" fill="#f9a825" stroke-width=".90185"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg enable-background="new 0 0 256 256" version="1.1" viewBox="0 0 256 256" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><style type="text/css">
.st0{fill:#F9A825;}
</style><circle cx="128" cy="128" r="97.4" fill="#37474f" stroke-width=".90185"/><title>website_productpages-logos</title><g transform="matrix(.90185 0 0 .90185 9.8555 13.463)"><path class="st0" d="m134.3 11c64.1 1.8 114.5 55.2 112.7 119.3s-55.2 114.5-119.3 112.7c-64-1.8-114.4-55-112.7-119 1.7-64.1 55-114.7 119.1-113h0.2zm-0.6 12c-57.4-1.5-105.2 43.9-106.6 101.4-1.5 57.4 43.9 105.2 101.3 106.6 57.4 1.5 105.2-43.9 106.6-101.3 1.6-57.5-43.8-105.2-101.3-106.7 0.1 0 0 0 0 0z" fill="#f9a825"/></g><path class="st0" d="m137.9 93.403c-4.1485 3.9681-2.5252 12.806 3.878 19.57s15.241 8.8381 19.209 4.7798c3.9681-4.0583 2.7056-12.987-3.7878-19.751-6.4933-6.7639-15.422-8.7479-19.57-4.7798zm52.217-25.162c8.2068 8.5676 14.43 18.758 18.398 29.851 0 0 2.7056 7.3952-5.862 7.3952h-20.923s-6.6737-0.54111-6.9442 5.1405c-0.45093 7.0344-0.27056 12.987-0.27056 12.987 0.27056 4.0583 1.8037 8.0265 4.3289 11.183l21.554 22.727c3.5172 3.2467 3.9681 8.5676 1.0822 12.355-10.912 18.578-28.408 32.286-49.061 38.509-6.3129 1.8939-6.9442-3.2466-6.7639-6.7639 0-2.2546 2.6154-52.397 2.6154-52.397 0.72148-5.4111-0.99204-10.912-4.7798-14.881-6.7639-7.2148-11.003-11.814-11.003-11.814s-4.7798-4.7798-11.634-11.904c-3.7878-3.878-9.0185-5.862-14.43-5.5013h-52.397c-3.427 0-8.6578-0.81166-6.4031-7.0344 7.305-20.292 21.915-37.066 41.124-46.896 3.878-2.7055 9.1989-1.9841 12.265 1.7135l21.554 22.727c3.0663 2.7055 6.9442 4.3289 11.003 4.7798 0 0 5.862 0.45092 12.987 0.36074 5.5915 0 5.5013-6.7639 5.5013-6.7639s0.90185-13.888 1.1724-20.923c-0.27056-2.9761 1.8939-5.5915 4.7798-5.862 0.99203-0.09018 1.8939 0.09019 2.7957 0.45092 11.003 4.6896 21.013 11.634 29.22 20.292z" fill="#f9a825" stroke-width=".90185"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

@ -0,0 +1 @@
<svg width="400" height="400" enable-background="new 0 0 462.529 406.613" version="1.1" viewBox="0 0 400.00001 399.99999" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.81733 0 0 .81733 10.989 32.73)"><path id="outline" d="m447.61 200.08c-23.139-22.234-138.85-36.114-175.36-40.154 1.7683-4.1766 3.274-8.4961 4.517-12.944 4.9771-2.1797 10.35-4.2077 15.905-5.9011.67696 1.9969 3.8653 9.6478 5.6822 13.279 73.415 2.0251 77.184-54.557 80.17-70.058 2.9199-15.157 2.7711-29.802 27.953-56.575-37.516-10.933-91.467 16.945-109.54 58.437-6.7911-2.5445-13.597-4.4236-20.328-5.586-4.8244-19.459-29.944-73.672-95.863-73.672-83.461 0-174.43 68.853-174.43 185.41 0 97.976 66.891 183.84 104.68 183.84 16.505 0 30.703-12.36 34.036-23.439 2.7944 7.5964 11.368 31.212 14.184 37.224 4.162 8.8901 23.41 16.583 31.833 7.3572 10.83 6.0168 30.703 9.641 41.534-6.4049 20.859 4.412 39.299-8.0263 39.702-22.868 10.235-.54664 15.256-14.918 13.021-26.363-1.6477-8.4261-19.248-38.661-26.113-49.098 13.59 11.054 48.013 14.183 52.194.007 21.911 17.198 56.057 8.1713 58.765-5.8155 26.624 6.9175 57.16-8.2754 52.146-26.676 42.771-2.9578 37.296-48.464 25.296-59.996z" fill="#543729" stroke-width=".97265"/><g id="leaf" transform="matrix(.97265 0 0 .97265 6.324 6.9029)"><path d="m331.25 98.825c9.471-18.791 21.372-39.309 36.404-52.003-16.545 6.668-32.88 26.601-42.538 47.906-4.923-3.129-9.921-5.92-14.961-8.361 13.473-28.758 44.779-52.775 79.28-54.651-23.109 20.958-14.906 64.518-33.906 87.578-5.437-5.461-17.921-16-24.279-20.469zm-14.938 30.599c.01-.719.279-6.266.784-8.798-1.325-.312-9.561-1.923-13.855-1.822-.313 5.393 2.266 14.568 4.815 20.091 17.555-.368 30.235-5.625 37.698-10.458-6.354-2.962-17.196-5.595-25.44-7.17-.92 1.903-3.184 6.752-4.002 8.157z" fill="#00acee"/></g><g stroke-width=".97265"><path id="wingtip" d="m250.54 277.39c.004.0243.0146.0573.0176.0817-2.1642-4.6571-4.4625-10.314-7.2074-17.708 10.688 15.557 44.184 7.5332 42.427-6.4069 16.395 12.336 50.143-2.0552 42.471-19.353 16.423 7.6528 35.168-7.7452 30.964-14.455 28 5.4002 54.832 10.783 63.256 12.938-5.5957 9.1235-18.339 15.566-37.549 11.089 10.38 14.14-9.7732 31.105-37.844 21.761 6.1793 13.882-18.814 26.379-47.22 11.91.36085 13.888-35.24 15.487-49.315.14201zm55.543-70.194c32.497 2.4949 86.238 7.3406 119.51 11.997-2.1019-10.828-7.8435-13.921-25.905-18.772-19.425 2.0718-68.706 6.9127-93.604 6.7755z" fill="#2baf2b"/><path id="body" d="m285.78 253.36c16.395 12.336 50.143-2.0552 42.471-19.353 16.423 7.6528 35.168-7.7453 30.964-14.455-33.103-6.3826-67.84-12.788-75.719-13.908 4.7796.25387 12.702.7966 22.59 1.5562 24.899.13714 74.18-4.7038 93.604-6.7755-31.452-7.9748-95.666-19.613-140.01-22.48-2.0552 3.0036-5.833 8.0974-12.413 13.51-19.403 41.053-54.557 68.341-93.454 68.341-11.335 0-24.018-1.9122-38.233-6.4565-8.8648 9.497-46.661 16.694-77.329 1.6409 24.326 56.961 80.74 94.984 143.19 94.984 52.591 0 75.912-53.704 70.808-67.914-1.2382-3.45-6.1452-14.889-8.891-22.283 10.689 15.556 44.185 7.5322 42.429-6.4078z" fill="#ffcc2f"/><path id="beak" d="m253.91 145.27c4.6435-2.526 20.69-12.253 35.981-15.908-.24121-1.6934-.4231-3.4014-.53593-5.1191-10.032 2.4025-28.945 10.509-39.784-.66237 22.866 6.9 34.283-6.1482 51.09-6.1482 10.014 0 24.305 2.7974 35.569 7.22-9.0603-8.3697-38.771-33.63-75.557-33.717-8.2131 9.9571-17.091 31.526-6.7638 54.334z" fill="#cecece"/><path id="head" d="m115.58 253.33c14.215 4.5442 26.898 6.4565 38.233 6.4565 38.896 0 74.05-27.289 93.454-68.341-14.351 11.979-39.291 22.229-78.241 22.229 34.694-7.8668 64.56-25.156 79.753-50.427-10.68-16.998-22.263-54.603 7.0702-84.331-4.5122-14.496-26.475-52.765-75.095-52.765-84.851 0-155.17 71.001-155.17 166.15 0 22.525 4.5472 43.65 12.669 62.664 30.667 15.054 68.463 7.8571 77.328-1.6399z" fill="#ef5734"/><path id="eye_rim" d="m141.03 108.45c0 21.644 17.546 39.191 39.19 39.191s39.192-17.548 39.192-39.191c0-21.644-17.548-39.191-39.192-39.191s-39.19 17.547-39.19 39.191z" fill="#ffcc2f"/><path id="eye" d="m156.76 108.45c0 12.958 10.507 23.463 23.463 23.463 12.96 0 23.464-10.506 23.464-23.463 0-12.959-10.504-23.464-23.464-23.464-12.957 0-23.463 10.506-23.463 23.464z" fill="#543729"/><ellipse id="pupil_highlight" cx="180.22" cy="98.044" rx="13.673" ry="8.501" fill="#fff"/></g></g></svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -0,0 +1,3 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m21.085 13.343c0.0863 1.4864-0.59454 2.9152-1.8124 3.7878l0.73839 1.4288c0.22056 0.43152 0.24932 0.93976 0.05754 1.3905-0.1822 0.4507-0.55619 0.80551-1.0165 0.95894l-0.75756 0.23974c-0.16302 0.05754-0.34522 0.0863-0.51783 0.0863-0.48906 0-0.94935-0.22056-1.2658-0.61372l-2.033-2.3974c-0.85346-0.14384-1.659-0.50824-2.3398-1.0548-0.47947 0.14384-0.95894 0.22056-1.4384 0.22056-0.84387 0-1.6877-0.25892-2.3974-0.75756-0.50824 0.15344-1.0261 0.22056-1.5535 0.21097-0.75757 0.00959-1.5055-0.14384-2.2056-0.43152-1.3713-0.61372-2.2823-1.9562-2.3302-3.4618-0.076715-0.69044 0.038358-1.3905 0.33563-2.0234-0.27809-0.71921-0.30686-1.5055-0.067126-2.2343 0.35481-0.911 1.0261-1.6686 1.8603-2.148 0.55619-1.6206 2.1193-2.7042 3.8358-2.5891 1.5343-1.4384 3.8837-1.5918 5.5906-0.35481 0.40276-0.10548 0.82469-0.16302 1.2466-0.16302 1.3042-0.028768 2.5412 0.5466 3.3563 1.5727 1.9562 0.50824 3.3563 2.2535 3.433 4.2865 0.04795 1.0644-0.23974 2.1097-0.82469 3.0015 0.06713 0.34522 0.10548 0.69044 0.10548 1.0452m-4.7947-1.3521c0.5466 0.06713 0.97812 0.47947 0.97812 1.0261a0.95894 0.95894 0 0 1-0.95894 0.95894h-0.60413c-0.30686 0.86305-0.84387 1.6206-1.5535 2.196 0.23974 0.08631 0.48906 0.13425 0.73839 0.20138 4.9194-0.06713 4.344-3.0686 4.344-3.1166-0.05754-1.3713-1.2083-2.4453-2.5796-2.3878a0.95894 0.95894 0 0 1-0.95894-0.95894 0.95894 0.95894 0 0 1 0.95894-0.95894c1.1795 0.028768 2.3111 0.46988 3.1933 1.2466 0.04795-0.27809 0.07672-0.56578 0.07672-0.85346-0.05754-1.1891-0.59454-2.2247-2.7522-2.4261-1.1987-2.8385-4.2194-1.2658-4.2194-0.38358-0.02877 0.22056 0.20138 0.69044 0.23974 0.71921a0.95894 0.95894 0 0 1 0.95894 0.95894c0 0.52742-0.43152 0.95894-0.95894 0.95894-0.50824-0.019179-0.98772-0.21097-1.3713-0.53701-0.46029 0.29727-0.98771 0.47947-1.5343 0.53701-0.5466 0.047947-0.9973-0.33563-1.0261-0.86305-0.076715-0.53701 0.31645-1.0069 0.84387-1.0548 0.15343-0.019179 0.90141-0.13425 0.90141-0.73839 0-0.6329 0.23974-1.237 0.65208-1.7165-0.88223-0.23974-1.8316 0.076716-2.7905 1.237-1.7645-0.27809-2.4837-0.038358-3.0111 1.8316-0.911 0.4507-1.3905 0.76715-1.6014 1.7261 1.0357-0.21097 2.1001-0.12466 3.0878 0.23974 0.47947 0.1822 0.74798 0.71921 0.56578 1.237-0.1822 0.49865-0.73839 0.74798-1.237 0.56578-0.70003-0.30686-1.4864-0.32604-2.2056-0.057537-0.30686 0.25892-0.30686 0.79592-0.30686 1.2179 0 0.70962 0.35481 1.3713 0.95894 1.7549 0.50824 0.25892 1.074 0.39317 1.6398 0.38358-0.14384-0.24932-0.2685-0.50824-0.37399-0.77674-0.1822-0.51783 0.095894-1.0836 0.61372-1.2658 0.51783-0.1822 1.0836 0.0959 1.2658 0.61372 0.38358 1.0932 1.3617 1.8412 2.5124 1.9658 1.3138-0.06713 2.4837-0.84387 3.059-2.0425 0.22056-1.3233 1.285-1.4384 2.4549-1.4384m1.9179 7.1633-0.59454-1.2466-0.68085 0.15343 0.95894 1.1987 0.31645-0.10548m-4.4591-8.2565c0.01918-0.50824-0.3644-0.93976-0.87264-0.98771-0.68085-0.038358-1.3425 0.19179-1.8508 0.64249-0.5466 0.55619-0.83428 1.3233-0.80551 2.1001a0.95894 0.95894 0 0 0 0.95894 0.95894c0.5466 0 0.95894-0.43152 0.95894-0.95894 0-0.25891 0.06713-0.51783 0.22056-0.7288 0.11507-0.09589 0.25892-0.14384 0.41235-0.14384 0.52742 0.02877 0.97812-0.3644 0.97812-0.88223z" style="fill:#ff4081;stroke-width:.95894"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -0,0 +1,6 @@
<svg version="1.1" viewBox="0 0 140 140" xmlns="http://www.w3.org/2000/svg">
<title>Browserslist logo</title>
<g transform="translate(10.509,10.206)">
<path transform="translate(-10.823,-10.1)" d="m70.314 10.066a59.828 59.828 0 0 0 -59.828 59.828 59.828 59.828 0 0 0 59.828 59.828 59.828 59.828 0 0 0 59.828 -59.828 59.828 59.828 0 0 0 -59.828 -59.828zm-4.8359 8.7852c.49623 4.0431 1.3518 7.3216 2.5723 10.223 4.7786-4.287 10.265-7.5463 16.041-9.0195-.98175 3.9375-1.3573 7.2942-1.2617 10.43 6.0259-2.315 12.349-3.4049 18.301-2.707-3.1824 2.4133-5.4829 4.7172-7.1289 7.0156-2.2008 12.074 6.8581 20.429 14.779 24.551a5.1281 5.1281 0 0 1 5.1836 -3.8887 5.1281 5.1281 0 0 1 3.6992 8.4355v.002c-.4864 1.0549-2.0019 2.3428-3.4961 3.2188-4.075 2.3896-11.172 5.7358-20.914 7.3906.04491 1.2137.07617 2.4521.07617 3.7461 0 4.8178-.48497 8.2917-1.3848 10.699-3.3003 13.313-12.648 26.761-24.695 31.951.357-4.0831.19744-7.4851-.40234-10.592-5.5815 3.2189-11.646 5.2787-17.623 5.5195h-.002c1.7859-3.6612 2.8555-6.8769 3.4121-9.9746-6.3466.99516-12.727.74138-18.377-1.1699 2.9305-2.733 5.0539-5.3143 6.6738-7.9609-6.2921-1.3441-12.169-3.8704-16.766-7.6855 3.8212-1.5438 6.7944-3.2388 9.2988-5.1973-5.4248-3.5165-10.033-7.9981-12.971-13.23 4.0121-.0703 7.3208-.5679 10.299-1.4531-3.7851-5.2146-6.4677-11.032-7.332-16.951 3.8612 1.4052 7.196 2.1328 10.359 2.3555-1.6614-6.2197-2.0807-12.605-.76758-18.436 3.0305 2.6339 5.8239 4.4794 8.6309 5.8145.67691-6.4059 2.5753-12.52 5.8926-17.496 1.9262 3.6224 3.9135 6.3917 6.1113 8.6719 2.9295-5.7535 6.9003-10.798 11.791-14.262zm26.465 19.557c-2.3951 5.514-1.6653 11.297-.55469 18.732a2.1376 2.1376 0 0 0 .2793 -4.1777 3.4187 3.4187 0 1 1 .0918 6.7031c.5745 3.8822 1.157 8.1801 1.4219 13.125 1.0961-.19014 2.179-.4077 3.25-.64844 6.6152-1.4872 12.258-3.8016 16.871-6.5059.45008-.26435.88377-.56352 1.2754-.86719.36611-.55703.33339-.95723.0352-1.2852-4.8313-1.2445-10.891-4.5296-15.258-8.7949-4.7644-4.6534-7.4275-10.164-7.4121-16.281z" fill="#ffca28" stroke-width=".85468"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -0,0 +1,7 @@
<svg version="1.1" viewBox="0 0 140 140" xmlns="http://www.w3.org/2000/svg">
<title>Browserslist logo</title>
<g transform="translate(10.508 10.205)" stroke-width=".85468">
<circle cx="59.492" cy="59.795" r="59.828" fill="#ffca28"/>
<path transform="translate(-10.823,-10.1)" d="m65.479 18.852c-4.8907 3.464-8.8616 8.5082-11.791 14.262-2.1978-2.2802-4.1852-5.0495-6.1113-8.6719-3.3173 4.9757-5.2157 11.09-5.8926 17.496-2.8069-1.3351-5.6003-3.1805-8.6309-5.8145-1.3131 5.8307-.89378 12.216.76758 18.436-3.1634-.22266-6.4982-.95023-10.359-2.3555.8643 5.9191 3.5469 11.737 7.332 16.951-2.978.88522-6.2868 1.3828-10.299 1.4531 2.9378 5.2324 7.5459 9.714 12.971 13.23-2.5045 1.9585-5.4776 3.6534-9.2988 5.1973 4.5965 3.8151 10.474 6.3415 16.766 7.6855-1.6199 2.6467-3.7433 5.2279-6.6738 7.9609 5.6503 1.9113 12.03 2.1651 18.377 1.1699-.55658 3.0977-1.6262 6.3134-3.4121 9.9746h.002c5.9767-.24081 12.042-2.3006 17.623-5.5195.59978 3.1067.75935 6.5087.40234 10.592 12.047-5.1904 21.395-18.638 24.695-31.951.89979-2.4075 1.3848-5.8814 1.3848-10.699 0-1.294-.03126-2.5324-.07617-3.7461 9.7422-1.6548 16.839-5.0011 20.914-7.3906 1.4942-.87594 3.0097-2.1638 3.4961-3.2188.00028-.000595-.00027-.0014 0-.002a5.1281 5.1281 0 0 0 -3.6992 -8.4355 5.1281 5.1281 0 0 0 -5.1836 3.8887c-7.9212-4.122-16.98-12.477-14.779-24.551 1.6461-2.2984 3.9465-4.6023 7.1289-7.0156-5.9516-.69788-12.275.39207-18.301 2.707-.09563-3.1355.27997-6.4922 1.2617-10.43-5.7759 1.4732-11.262 4.7326-16.041 9.0195-1.2205-2.9011-2.076-6.1795-2.5723-10.223zm26.465 19.557c-.01541 6.1173 2.6477 11.628 7.4121 16.281 4.3663 4.2654 10.426 7.5505 15.258 8.7949.29823.32793.33094.72812-.0352 1.2852-.39163.30367-.82531.60284-1.2754.86719-4.6127 2.7042-10.256 5.0187-16.871 6.5059-1.071.24074-2.1539.45829-3.25.64844-.2649-4.9449-.84737-9.2428-1.4219-13.125a3.4187 3.4187 0 1 0 -.0918 -6.7031 2.1376 2.1376 0 0 1 -.2793 4.1777c-1.1106-7.4356-1.8404-13.218.55469-18.732z" fill="#37474f"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.081367 0 0 .081367 1.595 2.9394)" style="fill:#0277bd"><path d="m72.426 0h-18.561v52.508l22.635 22.635h-27.16l-29.65-29.65v-45.492h-19.691v53.866l40.286 40.288h54.319l19.465 19.463h-52.057l43.909 45.267-64.279 63.825h25.351l64.276-64.729-24.444-24.444h129.92v8.1479l-56.131 33.496-47.076 47.529h26.706l32.138-32.591 63.374-38.023v-38.477h-59.751l-20.37-20.37 23.086-23.086v-51.603h-19.24v43.004l-18.784 18.558-16.749-17.54v-44.023h-18.107v52.51l42.336 42.548h-25.831l-69.917-69.257v-44.36" style="fill:#0277bd"/><path d="m170.65 145.3h-25.348l12.222 13.126 13.126-13.126" style="fill:#0277bd"/></g></svg>

After

Width:  |  Height:  |  Size: 701 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,3 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="m2.9995 2.9995v18.001h18.001v-18.001zm14.101 8.8586c.42564 0 .8457.04755 1.2598.14465.41696.09375.77812.21308 1.0822.35706v1.723h-.17944c-.2606-.24108-.58016-.4417-.95947-.60242-.37642-.16407-.7616-.24719-1.1554-.24719-.13899 0-.27666.01135-.41565.03479-.13609.02009-.2681.06058-.39551.12085-.11293.05022-.21006.12692-.29114.23071-.08108.10045-.12268.21732-.12268.3479 0 .19755.06562.34879.19592.45593.1303.1038.37597.20042.73792.28748.23743.05692.46582.11122.68298.1648.22006.05357.45488.1278.70679.22156.49514.18751.86043.44425 1.095.76904.23744.32144.35706.73863.35706 1.2543 0 .73663-.27152 1.336-.81299 1.7981-.53857.45872-1.2707.68848-2.1973.68848-.53567 0-1.003-.05399-1.4026-.16113-.39669-.1105-.76948-.24823-1.1169-.41565v-1.7944h.18311c.34457.31809.72975.56349 1.1554.73425.42854.17076.83851.25635 1.2323.25635.10134 0 .23596-.01104.401-.03113s.29859-.05383.40283-.10071c.1274-.06027.23204-.13481.31311-.22522.08397-.09041.12634-.22354.12634-.401 0-.16407-.06149-.30578-.18311-.42297-.11872-.12054-.29387-.21287-.52551-.27649-.24322-.06697-.50052-.12802-.77271-.18494-.26928-.06027-.52245-.13664-.75989-.22705-.54436-.20425-.93704-.47941-1.1774-.82764-.23743-.35158-.35706-.78655-.35706-1.3055 0-.69645.27076-1.2642.80933-1.7029.54147-.44198 1.2353-.66284 2.0837-.66284zm-8.9813.1355h2.5104c.5212 0 .90225.02024 1.1426.06042.24322.04018.484.12822.72144.2655.24612.14398.42877.33785.54748.58228.12161.24108.18128.51807.18128.82947 0 .36162-.08215.68156-.24719.95947-.16505.27456-.39833.48868-.69946.6427v.04028c.42275.0971.7573.29772 1.0034.60242.24902.3047.37354.70593.37354 1.2048 0 .36162-.06303.68585-.19043.97046-.12451.28461-.2963.51928-.51636.70679-.25481.22099-.53719.37866-.84412.47241-.30403.09375-.68998.14099-1.1591.14099h-2.8235zm1.6589 1.3715v1.582h.26184c.2635 0 .48668-.0064.672-.01648.18531-.01004.33232-.04379.43945-.10071.15057-.07701.24847-.17426.2948-.2948.04633-.12389.06958-.26592.06958-.42664 0-.12389-.02738-.24782-.0824-.3717-.05212-.12389-.14589-.21622-.28198-.27649-.12161-.05357-.27351-.08271-.45593-.08606-.17952-.0067-.43269-.0092-.75989-.0092zm0 2.8729v1.8622h.12268c.46908 0 .80439-.0021 1.0071-.0055.20269-.0033.38947-.0463.5603-.13.17373-.08371.29335-.19414.35706-.33142.0666-.14063.09888-.30076.09888-.48157 0-.23773-.03977-.42025-.12085-.54748-.07818-.13058-.21356-.22752-.40466-.29114-.1303-.04353-.30958-.06806-.53833-.07141-.22875-.0033-.46693-.0037-.71594-.0037z" fill="#26a69a"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><defs><style>.cls-1{fill:#00ff93;}.cls-2{fill:#00b368;}</style></defs><g transform="matrix(.50483 0 0 .50483 1.4249 4.9375)" style="fill-rule:evenodd;fill:none"><g transform="matrix(.13264 0 0 .13264 1.0527 .72649)" data-name="Layer 2"><g id="Mark"><polygon class="cls-1" points="100 49 100 149 0 100 0 0" style="fill:#00ff93"/><polygon class="cls-1" points="201 100 201 0 300 49" style="fill:#00ff93"/><polygon class="cls-2" points="100 49 100 149 201 100 201 0" style="fill:#00b368"/><polygon class="cls-2" points="201 100 201 200 300 149 300 49" style="fill:#00b368"/></g></g></g></svg>

After

Width:  |  Height:  |  Size: 664 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1 @@
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m16.45 15.97.42 2.44c-.26.14-.68.27-1.24.39-.57.13-1.24.2-2.01.2-2.21-.04-3.87-.7-4.98-1.96-1.14-1.27-1.68-2.88-1.68-4.83.04-2.31.72-4.08 2.04-5.32 1.28-1.25 2.92-1.89 4.9-1.89.75 0 1.4.07 1.94.19s.94.25 1.2.4l-.6 2.49-1.04-.34c-.4-.1-.87-.15-1.4-.15-1.15-.01-2.11.36-2.86 1.1-.76.73-1.14 1.85-1.18 3.34.01 1.36.37 2.42 1.08 3.2.71.77 1.7 1.17 2.99 1.18l1.33-.12c.43-.08.79-.19 1.09-.32z" style="fill:#0277bd"/></svg>

After

Width:  |  Height:  |  Size: 501 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="300" height="300" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -822.52)" fill-rule="evenodd">
<rect transform="matrix(-.98339 .18149 .60192 .79856 0 0)" x="405.55" y="967.22" width="107.25" height="156.59" rx="12.306" ry="12.31" color="#000000" fill="#2d9bbd"/>
<rect transform="matrix(-.98528 .17093 -.59175 .80612 0 0)" x="-1156.5" y="1461.9" width="108.34" height="123.15" rx="10.69" ry="12.31" color="#000000" fill="#4a4bcd"/>
<path transform="matrix(.94498 -1.0735 -.88722 -1.3202 147.7 1438.8)" d="m133.65 250.09c-2.223-0.85461-25.153 2.843-26.449 0.84496-1.2961-1.998 11.428-21.429 11.554-23.807s-10.476-23.043-8.9768-24.893 23.911 4.2466 26.212 3.6314c2.3008-0.61525 18.678-17.084 20.901-16.23 2.223 0.85462 3.3502 24.053 4.6463 26.051 1.2961 1.998 22.02 12.484 21.894 14.863-0.12584 2.3783-21.841 10.619-23.34 12.469-1.4997 1.8501-5.0688 24.8-7.3696 25.416-2.3008 0.61525-16.849-17.49-19.072-18.345z" color="#000000" fill="#2e5bc1"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

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