Merge branch 'develop' into icons/aarch64
21
.github/workflows/npm_publish.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
on:
|
||||
release:
|
||||
types: [released]
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
# "ref" specifies the branch to check out.
|
||||
# "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted
|
||||
ref: ${{ github.event.release.target_commitish }}
|
||||
- name: Use Node.js 12
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 12
|
||||
registry-url: https://registry.npmjs.org/ # Specifies the registry, this field is required!
|
||||
- run: npm ci
|
||||
- run: npm publish
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }}
|
@@ -81,6 +81,7 @@ First of all, thanks for taking the time to contribute! This project can only gr
|
||||
<li>Each <code>.svg</code> file contains one version of an icon in a <code>0 0 128 128</code> viewbox. You can use a service like <a href="https://www.iloveimg.com/resize-image/resize-svg">resize-image</a> for scaling the svg.</li>
|
||||
<li>The <code>svg</code> element does not need the <code>height</code> and <code>width</code> attributes. However, if you do use it, ensure their values are either <code>"128"</code> or <code>"128px"</code>. Ex: <code>height="128"</code></li>
|
||||
<li>Each <code>.svg</code> must use the <code>fill</code> attribute instead of using <code>classes</code> for colors. See <a href="https://github.com/devicons/devicon/issues/407">here</a> for more details.</li>
|
||||
<li>The naming convention for the svg file is the following: <code>(Icon name)-(original|plain|line)(-wordmark?).</code></li>
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
@@ -259,4 +260,5 @@ As an example, let's assume you have created the svgs for Redhat and Amazon Web
|
||||
<li>Ensure code quality is up to standard</li>
|
||||
<li>Upload svgs to <a href="https://icomoon.io/app/#/select">icomoon.io</a> and take a screenshot to check that it looks good.
|
||||
<li>Comment on the PR so maintainers don't have to manually upload icon result.</li>
|
||||
<li>Publishing a new release to <a href="https://www.npmjs.com/package/devicon">npm</a>; See <a href="https://github.com/devicons/devicon/issues/288">#288</a></li>
|
||||
</ul>
|
||||
|
220
README.md
@@ -1,26 +1,129 @@
|
||||
# Devicon v2
|
||||
<p align="center">
|
||||
<a href="https://github.com/devicons/devicon/releases">
|
||||
<img alt="GitHub release (latest by semver)" src="https://img.shields.io/github/v/release/devicons/devicon?color=%2360be86&label=Latest%20release&style=for-the-badge&sort=semver">
|
||||
</a>
|
||||
<a href="/LICENSE">
|
||||
<img alt="GitHub" src="https://img.shields.io/github/license/devicons/devicon?color=%2360be86&style=for-the-badge">
|
||||
</a>
|
||||
<a href="https://github.com/devicons/devicon/graphs/contributors">
|
||||
<img alt="GitHub contributors" src="https://img.shields.io/github/contributors-anon/devicons/devicon?color=%2360be86&style=for-the-badge">
|
||||
</a>
|
||||
<a href="https://github.com/devicons/devicon/actions">
|
||||
<img alt="GitHub branch checks state" src="https://img.shields.io/github/checks-status/devicons/devicon/master?color=%2360be86&style=for-the-badge">
|
||||
</a>
|
||||
<a href="https://github.com/devicons/devicon/issues?q=is%3Aopen+is%3Aissue+label%3Arequest%3Aicon">
|
||||
<img alt="GitHub issues by-label" src="https://img.shields.io/github/issues/devicons/devicon/request:icon?color=%2360be86&label=icon%20requests&style=for-the-badge">
|
||||
</a>
|
||||
<a href="https://github.com/devicons/devicon/stargazers">
|
||||
<img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/devicons/devicon?color=%2360be86&label=github%20stars&style=for-the-badge">
|
||||
</a>
|
||||
</p>
|
||||
<br />
|
||||
<div align="center">
|
||||
<a href="https://github.com/devicons/devicon">
|
||||
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/devicon/devicon-original-wordmark.svg" alt="Devicon Logo" height="140" />
|
||||
</a>
|
||||
<h5 align="center">
|
||||
devicon aims to gather all logos representing development languages and tools.
|
||||
</h5>
|
||||
<p align="center">
|
||||
<a target="_blank" href="https://devicon.dev">Demo</a>
|
||||
·
|
||||
<a target="_blank" href="https://github.com/devicons/devicon/issues/new?assignees=&labels=request%3Aicon&template=icon-request.md&title=Icon+request%3A+%5BNAME%5D">Request Icon</a>
|
||||
·
|
||||
<a href="#contribute">Contribute</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
[https://devicons.github.io/devicon/](https://devicons.github.io/devicon/)
|
||||
<h2>TL;DR;</h2>
|
||||
|
||||
Devicon aims to gather all logos representing development languages and tools.
|
||||
Each icon comes in several versions: font/svg, original/plain/line, colored/not colored, wordmark/no wordmark.
|
||||
```html
|
||||
<!-- in your header -->
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css">
|
||||
|
||||
Devicon has 80+ icons and 200+ versions. And it's growing!
|
||||
<!-- in your body -->
|
||||
<i class="devicon-devicon-plain"></i>
|
||||
```
|
||||
|
||||
See all available icons on the [new website](https://devicons.github.io/devicon/).
|
||||
<h2>Table of Contents</h2>
|
||||
<ol>
|
||||
<li><a href="#about">About the project</a></li>
|
||||
<li><a href="#getting-started">Getting started</a></li>
|
||||
<li><a href="#request-icon">Requesting icon</a></li>
|
||||
<li><a href="#contribute">Contributing</a></li>
|
||||
<li><a href="#build-yourself">Go build yourself</a></li>
|
||||
</ol>
|
||||
|
||||
## Icon requests
|
||||
When you want to request a icon please feel feel to create a issue. See our [contribution guidelines](https://github.com/konpa/devicon/blob/master/CONTRIBUTING.md) for more information.
|
||||
<h2 id="about">About the project</h2>
|
||||
<p>
|
||||
Devicon aims to gather all logos representing development languages and tools.
|
||||
Each icon comes in several versions: font/svg, original/plain/line, colored/not colored, wordmark/no wordmark.
|
||||
Devicon has 150+ icons. And it's growing!<br />
|
||||
</p>
|
||||
<p>
|
||||
See the <a href="/devicon.json">devicon.json</a> or <a href="https://devicon.dev">our website</a> for complete and up to date reference of
|
||||
all available icons.
|
||||
</p>
|
||||
<sub>
|
||||
All product names, logos, and brands are property of their respective owners. All company, product and service
|
||||
names used in this website are for identification purposes only. Use of these names, logos, and brands does not
|
||||
imply endorsement.
|
||||
</sub>
|
||||
|
||||
## How to use
|
||||
|
||||
For a super fast setup go check [https://devicons.github.io/devicon/](https://devicons.github.io/devicon/)
|
||||
<h2 id="getting-started">Getting started</h2>
|
||||
<p>
|
||||
For a super fast setup go check <a href="https://devicon.dev">devicon.dev</a>.<br />
|
||||
You can either <a href="#getting-started-svg">use the raw svg</a> icons or our <a href="#getting-started-font">devicon font</a> (which is
|
||||
also available via CDN).
|
||||
</p>
|
||||
|
||||
_2 ways of using devicon:_
|
||||
<h4 id="getting-started-font">Use the <code>devicon</code> font (recommended)</h4>
|
||||
<p>
|
||||
You can install devicon as a dependency to your project either with <code>npm</code> or <code>yarn</code>:
|
||||
</p>
|
||||
|
||||
#### SVG icons
|
||||
```bash
|
||||
npm install --save devicon
|
||||
yarn add devicon
|
||||
```
|
||||
|
||||
- Copy/paste svg code (from the [svg folder](https://github.com/devicons/devicon/tree/master/icons) or the [project page](https://github.com/devicons/devicon) using your dev tool)
|
||||
<p>
|
||||
If you don't want to use a package manager you can also download
|
||||
and include <a href="/devicon.min.css">devicon.min.css</a> next to the <a href="/fonts">font files</a> to your project.
|
||||
See <a href="https://devicon.dev">devicon.dev</a> for details about how to add devicon to your project via
|
||||
a CDN.
|
||||
</p>
|
||||
<p>
|
||||
After setting up you just have to include the stylesheet in your header
|
||||
to get started:
|
||||
</p>
|
||||
|
||||
```html
|
||||
<link rel="stylesheet" href="devicon.min.css">
|
||||
```
|
||||
|
||||
<p>Start using icons with <code><i></code>-tag</p>
|
||||
|
||||
```html
|
||||
<!-- for git plain version -->
|
||||
<i class="devicon-git-plain"></i>
|
||||
|
||||
<!-- for git plain version with wordmark -->
|
||||
<i class="devicon-git-plain-wordmark"></i>
|
||||
|
||||
<!-- for git plain version colored with git main color (devicon-color.css or devicon.min.css required) -->
|
||||
<i class="devicon-git-plain colored"></i>
|
||||
|
||||
<!-- for git plain version with wordmark colored with git main color (devicon-color.css or devicon.min.css required) -->
|
||||
<i class="devicon-git-plain-wordmark colored"></i>
|
||||
```
|
||||
|
||||
<p>
|
||||
An alternate way to use <code>devicon</code> is by copy/paste the raw svg code
|
||||
to your project.
|
||||
</p>
|
||||
<h4 id="getting-started-svg">Copy/paste svg code (from the <a href="https://github.com/devicons/devicon/tree/master/icons">svg folder</a> or the <a href="https://devicon.dev">project page</a></h4>
|
||||
|
||||
```html
|
||||
<!-- for git plain version -->
|
||||
@@ -29,7 +132,7 @@ _2 ways of using devicon:_
|
||||
</svg>
|
||||
```
|
||||
|
||||
- Add css rules in your stylesheet
|
||||
Add css rules in your stylesheet
|
||||
```css
|
||||
.devicon-git-plain {
|
||||
max-width: 2em;
|
||||
@@ -41,71 +144,48 @@ _2 ways of using devicon:_
|
||||
}
|
||||
```
|
||||
|
||||
#### Icons font
|
||||
<h2 id="request-icon">Requesting icon</h2>
|
||||
<p>
|
||||
When you want to request a icon please feel feel to create a issue. See our <a href="/CONTRIBUTING.md#requestingIcon">contribution guidelines</a> for more information.
|
||||
</p>
|
||||
|
||||
- Upload devicon.min.css and font files to your project
|
||||
- Note: the `devicon.css` file is not the same as the `devicon.min.css`. It doesn't contain any colors or aliases.
|
||||
<h2 id="contribute">Contributing</h2>
|
||||
<p>
|
||||
We are happy for every contribution. Please have a look at our <a href="CONTRIBUTING.md#overview-on-submitting-icons">contribution guidelines</a>
|
||||
to see how you can contribute to this project.
|
||||
</p>
|
||||
|
||||
```html
|
||||
<link rel="stylesheet" href="devicon.min.css">
|
||||
```
|
||||
<h2 id="build-yourself">Go build yourself</h2>
|
||||
<p>
|
||||
Feel free to follow those steps when you want to build the font
|
||||
by yourself.
|
||||
</p>
|
||||
<h5>Prerequisites</h5>
|
||||
<p>Install gulp (and gulp plugins)</p>
|
||||
|
||||
- Add icon using `<i>` tag
|
||||
|
||||
```html
|
||||
<!-- for git plain version -->
|
||||
<i class="devicon-git-plain"></i>
|
||||
|
||||
<!-- for git plain version with wordmark -->
|
||||
<i class="devicon-git-plain-wordmark"></i>
|
||||
|
||||
<!-- for git plain version colored with git main color (devicon-color.css or devicon.min.css required) -->
|
||||
<i class="devicon-git-plain colored"></i>
|
||||
|
||||
<!-- for git plain version with wordmark colored with git main color (devicon-color.css or devicon.min.css required) -->
|
||||
<i class="devicon-git-plain-wordmark colored"></i>
|
||||
```
|
||||
|
||||
##### NPM and Bower packages
|
||||
|
||||
You can install devicon as a dependency to your project either with NPM or Bower
|
||||
|
||||
```
|
||||
// NPM
|
||||
npm install --save devicon
|
||||
|
||||
// Bower
|
||||
bower install --save devicon
|
||||
```
|
||||
|
||||
<sub>Final font is build with [Icomoon app](https://icomoon.io/)</sub>
|
||||
|
||||
##### See the [devicon.json file](https://github.com/devicons/devicon/blob/master/devicon.json) or [devicon website](https://devicons.github.io/devicon/) for complete and up to date reference of icon's available versions.
|
||||
|
||||
## Contribute
|
||||
|
||||
Please have a look at the [CONTRIBUTING.md](https://github.com/devicons/devicon/blob/master/CONTRIBUTING.md) file
|
||||
|
||||
Under [MIT Licence](https://github.com/devicons/devicon/blob/master/LICENSE)
|
||||
|
||||
<sub>All product names, logos, and brands are property of their respective owners. All company, product and service names used in this website are for identification purposes only. Use of these names, logos, and brands does not imply endorsement.</sub>
|
||||
|
||||
## Go build yourself
|
||||
### Prerequisites
|
||||
Install gulp (and gulp plugins)
|
||||
```bash
|
||||
npm install
|
||||
```
|
||||
### Build the font and export stylesheet
|
||||
Open [icomoon app](https://icomoon.io/app/#/select) and import [icomoon.json](icomoon.json). Choose _yes_ when beeing asked
|
||||
|
||||
<h5>Build the font and export stylesheet</h5>
|
||||
Open <a href="https://icomoon.io/app/#/select">icomoon.io</a> and import <a href="/icomoon.json">icomoon.json</a>. Choose <i>yes</i> when beeing asked
|
||||
if you like to restore the settings stored in the configuration file.
|
||||
|
||||
The next step is to click on **Generate font** and download the resulting archive. Extract it
|
||||
contents and you will find a [fonts](./fonts) directory next to a `style.css`. Replace the content of the `fonts` folder,
|
||||
rename the `style.css` to [devicon.css](./devicon.css) and follow the next step to build the final stylesheet.
|
||||
The next step is to click on <b>Generate font</b> and download the resulting archive. Extract it
|
||||
contents and you will find a <a href="/fonts">fonts</a> directory next to a <code>style.css</code>. Replace the content of the <code>fonts</code> folder,
|
||||
rename the <code>style.css</code> to <a href="/devicon.css">devicon.css</a> and follow the next step to build the final stylesheet.
|
||||
|
||||
<h5>Build and minify stylesheet</h5>
|
||||
<p>
|
||||
Run the following command to build the resulting file <code>devicon.min.css</code>
|
||||
</p>
|
||||
|
||||
### Build and minify stylesheet
|
||||
Run the following command to build the resulting file `devicon.min.css`
|
||||
```bash
|
||||
npm run build-css
|
||||
```
|
||||
|
||||
<br />
|
||||
<div align="center">
|
||||
<img src="https://forthebadge.com/images/badges/built-with-love.svg" />
|
||||
<img src="https://forthebadge.com/images/badges/built-by-developers.svg" />
|
||||
</div>
|
||||
|
44
devicon.json
@@ -1832,6 +1832,27 @@
|
||||
"color": "#0769ad",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "jupyter",
|
||||
"tags": [
|
||||
"programming",
|
||||
"language"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"original-wordmark",
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
],
|
||||
"font": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
]
|
||||
},
|
||||
"color": "#F37726",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "kotlin",
|
||||
"tags": [
|
||||
@@ -2099,7 +2120,7 @@
|
||||
},
|
||||
"color": "#6dd0c7",
|
||||
"aliases": []
|
||||
},
|
||||
},
|
||||
{
|
||||
"name": "nestjs",
|
||||
"tags": [
|
||||
@@ -2248,6 +2269,27 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ocaml",
|
||||
"tags": [
|
||||
"programming",
|
||||
"language"
|
||||
],
|
||||
"versions": {
|
||||
"svg": [
|
||||
"original",
|
||||
"original-wordmark",
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
],
|
||||
"font": [
|
||||
"plain",
|
||||
"plain-wordmark"
|
||||
]
|
||||
},
|
||||
"color": "#F18803",
|
||||
"aliases": []
|
||||
},
|
||||
{
|
||||
"name": "photoshop",
|
||||
"tags": [
|
||||
|
17
icons/jupyter/jupyter-original-wordmark.svg
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(30.588235%,30.588235%,30.588235%);fill-opacity:1;" d="M 6.648438 67.351562 C 6.648438 71.261719 6.285156 72.535156 5.351562 73.472656 C 4.316406 74.28125 2.96875 74.726562 1.570312 74.726562 L 1.933594 76.960938 C 4.097656 76.984375 6.199219 76.324219 7.839844 75.105469 C 8.722656 74.175781 9.378906 73.105469 9.769531 71.953125 C 10.160156 70.800781 10.277344 69.59375 10.117188 68.402344 L 10.117188 53.609375 L 6.648438 53.609375 Z M 6.648438 67.351562 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(30.588235%,30.588235%,30.588235%);fill-opacity:1;" d="M 32.53125 65.589844 C 32.53125 67.265625 32.53125 68.761719 32.683594 70.058594 L 29.601562 70.058594 L 29.394531 67.398438 C 28.75 68.339844 27.828125 69.117188 26.722656 69.648438 C 25.617188 70.183594 24.367188 70.457031 23.101562 70.4375 C 20.097656 70.4375 16.523438 69.03125 16.523438 63.289062 L 16.523438 53.746094 L 19.996094 53.746094 L 19.996094 62.683594 C 19.996094 65.789062 21.109375 67.867188 24.242188 67.867188 C 24.886719 67.875 25.527344 67.769531 26.125 67.558594 C 26.71875 67.347656 27.261719 67.039062 27.71875 66.644531 C 28.175781 66.25 28.535156 65.78125 28.777344 65.269531 C 29.023438 64.753906 29.144531 64.203125 29.136719 63.644531 L 29.136719 53.632812 L 32.605469 53.632812 L 32.605469 65.5 Z M 32.53125 65.589844 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(30.588235%,30.588235%,30.588235%);fill-opacity:1;" d="M 39.109375 59.0625 C 39.109375 56.984375 39.109375 55.285156 38.953125 53.746094 L 42.0625 53.746094 L 42.214844 56.539062 C 42.910156 55.527344 43.90625 54.699219 45.101562 54.140625 C 46.296875 53.582031 47.644531 53.3125 49 53.363281 C 53.613281 53.363281 57.082031 56.695312 57.082031 61.652344 C 57.082031 67.507812 52.914062 70.414062 48.40625 70.414062 C 47.253906 70.457031 46.105469 70.246094 45.074219 69.792969 C 44.046875 69.34375 43.167969 68.671875 42.527344 67.84375 L 42.527344 76.78125 L 39.109375 76.78125 Z M 42.527344 63.417969 C 42.535156 63.824219 42.589844 64.230469 42.683594 64.625 C 42.976562 65.617188 43.644531 66.496094 44.582031 67.125 C 45.519531 67.753906 46.675781 68.089844 47.863281 68.089844 C 51.515625 68.089844 53.664062 65.519531 53.664062 61.789062 C 53.664062 58.527344 51.644531 55.734375 47.992188 55.734375 C 46.546875 55.835938 45.195312 56.386719 44.1875 57.289062 C 43.183594 58.191406 42.589844 59.375 42.527344 60.625 Z M 42.527344 63.417969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(30.588235%,30.588235%,30.588235%);fill-opacity:1;" d="M 63.265625 53.730469 L 67.4375 63.359375 C 67.875 64.433594 68.34375 65.726562 68.652344 66.6875 C 69.015625 65.707031 69.402344 64.453125 69.871094 63.292969 L 73.652344 53.730469 L 77.304688 53.730469 L 72.125 65.347656 C 69.535156 70.933594 67.953125 73.816406 65.570312 75.558594 C 64.371094 76.507812 62.90625 77.167969 61.324219 77.480469 L 60.46875 74.980469 C 61.578125 74.664062 62.605469 74.171875 63.5 73.527344 C 64.761719 72.636719 65.765625 71.503906 66.425781 70.21875 C 66.566406 69.996094 66.664062 69.753906 66.710938 69.503906 C 66.679688 69.234375 66.601562 68.972656 66.476562 68.722656 L 59.433594 53.683594 L 63.214844 53.683594 Z M 63.265625 53.730469 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(30.588235%,30.588235%,30.588235%);fill-opacity:1;" d="M 86.515625 49.042969 L 86.515625 53.734375 L 91.488281 53.734375 L 91.488281 55.96875 L 86.515625 55.96875 L 86.515625 64.773438 C 86.515625 66.785156 87.191406 67.945312 89.105469 67.945312 C 89.789062 67.953125 90.464844 67.886719 91.125 67.742188 L 91.28125 69.980469 C 90.292969 70.273438 89.246094 70.410156 88.199219 70.378906 C 87.507812 70.417969 86.8125 70.324219 86.164062 70.109375 C 85.515625 69.894531 84.929688 69.558594 84.445312 69.128906 C 83.390625 67.910156 82.910156 66.394531 83.097656 64.882812 L 83.097656 55.945312 L 80.144531 55.945312 L 80.144531 53.710938 L 83.148438 53.710938 L 83.148438 49.734375 Z M 86.515625 49.042969 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(30.588235%,30.588235%,30.588235%);fill-opacity:1;" d="M 97.882812 62.417969 C 97.8125 63.175781 97.933594 63.9375 98.238281 64.648438 C 98.542969 65.363281 99.023438 66.011719 99.644531 66.546875 C 100.269531 67.085938 101.019531 67.5 101.847656 67.761719 C 102.671875 68.027344 103.558594 68.128906 104.433594 68.070312 C 106.210938 68.105469 107.976562 67.816406 109.613281 67.21875 L 110.210938 69.453125 C 108.199219 70.167969 106.039062 70.511719 103.867188 70.460938 C 102.597656 70.535156 101.328125 70.371094 100.140625 69.984375 C 98.953125 69.59375 97.878906 68.988281 96.988281 68.207031 C 96.097656 67.425781 95.410156 66.488281 94.980469 65.457031 C 94.550781 64.429688 94.382812 63.328125 94.488281 62.238281 C 94.488281 57.320312 97.882812 53.433594 103.425781 53.433594 C 109.640625 53.433594 111.195312 58.125 111.195312 61.121094 C 111.226562 61.582031 111.226562 62.042969 111.195312 62.503906 L 97.804688 62.503906 Z M 108.035156 60.183594 C 108.136719 59.585938 108.085938 58.976562 107.890625 58.394531 C 107.695312 57.816406 107.355469 57.28125 106.898438 56.824219 C 106.441406 56.367188 105.878906 55.996094 105.242188 55.746094 C 104.609375 55.492188 103.917969 55.359375 103.21875 55.355469 C 101.796875 55.445312 100.460938 55.988281 99.480469 56.882812 C 98.496094 57.773438 97.9375 58.949219 97.910156 60.183594 Z M 108.035156 60.183594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(30.588235%,30.588235%,30.588235%);fill-opacity:1;" d="M 116.460938 58.808594 C 116.460938 56.890625 116.460938 55.234375 116.304688 53.714844 L 119.414062 53.714844 L 119.414062 56.910156 L 119.570312 56.910156 C 119.894531 55.925781 120.570312 55.050781 121.496094 54.410156 C 122.425781 53.769531 123.5625 53.394531 124.75 53.335938 C 125.074219 53.300781 125.40625 53.300781 125.734375 53.335938 L 125.734375 56.128906 C 125.335938 56.089844 124.9375 56.089844 124.542969 56.128906 C 123.367188 56.167969 122.246094 56.574219 121.394531 57.273438 C 120.539062 57.972656 120.011719 58.917969 119.90625 59.925781 C 119.808594 60.386719 119.757812 60.847656 119.75 61.3125 L 119.75 70.003906 L 116.332031 70.003906 L 116.332031 58.832031 Z M 116.460938 58.808594 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(46.27451%,46.27451%,46.666667%);fill-opacity:1;" d="M 109.765625 7.28125 C 109.828125 8.785156 109.449219 10.277344 108.675781 11.5625 C 107.902344 12.847656 106.765625 13.875 105.414062 14.511719 C 104.058594 15.148438 102.542969 15.363281 101.074219 15.132812 C 99.59375 14.902344 98.21875 14.234375 97.121094 13.21875 C 96.019531 12.199219 95.246094 10.875 94.890625 9.414062 C 94.539062 7.953125 94.625 6.417969 95.136719 5 C 95.644531 3.589844 96.5625 2.359375 97.765625 1.46875 C 98.96875 0.582031 100.410156 0.0703125 101.902344 0.0078125 C 103.898438 -0.078125 105.851562 0.640625 107.324219 2.003906 C 108.800781 3.371094 109.675781 5.265625 109.761719 7.277344 Z M 109.765625 7.28125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(95.294118%,46.666667%,14.901961%);fill-opacity:1;" d="M 65.757812 96.789062 C 45.660156 96.789062 28.109375 89.425781 18.992188 78.523438 C 22.386719 88.304688 28.710938 96.777344 37.09375 102.777344 C 45.476562 108.777344 55.496094 111.992188 65.769531 111.992188 C 76.042969 111.992188 86.0625 108.773438 94.445312 102.777344 C 102.824219 96.78125 109.148438 88.304688 112.539062 78.523438 C 103.40625 89.425781 85.855469 96.789062 65.757812 96.789062 Z M 65.757812 96.789062 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(95.294118%,46.666667%,14.901961%);fill-opacity:1;" d="M 65.75 25.882812 C 85.847656 25.882812 103.402344 33.25 112.515625 44.148438 C 109.121094 34.367188 102.796875 25.894531 94.414062 19.894531 C 86.03125 13.898438 76.015625 10.675781 65.742188 10.675781 C 55.472656 10.675781 45.449219 13.898438 37.070312 19.894531 C 28.6875 25.890625 22.359375 34.367188 18.96875 44.148438 C 28.101562 33.269531 45.652344 25.882812 65.75 25.882812 Z M 65.75 25.882812 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(61.960784%,61.960784%,61.960784%);fill-opacity:1;" d="M 38.164062 117.984375 C 38.246094 119.878906 37.769531 121.757812 36.792969 123.382812 C 35.8125 125.007812 34.386719 126.304688 32.675781 127.101562 C 30.964844 127.902344 29.089844 128.175781 27.203125 127.886719 C 25.316406 127.59375 23.609375 126.753906 22.222656 125.46875 C 20.839844 124.183594 19.863281 122.515625 19.414062 120.671875 C 18.972656 118.824219 19.082031 116.890625 19.726562 115.105469 C 20.375 113.324219 21.53125 111.777344 23.054688 110.652344 C 24.578125 109.527344 26.390625 108.894531 28.269531 108.820312 C 30.789062 108.714844 33.238281 109.621094 35.097656 111.339844 C 36.953125 113.066406 38.058594 115.453125 38.164062 117.988281 Z M 38.164062 117.984375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(38.039216%,38.431373%,38.431373%);fill-opacity:1;" d="M 21.285156 23.417969 C 20.183594 23.46875 19.085938 23.179688 18.144531 22.601562 C 17.199219 22.023438 16.445312 21.171875 15.980469 20.167969 C 15.511719 19.160156 15.359375 18.03125 15.527344 16.929688 C 15.695312 15.828125 16.183594 14.796875 16.933594 13.980469 C 17.679688 13.160156 18.652344 12.582031 19.722656 12.316406 C 20.792969 12.046875 21.925781 12.113281 22.960938 12.5 C 24 12.882812 24.898438 13.566406 25.546875 14.46875 C 27.117188 16.640625 26.953125 19.617188 25.148438 21.597656 C 24.148438 22.699219 22.757812 23.351562 21.28125 23.417969 Z M 21.285156 23.417969 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.6 KiB |
10
icons/jupyter/jupyter-original.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(46.27451%,46.27451%,46.666667%);fill-opacity:1;" d="M 109.765625 7.28125 C 109.828125 8.785156 109.449219 10.277344 108.675781 11.5625 C 107.902344 12.847656 106.765625 13.875 105.414062 14.511719 C 104.058594 15.148438 102.542969 15.363281 101.074219 15.132812 C 99.59375 14.902344 98.21875 14.234375 97.121094 13.21875 C 96.019531 12.199219 95.246094 10.875 94.890625 9.414062 C 94.539062 7.953125 94.625 6.417969 95.136719 5 C 95.644531 3.589844 96.5625 2.359375 97.765625 1.46875 C 98.96875 0.582031 100.410156 0.0703125 101.902344 0.0078125 C 103.898438 -0.078125 105.851562 0.640625 107.324219 2.003906 C 108.800781 3.371094 109.675781 5.265625 109.761719 7.277344 Z M 109.765625 7.28125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(95.294118%,46.666667%,14.901961%);fill-opacity:1;" d="M 65.757812 96.789062 C 45.660156 96.789062 28.109375 89.425781 18.992188 78.523438 C 22.386719 88.304688 28.710938 96.777344 37.09375 102.777344 C 45.476562 108.777344 55.496094 111.992188 65.769531 111.992188 C 76.042969 111.992188 86.0625 108.773438 94.445312 102.777344 C 102.824219 96.78125 109.148438 88.304688 112.539062 78.523438 C 103.40625 89.425781 85.855469 96.789062 65.757812 96.789062 Z M 65.757812 96.789062 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(95.294118%,46.666667%,14.901961%);fill-opacity:1;" d="M 65.75 25.882812 C 85.847656 25.882812 103.402344 33.25 112.515625 44.148438 C 109.121094 34.367188 102.796875 25.894531 94.414062 19.894531 C 86.03125 13.898438 76.015625 10.675781 65.742188 10.675781 C 55.472656 10.675781 45.449219 13.898438 37.070312 19.894531 C 28.6875 25.890625 22.359375 34.367188 18.96875 44.148438 C 28.101562 33.269531 45.652344 25.882812 65.75 25.882812 Z M 65.75 25.882812 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(59.607843%,59.215686%,59.607843%);fill-opacity:1;" d="M 38.164062 117.984375 C 38.246094 119.878906 37.769531 121.757812 36.792969 123.382812 C 35.8125 125.007812 34.386719 126.304688 32.675781 127.101562 C 30.964844 127.902344 29.089844 128.175781 27.203125 127.886719 C 25.316406 127.59375 23.609375 126.753906 22.222656 125.46875 C 20.839844 124.183594 19.863281 122.515625 19.414062 120.671875 C 18.972656 118.824219 19.082031 116.890625 19.726562 115.105469 C 20.375 113.324219 21.53125 111.777344 23.054688 110.652344 C 24.578125 109.527344 26.390625 108.894531 28.269531 108.820312 C 30.789062 108.714844 33.238281 109.621094 35.097656 111.339844 C 36.953125 113.066406 38.058594 115.453125 38.164062 117.988281 Z M 38.164062 117.984375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(43.529412%,43.921569%,43.921569%);fill-opacity:1;" d="M 21.285156 23.417969 C 20.183594 23.46875 19.085938 23.179688 18.144531 22.601562 C 17.199219 22.023438 16.445312 21.171875 15.980469 20.167969 C 15.511719 19.160156 15.359375 18.03125 15.527344 16.929688 C 15.695312 15.828125 16.183594 14.796875 16.933594 13.980469 C 17.679688 13.160156 18.652344 12.582031 19.722656 12.316406 C 20.792969 12.046875 21.925781 12.113281 22.960938 12.5 C 24 12.882812 24.898438 13.566406 25.546875 14.46875 C 27.117188 16.640625 26.953125 19.617188 25.148438 21.597656 C 24.148438 22.699219 22.757812 23.351562 21.28125 23.417969 Z M 21.285156 23.417969 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
17
icons/jupyter/jupyter-plain-wordmark.svg
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 5.429688 67.058594 C 5.429688 70.941406 5.042969 72.207031 4.042969 73.136719 C 2.9375 73.9375 1.496094 74.378906 0 74.378906 L 0.386719 76.597656 C 2.703125 76.621094 4.949219 75.964844 6.707031 74.757812 C 7.648438 73.832031 8.351562 72.769531 8.769531 71.625 C 9.1875 70.484375 9.3125 69.285156 9.140625 68.101562 L 9.140625 53.417969 L 5.429688 53.417969 Z M 5.429688 67.058594 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 31.589844 64.890625 C 31.589844 66.5 31.589844 67.933594 31.742188 69.179688 L 28.621094 69.179688 L 28.410156 66.625 C 27.753906 67.53125 26.820312 68.277344 25.699219 68.785156 C 24.582031 69.296875 23.3125 69.5625 22.03125 69.542969 C 18.984375 69.542969 15.359375 68.191406 15.359375 62.683594 L 15.359375 53.527344 L 18.878906 53.527344 L 18.878906 62.101562 C 18.878906 65.082031 20.011719 67.074219 23.183594 67.074219 C 23.839844 67.082031 24.488281 66.980469 25.09375 66.78125 C 25.695312 66.578125 26.246094 66.28125 26.710938 65.902344 C 27.175781 65.523438 27.539062 65.074219 27.78125 64.582031 C 28.03125 64.089844 28.15625 63.5625 28.148438 63.023438 L 28.148438 53.417969 L 31.664062 53.417969 L 31.664062 64.804688 Z M 31.589844 64.890625 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 39.070312 58.300781 C 39.070312 56.15625 39.070312 54.398438 38.910156 52.8125 L 42.074219 52.8125 L 42.230469 55.695312 C 42.933594 54.648438 43.949219 53.796875 45.164062 53.21875 C 46.378906 52.640625 47.75 52.363281 49.128906 52.414062 C 53.816406 52.414062 57.34375 55.855469 57.34375 60.976562 C 57.34375 67.023438 53.105469 70.023438 48.523438 70.023438 C 47.351562 70.066406 46.183594 69.851562 45.136719 69.382812 C 44.089844 68.917969 43.199219 68.222656 42.546875 67.371094 L 42.546875 76.597656 L 39.070312 76.597656 Z M 42.546875 62.796875 C 42.554688 63.21875 42.609375 63.636719 42.703125 64.046875 C 43.003906 65.070312 43.683594 65.976562 44.636719 66.625 C 45.589844 67.277344 46.765625 67.625 47.972656 67.625 C 51.683594 67.625 53.867188 64.96875 53.867188 61.117188 C 53.867188 57.75 51.816406 54.863281 48.101562 54.863281 C 46.632812 54.96875 45.257812 55.539062 44.234375 56.46875 C 43.214844 57.402344 42.609375 58.625 42.546875 59.914062 Z M 42.546875 62.796875 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 63.34375 53.460938 L 67.648438 62.84375 C 68.097656 63.890625 68.582031 65.148438 68.898438 66.085938 C 69.273438 65.128906 69.675781 63.910156 70.15625 62.777344 L 74.058594 53.460938 L 77.824219 53.460938 L 72.480469 64.78125 C 69.808594 70.21875 68.179688 73.03125 65.722656 74.726562 C 64.484375 75.652344 62.972656 76.292969 61.339844 76.597656 L 60.460938 74.164062 C 61.605469 73.855469 62.664062 73.375 63.585938 72.746094 C 64.886719 71.878906 65.921875 70.777344 66.605469 69.523438 C 66.75 69.308594 66.851562 69.070312 66.898438 68.828125 C 66.863281 68.566406 66.785156 68.3125 66.65625 68.066406 L 59.390625 53.417969 L 63.292969 53.417969 Z M 63.34375 53.460938 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 87.222656 48.378906 L 87.222656 53.03125 L 92.160156 53.03125 L 92.160156 55.246094 L 87.222656 55.246094 L 87.222656 63.976562 C 87.222656 65.972656 87.894531 67.121094 89.792969 67.121094 C 90.472656 67.128906 91.144531 67.0625 91.800781 66.917969 L 91.953125 69.140625 C 90.972656 69.429688 89.933594 69.566406 88.894531 69.535156 C 88.207031 69.574219 87.515625 69.480469 86.875 69.265625 C 86.230469 69.054688 85.648438 68.722656 85.167969 68.296875 C 84.121094 67.085938 83.640625 65.582031 83.828125 64.085938 L 83.828125 55.222656 L 80.894531 55.222656 L 80.894531 53.007812 L 83.878906 53.007812 L 83.878906 49.0625 Z M 87.222656 48.378906 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 98.789062 61.441406 C 98.714844 62.203125 98.839844 62.96875 99.15625 63.683594 C 99.476562 64.402344 99.972656 65.054688 100.621094 65.589844 C 101.269531 66.132812 102.046875 66.550781 102.90625 66.8125 C 103.761719 67.078125 104.683594 67.183594 105.59375 67.121094 C 107.4375 67.15625 109.273438 66.867188 110.972656 66.265625 L 111.59375 68.511719 C 109.503906 69.230469 107.261719 69.578125 105.003906 69.527344 C 103.6875 69.601562 102.367188 69.433594 101.132812 69.046875 C 99.902344 68.65625 98.785156 68.046875 97.859375 67.261719 C 96.933594 66.476562 96.222656 65.53125 95.773438 64.496094 C 95.328125 63.460938 95.152344 62.355469 95.265625 61.261719 C 95.265625 56.316406 98.789062 52.410156 104.546875 52.410156 C 111 52.410156 112.617188 57.125 112.617188 60.136719 C 112.648438 60.601562 112.648438 61.0625 112.617188 61.527344 L 98.707031 61.527344 Z M 109.332031 59.195312 C 109.4375 58.59375 109.386719 57.980469 109.183594 57.394531 C 108.980469 56.816406 108.625 56.277344 108.152344 55.816406 C 107.675781 55.359375 107.09375 54.984375 106.433594 54.734375 C 105.773438 54.480469 105.058594 54.34375 104.332031 54.339844 C 102.855469 54.429688 101.46875 54.976562 100.449219 55.875 C 99.425781 56.773438 98.84375 57.953125 98.816406 59.195312 Z M 109.332031 59.195312 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 117.914062 58.054688 C 117.914062 56.085938 117.914062 54.386719 117.761719 52.824219 L 120.800781 52.824219 L 120.800781 56.105469 L 120.949219 56.105469 C 121.269531 55.09375 121.929688 54.195312 122.832031 53.539062 C 123.742188 52.882812 124.851562 52.496094 126.015625 52.4375 C 126.332031 52.398438 126.65625 52.398438 126.976562 52.4375 L 126.976562 55.304688 C 126.585938 55.261719 126.199219 55.261719 125.8125 55.304688 C 124.664062 55.34375 123.566406 55.757812 122.734375 56.476562 C 121.898438 57.195312 121.382812 58.164062 121.28125 59.199219 C 121.183594 59.671875 121.136719 60.144531 121.125 60.621094 L 121.125 69.542969 L 117.785156 69.542969 L 117.785156 58.078125 Z M 117.914062 58.054688 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 109.765625 7.28125 C 109.828125 8.785156 109.449219 10.277344 108.675781 11.5625 C 107.902344 12.847656 106.765625 13.875 105.414062 14.511719 C 104.058594 15.148438 102.542969 15.363281 101.074219 15.132812 C 99.59375 14.902344 98.21875 14.234375 97.121094 13.21875 C 96.019531 12.199219 95.246094 10.875 94.890625 9.414062 C 94.539062 7.953125 94.625 6.417969 95.136719 5 C 95.644531 3.589844 96.5625 2.359375 97.765625 1.46875 C 98.96875 0.582031 100.410156 0.0703125 101.902344 0.0078125 C 103.898438 -0.078125 105.851562 0.640625 107.324219 2.003906 C 108.800781 3.371094 109.675781 5.265625 109.761719 7.277344 Z M 109.765625 7.28125 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 65.757812 96.789062 C 45.660156 96.789062 28.109375 89.425781 18.992188 78.523438 C 22.386719 88.304688 28.710938 96.777344 37.09375 102.777344 C 45.476562 108.777344 55.496094 111.992188 65.769531 111.992188 C 76.042969 111.992188 86.0625 108.773438 94.445312 102.777344 C 102.824219 96.78125 109.148438 88.304688 112.539062 78.523438 C 103.40625 89.425781 85.855469 96.789062 65.757812 96.789062 Z M 65.757812 96.789062 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 65.75 25.882812 C 85.847656 25.882812 103.402344 33.25 112.515625 44.148438 C 109.121094 34.367188 102.796875 25.894531 94.414062 19.894531 C 86.03125 13.898438 76.015625 10.675781 65.742188 10.675781 C 55.472656 10.675781 45.449219 13.898438 37.070312 19.894531 C 28.6875 25.890625 22.359375 34.367188 18.96875 44.148438 C 28.101562 33.269531 45.652344 25.882812 65.75 25.882812 Z M 65.75 25.882812 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 38.164062 117.984375 C 38.246094 119.878906 37.769531 121.757812 36.792969 123.382812 C 35.8125 125.007812 34.386719 126.304688 32.675781 127.101562 C 30.964844 127.902344 29.089844 128.175781 27.203125 127.886719 C 25.316406 127.59375 23.609375 126.753906 22.222656 125.46875 C 20.839844 124.183594 19.863281 122.515625 19.414062 120.671875 C 18.972656 118.824219 19.082031 116.890625 19.726562 115.105469 C 20.375 113.324219 21.53125 111.777344 23.054688 110.652344 C 24.578125 109.527344 26.390625 108.894531 28.269531 108.820312 C 30.789062 108.714844 33.238281 109.621094 35.097656 111.339844 C 36.953125 113.066406 38.058594 115.453125 38.164062 117.988281 Z M 38.164062 117.984375 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 21.285156 23.417969 C 20.183594 23.46875 19.085938 23.179688 18.144531 22.601562 C 17.199219 22.023438 16.445312 21.171875 15.980469 20.167969 C 15.511719 19.160156 15.359375 18.03125 15.527344 16.929688 C 15.695312 15.828125 16.183594 14.796875 16.933594 13.980469 C 17.679688 13.160156 18.652344 12.582031 19.722656 12.316406 C 20.792969 12.046875 21.925781 12.113281 22.960938 12.5 C 24 12.882812 24.898438 13.566406 25.546875 14.46875 C 27.117188 16.640625 26.953125 19.617188 25.148438 21.597656 C 24.148438 22.699219 22.757812 23.351562 21.28125 23.417969 Z M 21.285156 23.417969 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.3 KiB |
10
icons/jupyter/jupyter-plain.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128px" height="128px" viewBox="0 0 128 128" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 109.765625 7.28125 C 109.828125 8.785156 109.449219 10.277344 108.675781 11.5625 C 107.902344 12.847656 106.765625 13.875 105.414062 14.511719 C 104.058594 15.148438 102.542969 15.363281 101.074219 15.132812 C 99.59375 14.902344 98.21875 14.234375 97.121094 13.21875 C 96.019531 12.199219 95.246094 10.875 94.890625 9.414062 C 94.539062 7.953125 94.625 6.417969 95.136719 5 C 95.644531 3.589844 96.5625 2.359375 97.765625 1.46875 C 98.96875 0.582031 100.410156 0.0703125 101.902344 0.0078125 C 103.898438 -0.078125 105.851562 0.640625 107.324219 2.003906 C 108.800781 3.371094 109.675781 5.265625 109.761719 7.277344 Z M 109.765625 7.28125 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 65.757812 96.789062 C 45.660156 96.789062 28.109375 89.425781 18.992188 78.523438 C 22.386719 88.304688 28.710938 96.777344 37.09375 102.777344 C 45.476562 108.777344 55.496094 111.992188 65.769531 111.992188 C 76.042969 111.992188 86.0625 108.773438 94.445312 102.777344 C 102.824219 96.78125 109.148438 88.304688 112.539062 78.523438 C 103.40625 89.425781 85.855469 96.789062 65.757812 96.789062 Z M 65.757812 96.789062 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 65.75 25.882812 C 85.847656 25.882812 103.402344 33.25 112.515625 44.148438 C 109.121094 34.367188 102.796875 25.894531 94.414062 19.894531 C 86.03125 13.898438 76.015625 10.675781 65.742188 10.675781 C 55.472656 10.675781 45.449219 13.898438 37.070312 19.894531 C 28.6875 25.890625 22.359375 34.367188 18.96875 44.148438 C 28.101562 33.269531 45.652344 25.882812 65.75 25.882812 Z M 65.75 25.882812 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 38.164062 117.984375 C 38.246094 119.878906 37.769531 121.757812 36.792969 123.382812 C 35.8125 125.007812 34.386719 126.304688 32.675781 127.101562 C 30.964844 127.902344 29.089844 128.175781 27.203125 127.886719 C 25.316406 127.59375 23.609375 126.753906 22.222656 125.46875 C 20.839844 124.183594 19.863281 122.515625 19.414062 120.671875 C 18.972656 118.824219 19.082031 116.890625 19.726562 115.105469 C 20.375 113.324219 21.53125 111.777344 23.054688 110.652344 C 24.578125 109.527344 26.390625 108.894531 28.269531 108.820312 C 30.789062 108.714844 33.238281 109.621094 35.097656 111.339844 C 36.953125 113.066406 38.058594 115.453125 38.164062 117.988281 Z M 38.164062 117.984375 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 21.285156 23.417969 C 20.183594 23.46875 19.085938 23.179688 18.144531 22.601562 C 17.199219 22.023438 16.445312 21.171875 15.980469 20.167969 C 15.511719 19.160156 15.359375 18.03125 15.527344 16.929688 C 15.695312 15.828125 16.183594 14.796875 16.933594 13.980469 C 17.679688 13.160156 18.652344 12.582031 19.722656 12.316406 C 20.792969 12.046875 21.925781 12.113281 22.960938 12.5 C 24 12.882812 24.898438 13.566406 25.546875 14.46875 C 27.117188 16.640625 26.953125 19.617188 25.148438 21.597656 C 24.148438 22.699219 22.757812 23.351562 21.28125 23.417969 Z M 21.285156 23.417969 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
1
icons/ocaml/ocaml-original-wordmark.svg
Normal file
After Width: | Height: | Size: 6.0 KiB |
1
icons/ocaml/ocaml-original.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="82.925" y1="97.718" x2="82.925" y2="97.9" gradientTransform="translate(0 8.224) scale(.77317)"><stop offset="0" stop-color="#F29100"/><stop offset="1" stop-color="#EC670F"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="61.276" y1="98.981" x2="61.276" y2="144.277" gradientTransform="translate(0 8.224) scale(.77317)"><stop offset="0" stop-color="#F29100"/><stop offset="1" stop-color="#EC670F"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="82.781" y1="0" x2="82.781" y2="144.245" gradientTransform="translate(0 8.224) scale(.77317)"><stop offset="0" stop-color="#F29100"/><stop offset="1" stop-color="#EC670F"/></linearGradient><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="22.871" y1="92.114" x2="22.871" y2="143.249" gradientTransform="translate(0 8.224) scale(.77317)"><stop offset="0" stop-color="#F29100"/><stop offset="1" stop-color="#EC670F"/></linearGradient></defs><path d="M64.11 83.918l.019-.047c-.027-.117-.035-.148-.02.047zm0 0" fill="#484444"/><path d="M64.11 83.918l.019-.047c-.027-.117-.035-.148-.02.047zm0 0" fill="url(#a)"/><path d="M64.969 115.441c-.45-.937-1.016-2.773-1.39-3.582-.356-.754-1.434-2.722-1.974-3.355-1.175-1.375-1.453-1.477-1.796-3.215-.602-3.023-2.192-8.508-4.067-12.293-.969-1.953-2.578-3.594-4.05-5.012-1.286-1.242-4.184-3.332-4.692-3.226-4.734.945-6.203 5.59-8.434 9.27-1.23 2.034-2.535 3.765-3.507 5.929-.899 1.992-.817 4.195-2.352 5.902-1.578 1.758-2.602 3.625-3.371 5.891-.148.43-.563 4.953-1.016 6.027l7.04-.496c6.558.45 4.663 2.965 14.902 2.414l16.164-.5c-.504-1.48-1.196-3.195-1.461-3.754zm0 0" fill="url(#b)"/><path d="M111.875 8.223H16.133C7.227 8.227.008 15.445.008 24.352v35.183c2.308-.836 5.625-5.742 6.664-6.937 1.82-2.086 2.148-4.75 3.055-6.426 2.066-3.82 2.421-6.445 7.109-6.445 2.187 0 3.055.503 4.535 2.488 1.027 1.379 2.809 3.93 3.637 5.633.96 1.968 2.527 4.629 3.215 5.164.511.402 1.015.699 1.488.875.758.289 1.39-.235 1.898-.64.649-.52.93-1.571 1.532-2.977.867-2.028 1.808-4.458 2.347-5.31.93-1.464 1.246-3.202 2.25-4.046 1.485-1.242 3.414-1.328 3.95-1.434 2.976-.59 4.328 1.434 5.792 2.743.961.855 2.27 2.582 3.204 4.89.726 1.809 1.652 3.48 2.039 4.524.375 1.004 1.3 2.62 1.847 4.55.496 1.758 1.828 3.106 2.332 3.938 0 0 .774 2.168 5.48 4.152 1.02.43 3.083 1.13 4.313 1.575 2.047.746 4.028.648 6.551.347 1.797 0 2.774-2.605 3.59-4.691.484-1.23.945-4.766 1.262-5.766.304-.976-.41-1.73.199-2.586.71-1 1.133-1.054 1.543-2.355.883-2.785 5.984-2.926 8.847-2.926 2.399 0 2.086 2.32 6.141 1.527 2.32-.457 4.559.297 7.024.95 2.074.55 4.023 1.175 5.195 2.546.758.887 2.633 5.325.719 5.516.183.223.32.629.664.852-.426 1.675-2.282.48-3.309.265-1.39-.285-2.367.043-3.726.645-2.32 1.035-5.715.914-7.739 2.597-1.715 1.43-1.71 4.614-2.511 6.399 0 0-2.223 5.719-7.075 9.215-1.242.898-3.668 3.054-8.953 3.87-2.367.368-4.586.395-7.02.274l-3.511-.133c-.695-.003-3.063-.082-2.945.145l-.266.656c.043.219.129.754.152.887.098.527.125.95.145 1.437.035 1-.082 2.043-.031 3.055.105 2.094.882 4.008.98 6.121.11 2.356 1.274 4.844 2.399 6.77.43.73 1.078.812 1.363 1.715.332 1.03.02 2.129.18 3.23.632 4.266 1.855 8.73 3.785 12.582a.685.685 0 00.043.094c2.375-.395 4.754-1.25 7.84-1.707 5.652-.836 13.519-.406 18.57-.88 12.781-1.198 19.719 5.243 31.203 2.602V24.352c-.004-8.907-7.223-16.13-16.129-16.13zM64.109 83.918c-.015-.195-.007-.168.02-.047zm0 0" fill="url(#c)"/><path d="M29.516 98.727c.89-1.946 1.406-4.165 2.144-6.157.711-1.906 1.817-4.61 3.7-5.57-.227-.27-3.938-.39-4.93-.492l-3.2-.453-6.164-1.27c-1.199-.289-5.187-1.703-6.054-2.101-2.032-.938-3.383-3.48-4.969-3.22-1.016.165-2.012.513-2.633 1.536-.515.836-.691 2.27-1.047 3.23-.414 1.118-1.129 2.16-1.754 3.223-1.152 1.95-3.222 3.715-4.113 5.617-.18.39-.34.828-.488 1.285v21.735l3.347.722c8.993 2.403 11.188 2.606 20.008 1.594l.828-.11c.672-1.405 1.196-6.187 1.633-7.667.34-1.137.809-2.04.988-3.2.168-1.1-.015-2.148-.113-3.152-.242-2.504 1.828-3.398 2.82-5.55zm0 0" fill="url(#d)"/></svg>
|
After Width: | Height: | Size: 4.0 KiB |
1
icons/ocaml/ocaml-plain-wordmark.svg
Normal file
After Width: | Height: | Size: 5.9 KiB |
1
icons/ocaml/ocaml-plain.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M65.004 115.355c-.461-.894-1.004-2.796-1.356-3.601-.378-.711-1.46-2.692-1.984-3.332-1.164-1.332-1.437-1.438-1.809-3.23-.628-3.067-2.148-8.462-4.042-12.227-1.004-2-2.626-3.606-4.067-5.07-1.246-1.247-4.121-3.31-4.668-3.227-4.766.894-6.226 5.586-8.457 9.27-1.27 2.062-2.516 3.769-3.52 5.937-.898 1.98-.812 4.23-2.331 5.938a15.44 15.44 0 00-3.333 5.855c-.195.453-.546 4.957-1.003 6.016l7.02-.438c6.585.461 4.687 2.961 14.858 2.438l16.098-.54a24.864 24.864 0 00-1.433-3.792zM111.793 8.254H16.207C7.312 8.23.086 15.457.086 24.352v35.105c2.352-.812 5.578-5.75 6.668-6.934 1.789-2.062 2.16-4.77 3.059-6.378 2.062-3.793 2.433-6.477 7.101-6.477 2.164 0 3.063.516 4.5 2.516.996 1.332 2.79 3.957 3.602 5.668 1.004 1.98 2.523 4.582 3.254 5.125.515.351.972.722 1.433.894.707.27 1.356-.27 1.902-.629.622-.539.895-1.52 1.52-2.953.895-2.086 1.813-4.418 2.332-5.312.914-1.461 1.273-3.254 2.25-4.067 1.461-1.246 3.441-1.355 3.957-1.437 2.98-.625 4.336 1.437 5.777 2.707.973.894 2.243 2.605 3.246 4.851.708 1.793 1.606 3.52 2.067 4.5.351.98 1.266 2.606 1.789 4.582.543 1.711 1.809 3.067 2.352 3.961 0 0 .812 2.164 5.476 4.145a34.992 34.992 0 004.336 1.52c2.066.734 4.047.644 6.563.374 1.789 0 2.793-2.625 3.601-4.683.438-1.254.98-4.774 1.25-5.758.27-.996-.437-1.707.192-2.625.722-.977 1.164-1.082 1.519-2.332.914-2.793 5.957-2.875 8.832-2.875 2.414 0 2.063 2.332 6.125 1.52 2.336-.434 4.586.273 7.023.995 2.063.543 4.043 1.168 5.204 2.524.73.898 2.629 5.312.73 5.476.164.188.36.645.625.817-.46 1.707-2.25.46-3.332.27-1.355-.27-2.332 0-3.684.624-2.335.996-5.668.918-7.726 2.625-1.715 1.438-1.715 4.582-2.543 6.371 0 0-2.254 5.696-6.996 9.192-1.278.914-3.715 3.058-8.918 3.871-2.356.355-4.586.355-7.024.27-1.164-.079-2.332-.079-3.52-.079-.706 0-3.062-.109-2.96.164l-.27.645c.024.29.063.602.164.895.102.515.102.976.192 1.437 0 .98-.086 2.063 0 3.066.082 2.063.894 3.957 1.004 6.102.078 2.355 1.246 4.875 2.414 6.77.46.707 1.086.789 1.355 1.71.352.98 0 2.141.188 3.227.625 4.227 1.875 8.73 3.773 12.61v.078c2.332-.352 4.77-1.247 7.836-1.684 5.664-.832 13.5-.461 18.54-.914 12.796-1.168 19.706 5.226 31.148 2.601V24.336c-.063-8.895-7.293-16.102-16.207-16.102zM64.086 83.855c0-.187 0-.187 0 0zm-34.457 14.75c.894-1.98 1.433-4.125 2.144-6.101.73-1.899 1.813-4.61 3.684-5.582-.246-.274-3.957-.375-4.934-.461-1.082-.086-2.171-.273-3.25-.438a135.241 135.241 0 01-6.125-1.265c-1.168-.274-5.21-1.715-6.02-2.067-2.085-.894-3.421-3.52-4.96-3.246-.977.188-1.98.54-2.605 1.54-.543.812-.731 2.242-1.083 3.226-.437 1.086-1.168 2.164-1.707 3.25-1.277 1.875-3.332 3.582-4.23 5.484-.191.457-.27.895-.457 1.356v21.683c1.082.188 2.16.371 3.328.73 8.996 2.438 11.164 2.606 19.98 1.63l.813-.11c.625-1.437 1.188-6.207 1.629-7.644.352-1.164.812-2.063.996-3.14.164-1.09 0-2.173-.102-3.15-.171-2.628 1.895-3.519 2.899-5.69zm0 0"/></svg>
|
After Width: | Height: | Size: 2.8 KiB |
2
package-lock.json
generated
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "devicon",
|
||||
"version": "2.2.0",
|
||||
"version": "2.9.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
10
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "devicon",
|
||||
"version": "2.2.0",
|
||||
"version": "2.9.0",
|
||||
"description": "Programming related icons collection",
|
||||
"main": "devicon.min.css",
|
||||
"scripts": {
|
||||
@@ -10,7 +10,7 @@
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/konpa/devicon.git"
|
||||
"url": "https://github.com/devicons/devicon.git"
|
||||
},
|
||||
"keywords": [
|
||||
"programming",
|
||||
@@ -18,12 +18,12 @@
|
||||
"svg",
|
||||
"font"
|
||||
],
|
||||
"author": "konpa",
|
||||
"author": "devicons",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/konpa/devicon/issues"
|
||||
"url": "https://github.com/devicons/devicon/issues"
|
||||
},
|
||||
"homepage": "http://konpa.github.io/devicon/",
|
||||
"homepage": "https://devicon.dev",
|
||||
"devDependencies": {
|
||||
"gulp": "^4.0.0",
|
||||
"gulp-sass": "^4.1.0",
|
||||
|