Compare commits

..

No commits in common. "master" and "v.2.0" have entirely different histories.

2160 changed files with 2252 additions and 1100 deletions

4
.github/FUNDING.yml vendored
View file

@ -1,4 +0,0 @@
# These are supported funding model platforms
github: [AdisonCavani] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
custom: ["https://www.buymeacoffee.com/adisoncavani"]# Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

24
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View file

@ -0,0 +1,24 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. Ubuntu 20.10]
- Resolution [e.g. 1920 x 1080]
**Additional context**
Add any other context about the problem here.

View file

@ -1,46 +0,0 @@
name: Issue / bug
description: File a bug/issue
title: "bug: <title>"
labels: [bug]
body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Current Behavior
description: A concise description of what you're experiencing.
validations:
required: false
- type: textarea
attributes:
label: Expected Behavior
description: A concise description of what you expected to happen.
validations:
required: false
- type: textarea
attributes:
label: Environment
description: |
examples:
- **OS**: Ubuntu 20.04
- **Resolution**: 1920x1080
value: |
- OS:
- Resolution:
render: markdown
validations:
required: false
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Anything that will give us more context about the issue you are encountering!
Tip: You can attach screenshots or log files by clicking this area to highlight it and then dragging files in.
validations:
required: false

View file

@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

View file

@ -1,42 +0,0 @@
name: Feature request
description: Suggest an idea for this project
title: "feat: <title>"
labels: [feature-request]
body:
- type: textarea
attributes:
label: Is your feature request related to a problem? Please describe
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
validations:
required: false
- type: textarea
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen
validations:
required: false
- type: textarea
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered
validations:
required: false
- type: textarea
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here
validations:
required: false
- type: dropdown
attributes:
label: Contributing
multiple: false
options:
- "No, I am afraid I cannot help regarding this"
- "Yes, I am willing to help implement this feature in a PR"
validations:
required: true
- type: markdown
attributes:
value: |
It takes a lot of work and time maintaining this project; any contribution is welcomed

View file

@ -1,20 +0,0 @@
# Description
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context.
Fixes # (issue)
## Type of change
Please delete options that are not relevant.
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] This change requires a documentation update
# Checklist:
- [ ] My code follows the style guidelines of this project (correct file and folder structure)
- [ ] The background image for theme follows naming convention: `theme_name.png`
- [ ] I updated [`themes.json`](https://github.com/AdisonCavani/distro-grub-themes/blob/master/themes.json) file (JSON database)

View file

@ -1,57 +0,0 @@
name: Check nix packages
on:
pull_request:
paths:
- "./*.nix"
- ".github/workflows/nix.yml"
- "assets/**"
- "customize/**"
push:
branches: [master]
paths:
- "./*.nix"
- ".github/workflows/nix.yml"
- "assets/**"
- "customize/**"
jobs:
flake:
name: Check flake
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check Nix flake inputs
uses: DeterminateSystems/flake-checker-action@v5
with:
send-statistics: false
fail-mode: true
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v9
- name: Check repository
run: nix flake check
matrix:
name: Generate build matrix
runs-on: ubuntu-latest
outputs:
themes: ${{ steps.generate-matrix.outputs.themes }}
steps:
- uses: actions/checkout@v4
- name: Generate matrix
id: generate-matrix
run: |
THEMES=$(ls assets/backgrounds/ | sed 's/\.png$//g' | jq --raw-input | jq --slurp -c)
echo "themes=$THEMES" >> $GITHUB_OUTPUT
build:
name: Check nix build for theme ${{ matrix.theme }}
runs-on: ubuntu-latest
needs:
- matrix
strategy:
matrix:
theme: ${{ fromJSON(needs.matrix.outputs.themes) }}
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v9
- name: Build package
run: nix build .#${{ matrix.theme }}-grub-theme

View file

@ -1,56 +0,0 @@
name: Update changes on commit
on:
workflow_dispatch:
push:
branches: [master]
paths:
- "assets/**"
- "customize/**"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: 📂 Create temp folder
run: |
mkdir temp
- name: 🖼️ Add backgrounds
run: |
for file in assets/backgrounds/*.png ; do
filename=$(basename "$file" .png)
mkdir "temp/$filename"
cp "$file" "temp/$filename/background.png"
done
- name: 🎨 Add icons
run: |
for dest in temp/* ; do cp -rv assets/icons "$dest"; done
- name: 📇 Add fonts
run: |
for dest in temp/* ; do cp -rva assets/fonts/. "$dest"; done
- name: 🌿 Add menu
run: |
for dest in temp/* ; do cp -rva assets/menu/. "$dest"; done
- name: 📃 Add theme
run: |
for dest in temp/* ; do cp -rv assets/theme.txt "$dest"; done
- name: 🗑️ Cleanup old themes
run: |
rm -rf themes/*
- name: 💼 Create archives
run: |
cd temp;
for dest in * ; do find "$dest" -printf "%P\n" | tar -vcf ../themes/"$dest".tar --no-recursion -C "$dest" -T -; done
- name: Remove artifacts
run: |
rm -r temp
- name: 🔥 Commit changes
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git fetch
git add .
git commit -m "🤖 Update files"
git push

4
.gitignore vendored
View file

@ -1,4 +0,0 @@
.envrc
.direnv
.vscode
result

View file

@ -60,7 +60,7 @@ representative at an online or offline event.
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
adriansrodon@tuta.io.
adrian.srodon@gmail.com.
All complaints will be reviewed and investigated promptly and fairly.
All community leaders are obligated to respect the privacy and security of the

View file

@ -1,48 +0,0 @@
# Contributing guide
Thank you for investing your time in contributing to this project! :sparkles:.
## New contributor guide
To get an overview of the project, read the [README](README.md) and [wiki page](https://github.com/AdisonCavani/distro-grub-themes/wiki).
### Project structure:
```
.
├── assets - assets for creating background images
| ├── backgrounds - backgrounds used in each theme
| ├── fonts - fonts
| ├── icons - icons
| ├── menu - menu parts
| └── theme.txt - theme configuration file
├── docs - documentation markdown files
├── preview - preview images for README.md
├── themes - compressed themes ready to install in .tar format
└── themes.json - json file containing all themes definitions (used as database for wiki page)
```
### Workflow
Folders that trigger new action/workflow:
- assets
- customize
Every time you create new commit on master branch, github action bot will update all files (as defined in [this file](https://github.com/AdisonCavani/distro-grub-themes/blob/master/.github/workflows/update-content.yml)).
You can track your workflows [here](https://github.com/AdisonCavani/distro-grub-themes/actions).
### Branches
```
├── master - main branch containing latest changes
├── legacy - obsolete C# program, replaced by Github Actions workflow
└── templates - PSD, phosothop templates for background images
```
### Frequently Asked Questions
**Q**: Where are `psd` templates located?
**A**: Templates are located in [`templates branch`](https://github.com/AdisonCavani/distro-grub-themes/tree/templates).
**Q**: How can I edit `psd` template? I don't have Photoshop
**A**: You can import `psd` into GIMP, however this might cause to lose some Photoshop related data. I recommend to use [Photopea](https://www.photopea.com/) - free web-based Photoshop alternative.

171
README.md
View file

@ -1,46 +1,159 @@
# Distro Grub Themes
[![name](https://img.shields.io/github/license/AdisonCavani/distro-grub-themes?style=plastic)](https://github.com/AdisonCavani/distro-grub-themes/blob/master/LICENSE) [![name](https://img.shields.io/badge/Donate-PayPal-blue?style=plastic)](https://www.paypal.com/donate/?hosted_button_id=TKVET8LGHH5SG)
[![name](https://img.shields.io/github/license/AdisonCavani/distro-grub-themes)](https://github.com/AdisonCavani/distro-grub-themes/blob/master/LICENSE)
[![name](https://img.shields.io/github/v/release/AdisonCavani/distro-grub-themes)](https://github.com/AdisonCavani/distro-grub-themes/releases)
[![Build](https://github.com/AdisonCavani/distro-grub-themes/actions/workflows/update-content.yml/badge.svg?event=push)](https://github.com/AdisonCavani/distro-grub-themes/actions/workflows/update-content.yml)
<br>
A pack of GRUB2 themes for different Linux distribution.<br>
It aims to replace default Grub look, with nice and colorful theme.
A pack of GRUB2 themes for different Linux distributions and OSs.<br>
It aims to replace the default GRUB look, with a nice and colorful theme.
## Supported distributions
- Arch Linux
- Debian
- ElementaryOS
- Fedora
- Linux Mint
- Manjaro
- openSUSE
- Pop! OS
- Solus
- Ubuntu
- Ventoy
## Get started
## Preview theme
- **Theme preview** is available at [k1ng.dev/distro-grub-themes/preview](https://k1ng.dev/distro-grub-themes/preview).
- **Documentation** is available at [k1ng.dev/distro-grub-themes](https://k1ng.dev/distro-grub-themes).
- Raw markdown files are located in [`/docs`](./docs) folder.
<p float="left">
<img src="https://raw.githubusercontent.com/AdisonCavani/grub-theme/master/preview/Arch%20Linux.png" width="49%"/>
<img src="https://raw.githubusercontent.com/AdisonCavani/grub-theme/master/preview/Debian.png" width="49%"/>
</p>
<p float="left">
<img src="https://raw.githubusercontent.com/AdisonCavani/grub-theme/master/preview/ElementaryOS.png" width="49%"/>
<img src="https://raw.githubusercontent.com/AdisonCavani/grub-theme/master/preview/Fedora.png" width="49%"/>
</p>
<p float="left">
<img src="https://raw.githubusercontent.com/AdisonCavani/os-grub-themes/master/preview/Linux%20Mint.png" width="49%"/>
<img src="https://raw.githubusercontent.com/AdisonCavani/os-grub-themes/master/preview/Manjaro.png" width="49%"/>
</p>
<p float="left">
<img src="https://raw.githubusercontent.com/AdisonCavani/os-grub-themes/master/preview/openSUSE.png" width="49%"/>
<img src="https://raw.githubusercontent.com/AdisonCavani/os-grub-themes/master/preview/popOS.png" width="49%"/>
</p>
<p float="left">
<img src="https://raw.githubusercontent.com/AdisonCavani/os-grub-themes/master/preview/Solus.png" width="49%"/>
<img src="https://raw.githubusercontent.com/AdisonCavani/os-grub-themes/master/preview/Ubuntu.png" width="49%"/>
</p>
## Funding
I put a lot of effort and my free time into maintaining this project.
If you appreciate that, you can buy me a coffee.
## Installation via Grub Customizer
[<img src="https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-1.svg" alt="Buy Me A Coffee" height="50px" />](https://www.buymeacoffee.com/adisoncavani)
In order to clone repository from Github you have to install `git` package <br>
Alternatively you can download zip package - **Code -> Download ZIP**
## Contributing
#### Clone the repository
You can clone repository or go to [release page](https://github.com/AdisonCavani/distro-grub-themes/releases) and download a single theme
```
git clone https://github.com/AdisonCavani/distro-grub-themes.git
```
Development happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements.
Read below to learn how you can take part in improving it.
### Install Grub Customizer
### Code of Conduct
Apt
```
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer
```
Pacman
```
sudo pacman -S grub-customizer
```
This project has adopted a Code of Conduct that we expect project participants to adhere to.
Please read [the full text](https://github.com/AdisonCavani/distro-grub-themes/blob/master/.github/CODE_OF_CONDUCT.md) so that you can understand what actions will and will not be tolerated.
Dnf
```
sudo dnf install grub-customizer
```
### Contributing Guide
Eopkg
```
sudo eopkg install grub-customizer
```
### Install pre-made theme with Grub Customizer
Read [contributing guide](https://github.com/AdisonCavani/distro-grub-themes/blob/master/CONTRIBUTING.md) to learn how to propose changes, bugfixes and improvements.
- Open Grub Customizer
- Go to **Appearance settings** tab
- Select *Custom resolution* and type in your resolution. E.g: 1920x1080
- Press *Add theme* button, go to your directory, where you have cloned repository. In my case `/home/adison/distro-grub-theme`
- Select your theme located in `/themes` directory
- Save changes
### License
This project is licensed under [GNU General Public License v3.0](https://github.com/AdisonCavani/distro-grub-themes/blob/master/LICENSE)
### Install custom-made theme with Grub Customizer
### Contributors
- Edit your theme located in `/customize` folder
- With your file manager, inside edited theme directory, select all files and **create archive** with .tar or .tar.xz extension
- Open Grub Customizer
- Go to **Appearance settings** tab
- Enable *Custom resolution* checkbox and select your resolution or type it in manually. E.g: 1920x1080
- Press *Add theme* button, go to your directory, where you have cloned repository. In my case `/home/adison/distro-grub-theme`
- Change view settings from *Archive files* to **All files**
- Select your archive
- Save changes
Thank you to all the people who already contributed to this project!
<a href="https://github.com/AdisonCavani/distro-grub-themes/graphs/contributors">
<img src="https://contrib.rocks/image?repo=AdisonCavani/distro-grub-themes" />
</a>
## Manual Installation
In order to clone repository from Github you have to install `git` package <br>
Alternatively you can download zip package - **Code -> Download ZIP**
#### Clone the repository
You can clone repository or go to [release page](https://github.com/AdisonCavani/distro-grub-themes/releases) and download a single theme
```
git clone https://github.com/AdisonCavani/distro-grub-themes.git
```
#### Create themes directory
```
sudo mkdir /boot/grub/themes
```
#### Edit or use pre-made theme
```
cd distro-grub-themes/customize
```
#### Copy theme
Theme must be unpacked (in folder)
```
sudo cp -r Ubuntu/ /boot/grub/themes
```
#### Edit Grub config
You can use your favourite text editor
```
sudo nano /etc/default/grub
```
Uncomment this line and set your resolution:
```
GRUB_GFXMODE=1920x1080
```
At the end of file add theme path:
```
GRUB_THEME="/boot/grub/themes/Ubuntu/theme.txt"
```
Replace "Ubuntu" with selected theme<br>
Ctrl+O to save, Ctrl+X to exit
## Instal theme in Ventoy
Extract ```Ventoy.tar``` to ```/ventoy/theme``` directory
Locate ```ventoy.json``` file in ```/plugin/ventoy/``` directory and change:
```
"file": "/ventoy/theme/blur/theme.txt",
```
to
```
"file": "/ventoy/theme/Ventoy/theme.txt",
```
For more informations head over to [Ventoy website](https://www.ventoy.net/en/plugin_theme.html)
## To-do list
Feature | Status
------------ | -------------
4K & 2K displays support | In the future
Ultrawide display support | In the future

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg xmlns:x="http://ns.adobe.com/Extensibility/1.0/" xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/" xmlns:graph="http://ns.adobe.com/Graphs/1.0/" i:viewOrigin="262 450" i:rulerOrigin="0 0" i:pageBounds="0 792 612 0" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" width="87.041" height="108.445" viewBox="0 0 87.041 108.445" overflow="visible" enable-background="new 0 0 87.041 108.445" xml:space="preserve">
<metadata>
<variableSets xmlns="http://ns.adobe.com/Variables/1.0/">
<variableSet varSetName="binding1" locked="none">
<variables/>
<v:sampleDataSets xmlns="http://ns.adobe.com/GenericCustomNamespace/1.0/" xmlns:v="http://ns.adobe.com/Variables/1.0/"/>
</variableSet>
</variableSets>
<sfw xmlns="http://ns.adobe.com/SaveForWeb/1.0/">
<slices/>
<sliceSourceBounds y="341.555" x="262" width="87.041" height="108.445" bottomLeftOrigin="true"/>
</sfw>
</metadata>
<g id="Layer_1" i:layer="yes" i:dimmedPercent="50" i:rgbTrio="#4F008000FFFF">
<g>
<path i:knockout="Off" fill="#A80030" d="M51.986,57.297c-1.797,0.025,0.34,0.926,2.686,1.287 c0.648-0.506,1.236-1.018,1.76-1.516C54.971,57.426,53.484,57.434,51.986,57.297"/>
<path i:knockout="Off" fill="#A80030" d="M61.631,54.893c1.07-1.477,1.85-3.094,2.125-4.766c-0.24,1.192-0.887,2.221-1.496,3.307 c-3.359,2.115-0.316-1.256-0.002-2.537C58.646,55.443,61.762,53.623,61.631,54.893"/>
<path i:knockout="Off" fill="#A80030" d="M65.191,45.629c0.217-3.236-0.637-2.213-0.924-0.978 C64.602,44.825,64.867,46.932,65.191,45.629"/>
<path i:knockout="Off" fill="#A80030" d="M45.172,1.399c0.959,0.172,2.072,0.304,1.916,0.533 C48.137,1.702,48.375,1.49,45.172,1.399"/>
<path i:knockout="Off" fill="#A80030" d="M47.088,1.932l-0.678,0.14l0.631-0.056L47.088,1.932"/>
<path i:knockout="Off" fill="#A80030" d="M76.992,46.856c0.107,2.906-0.85,4.316-1.713,6.812l-1.553,0.776 c-1.271,2.468,0.123,1.567-0.787,3.53c-1.984,1.764-6.021,5.52-7.313,5.863c-0.943-0.021,0.639-1.113,0.846-1.541 c-2.656,1.824-2.131,2.738-6.193,3.846l-0.119-0.264c-10.018,4.713-23.934-4.627-23.751-17.371 c-0.107,0.809-0.304,0.607-0.526,0.934c-0.517-6.557,3.028-13.143,9.007-15.832c5.848-2.895,12.704-1.707,16.893,2.197 c-2.301-3.014-6.881-6.209-12.309-5.91c-5.317,0.084-10.291,3.463-11.951,7.131c-2.724,1.715-3.04,6.611-4.227,7.507 C31.699,56.271,36.3,61.342,44.083,67.307c1.225,0.826,0.345,0.951,0.511,1.58c-2.586-1.211-4.954-3.039-6.901-5.277 c1.033,1.512,2.148,2.982,3.589,4.137c-2.438-0.826-5.695-5.908-6.646-6.115c4.203,7.525,17.052,13.197,23.78,10.383 c-3.113,0.115-7.068,0.064-10.566-1.229c-1.469-0.756-3.467-2.322-3.11-2.615c9.182,3.43,18.667,2.598,26.612-3.771 c2.021-1.574,4.229-4.252,4.867-4.289c-0.961,1.445,0.164,0.695-0.574,1.971c2.014-3.248-0.875-1.322,2.082-5.609l1.092,1.504 c-0.406-2.696,3.348-5.97,2.967-10.234c0.861-1.304,0.961,1.403,0.047,4.403c1.268-3.328,0.334-3.863,0.66-6.609 c0.352,0.923,0.814,1.904,1.051,2.878c-0.826-3.216,0.848-5.416,1.262-7.285c-0.408-0.181-1.275,1.422-1.473-2.377 c0.029-1.65,0.459-0.865,0.625-1.271c-0.324-0.186-1.174-1.451-1.691-3.877c0.375-0.57,1.002,1.478,1.512,1.562 c-0.328-1.929-0.893-3.4-0.916-4.88c-1.49-3.114-0.527,0.415-1.736-1.337c-1.586-4.947,1.316-1.148,1.512-3.396 c2.404,3.483,3.775,8.881,4.404,11.117c-0.48-2.726-1.256-5.367-2.203-7.922c0.73,0.307-1.176-5.609,0.949-1.691 c-2.27-8.352-9.715-16.156-16.564-19.818c0.838,0.767,1.896,1.73,1.516,1.881c-3.406-2.028-2.807-2.186-3.295-3.043 c-2.775-1.129-2.957,0.091-4.795,0.002c-5.23-2.774-6.238-2.479-11.051-4.217l0.219,1.023c-3.465-1.154-4.037,0.438-7.782,0.004 c-0.228-0.178,1.2-0.644,2.375-0.815c-3.35,0.442-3.193-0.66-6.471,0.122c0.808-0.567,1.662-0.942,2.524-1.424 c-2.732,0.166-6.522,1.59-5.352,0.295c-4.456,1.988-12.37,4.779-16.811,8.943l-0.14-0.933c-2.035,2.443-8.874,7.296-9.419,10.46 l-0.544,0.127c-1.059,1.793-1.744,3.825-2.584,5.67c-1.385,2.36-2.03,0.908-1.833,1.278c-2.724,5.523-4.077,10.164-5.246,13.97 c0.833,1.245,0.02,7.495,0.335,12.497c-1.368,24.704,17.338,48.69,37.785,54.228c2.997,1.072,7.454,1.031,11.245,1.141 c-4.473-1.279-5.051-0.678-9.408-2.197c-3.143-1.48-3.832-3.17-6.058-5.102l0.881,1.557c-4.366-1.545-2.539-1.912-6.091-3.037 l0.941-1.229c-1.415-0.107-3.748-2.385-4.386-3.646l-1.548,0.061c-1.86-2.295-2.851-3.949-2.779-5.23l-0.5,0.891 c-0.567-0.973-6.843-8.607-3.587-6.83c-0.605-0.553-1.409-0.9-2.281-2.484l0.663-0.758c-1.567-2.016-2.884-4.6-2.784-5.461 c0.836,1.129,1.416,1.34,1.99,1.533c-3.957-9.818-4.179-0.541-7.176-9.994l0.634-0.051c-0.486-0.732-0.781-1.527-1.172-2.307 l0.276-2.75C4.667,58.121,6.719,47.409,7.13,41.534c0.285-2.389,2.378-4.932,3.97-8.92l-0.97-0.167 c1.854-3.234,10.586-12.988,14.63-12.486c1.959-2.461-0.389-0.009-0.772-0.629c4.303-4.453,5.656-3.146,8.56-3.947 c3.132-1.859-2.688,0.725-1.203-0.709c5.414-1.383,3.837-3.144,10.9-3.846c0.745,0.424-1.729,0.655-2.35,1.205 c4.511-2.207,14.275-1.705,20.617,1.225c7.359,3.439,15.627,13.605,15.953,23.17l0.371,0.1 c-0.188,3.802,0.582,8.199-0.752,12.238L76.992,46.856"/>
<path i:knockout="Off" fill="#A80030" d="M32.372,59.764l-0.252,1.26c1.181,1.604,2.118,3.342,3.626,4.596 C34.661,63.502,33.855,62.627,32.372,59.764"/>
<path i:knockout="Off" fill="#A80030" d="M35.164,59.654c-0.625-0.691-0.995-1.523-1.409-2.352 c0.396,1.457,1.207,2.709,1.962,3.982L35.164,59.654"/>
<path i:knockout="Off" fill="#A80030" d="M84.568,48.916l-0.264,0.662c-0.484,3.438-1.529,6.84-3.131,9.994 C82.943,56.244,84.088,52.604,84.568,48.916"/>
<path i:knockout="Off" fill="#A80030" d="M45.527,0.537C46.742,0.092,48.514,0.293,49.803,0c-1.68,0.141-3.352,0.225-5.003,0.438 L45.527,0.537"/>
<path i:knockout="Off" fill="#A80030" d="M2.872,23.219c0.28,2.592-1.95,3.598,0.494,1.889 C4.676,22.157,2.854,24.293,2.872,23.219"/>
<path i:knockout="Off" fill="#A80030" d="M0,35.215c0.563-1.728,0.665-2.766,0.88-3.766C-0.676,33.438,0.164,33.862,0,35.215"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.1 KiB

View file

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77) -->
<svg xmlns:x="http://ns.adobe.com/Extensibility/1.0/" xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/" xmlns:graph="http://ns.adobe.com/Graphs/1.0/" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" i:viewOrigin="251 467" i:rulerOrigin="0 0" i:pageBounds="0 792 612 0" width="108.758" height="144.133" viewBox="0 0 108.758 144.133" overflow="visible" enable-background="new 0 0 108.758 144.133" xml:space="preserve">
<metadata>
<variableSets xmlns="http://ns.adobe.com/Variables/1.0/">
<variableSet varSetName="binding1" locked="none">
<variables/>
<v:sampleDataSets xmlns="http://ns.adobe.com/GenericCustomNamespace/1.0/" xmlns:v="http://ns.adobe.com/Variables/1.0/"/>
</variableSet>
</variableSets>
<sfw xmlns="http://ns.adobe.com/SaveForWeb/1.0/">
<slices/>
<sliceSourceBounds y="322.867" x="251" width="108.758" height="144.133" bottomLeftOrigin="true"/>
</sfw>
</metadata>
<g id="Layer_1" i:layer="yes" i:dimmedPercent="50" i:rgbTrio="#4F008000FFFF">
<g>
<path i:knockout="Off" fill="#A80030" d="M60.969,47.645c-1.494,0.02,0.281,0.768,2.232,1.069 c0.541-0.422,1.027-0.846,1.463-1.26C63.451,47.751,62.215,47.758,60.969,47.645"/>
<path i:knockout="Off" fill="#A80030" d="M68.986,45.646c0.893-1.229,1.541-2.573,1.77-3.963 c-0.201,0.99-0.736,1.845-1.244,2.749c-2.793,1.759-0.264-1.044-0.002-2.111C66.508,46.104,69.096,44.589,68.986,45.646"/>
<path i:knockout="Off" fill="#A80030" d="M71.949,37.942c0.182-2.691-0.529-1.839-0.768-0.814 C71.459,37.274,71.68,39.026,71.949,37.942"/>
<path i:knockout="Off" fill="#A80030" d="M55.301,1.163c0.798,0.142,1.724,0.252,1.591,0.443 C57.768,1.413,57.965,1.239,55.301,1.163"/>
<path i:knockout="Off" fill="#A80030" d="M56.893,1.606l-0.561,0.117l0.523-0.048L56.893,1.606"/>
<path i:knockout="Off" fill="#A80030" d="M81.762,38.962c0.09,2.416-0.705,3.59-1.424,5.666l-1.293,0.643 c-1.057,2.054,0.105,1.304-0.652,2.937c-1.652,1.467-5.006,4.589-6.08,4.875c-0.785-0.017,0.531-0.926,0.703-1.281 c-2.209,1.516-1.773,2.276-5.152,3.199l-0.098-0.221c-8.33,3.92-19.902-3.847-19.75-14.443c-0.088,0.672-0.253,0.504-0.437,0.774 c-0.43-5.451,2.518-10.926,7.49-13.165c4.863-2.406,10.564-1.42,14.045,1.829c-1.912-2.506-5.721-5.163-10.232-4.917 c-4.421,0.072-8.558,2.881-9.938,5.932c-2.264,1.425-2.528,5.496-3.514,6.242c-1.329,9.76,2.497,13.975,8.97,18.936 c1.016,0.686,0.286,0.791,0.422,1.313c-2.15-1.006-4.118-2.526-5.738-4.387c0.86,1.257,1.787,2.479,2.986,3.439 c-2.029-0.685-4.738-4.913-5.527-5.085c3.495,6.258,14.178,10.975,19.775,8.634c-2.59,0.096-5.879,0.053-8.787-1.022 c-1.225-0.629-2.884-1.93-2.587-2.173c7.636,2.851,15.522,2.158,22.128-3.137c1.682-1.31,3.518-3.537,4.049-3.567 c-0.799,1.202,0.137,0.578-0.477,1.639c1.672-2.701-0.729-1.1,1.73-4.664l0.908,1.25c-0.34-2.244,2.785-4.966,2.467-8.512 c0.717-1.084,0.799,1.168,0.039,3.662c1.055-2.767,0.279-3.212,0.549-5.496c0.291,0.768,0.678,1.583,0.875,2.394 c-0.688-2.675,0.703-4.503,1.049-6.058c-0.342-0.15-1.061,1.182-1.227-1.976c0.025-1.372,0.383-0.719,0.52-1.057 c-0.268-0.155-0.975-1.207-1.404-3.224c0.309-0.475,0.832,1.229,1.256,1.298c-0.273-1.603-0.742-2.826-0.762-4.057 c-1.24-2.59-0.439,0.346-1.443-1.112c-1.32-4.114,1.094-0.955,1.258-2.823c1.998,2.895,3.137,7.385,3.662,9.244 c-0.4-2.267-1.045-4.464-1.834-6.589c0.609,0.257-0.979-4.663,0.791-1.405c-1.889-6.945-8.078-13.435-13.773-16.479 c0.695,0.637,1.574,1.437,1.26,1.563c-2.834-1.685-2.336-1.818-2.742-2.53c-2.305-0.939-2.459,0.077-3.984,0.002 c-4.35-2.308-5.188-2.063-9.191-3.507l0.182,0.852c-2.881-0.96-3.357,0.362-6.47,0.002c-0.189-0.147,0.998-0.536,1.976-0.677 c-2.786,0.368-2.656-0.55-5.382,0.101c0.671-0.471,1.383-0.784,2.099-1.184c-2.271,0.138-5.424,1.322-4.451,0.244 c-3.705,1.654-10.286,3.975-13.979,7.438l-0.116-0.776c-1.692,2.031-7.379,6.066-7.832,8.699l-0.453,0.105 c-0.879,1.491-1.45,3.18-2.148,4.713c-1.151,1.963-1.688,0.756-1.524,1.064c-2.265,4.592-3.392,8.45-4.363,11.616 c0.692,1.035,0.017,6.232,0.278,10.391c-1.136,20.544,14.418,40.489,31.42,45.093c2.492,0.893,6.197,0.861,9.349,0.949 c-3.718-1.064-4.198-0.563-7.822-1.826c-2.613-1.232-3.185-2.637-5.037-4.244l0.733,1.295c-3.63-1.285-2.111-1.59-5.065-2.525 l0.783-1.021c-1.177-0.09-3.117-1.982-3.647-3.033l-1.288,0.051c-1.546-1.906-2.371-3.283-2.31-4.35l-0.416,0.742 c-0.471-0.809-5.691-7.158-2.983-5.68c-0.503-0.458-1.172-0.747-1.897-2.066l0.551-0.629c-1.301-1.677-2.398-3.826-2.314-4.542 c0.695,0.938,1.177,1.114,1.655,1.275c-3.291-8.164-3.476-0.449-5.967-8.31l0.526-0.042c-0.403-0.611-0.65-1.27-0.974-1.919 l0.23-2.285c-2.368-2.736-0.662-11.645-0.319-16.53c0.235-1.986,1.977-4.101,3.3-7.418l-0.806-0.138 c1.542-2.688,8.802-10.799,12.166-10.383c1.629-2.046-0.324-0.008-0.643-0.522c3.579-3.703,4.704-2.616,7.119-3.283 c2.603-1.545-2.235,0.604-1.001-0.589c4.503-1.149,3.19-2.614,9.063-3.197c0.62,0.352-1.437,0.544-1.953,1.001 c3.75-1.836,11.869-1.417,17.145,1.018c6.117,2.861,12.994,11.314,13.266,19.267l0.309,0.083 c-0.156,3.162,0.484,6.819-0.627,10.177L81.762,38.962"/>
<path i:knockout="Off" fill="#A80030" d="M44.658,49.695l-0.211,1.047c0.983,1.335,1.763,2.781,3.016,3.821 C46.561,52.804,45.892,52.077,44.658,49.695"/>
<path i:knockout="Off" fill="#A80030" d="M46.979,49.605c-0.52-0.576-0.826-1.268-1.172-1.956 c0.33,1.211,1.006,2.252,1.633,3.312L46.979,49.605"/>
<path i:knockout="Off" fill="#A80030" d="M88.063,40.675l-0.219,0.552c-0.402,2.858-1.273,5.686-2.605,8.309 C86.711,46.769,87.66,43.742,88.063,40.675"/>
<path i:knockout="Off" fill="#A80030" d="M55.598,0.446C56.607,0.077,58.08,0.243,59.154,0c-1.398,0.117-2.789,0.187-4.162,0.362 L55.598,0.446"/>
<path i:knockout="Off" fill="#A80030" d="M20.127,19.308c0.233,2.154-1.62,2.991,0.41,1.569 C21.627,18.423,20.113,20.2,20.127,19.308"/>
<path i:knockout="Off" fill="#A80030" d="M17.739,29.282c0.469-1.437,0.553-2.299,0.732-3.132 C17.178,27.804,17.875,28.157,17.739,29.282"/>
<path i:knockout="Off" d="M13.437,125.506c-0.045,0.047-0.045,7.506-0.138,9.453c-0.092,1.574-0.232,4.957-3.568,4.957 c-3.429,0-4.263-3.939-4.541-5.652c-0.324-1.9-0.324-3.477-0.324-4.17c0-2.225,0.139-8.436,5.375-8.436 c1.576,0,2.456,0.465,3.151,0.834L13.437,125.506z M0,130.975c0,13.066,6.951,13.066,7.97,13.066 c2.873,0,4.727-1.576,5.514-4.309l0.093,4.123c0.881-0.047,1.761-0.139,3.197-0.139c0.51,0,0.926,0,1.298,0.047 c0.371,0,0.741,0.045,1.158,0.092c-0.741-1.482-1.297-4.818-1.297-12.049c0-7.043,0-18.951,0.602-22.566 c-1.667,0.789-3.105,1.299-6.256,1.576c1.251,1.344,1.251,2.039,1.251,8.154c-0.879-0.277-1.992-0.602-3.892-0.602 C1.344,118.369,0,125.598,0,130.975"/>
<path i:knockout="Off" d="M25.13,128.609c0.047-3.846,0.835-7.275,4.124-7.275c3.615,0,3.891,3.984,3.799,7.275H25.13z M37.64,129.074c0-5.422-1.065-10.752-7.923-10.752c-9.452,0-9.452,10.475-9.452,12.697c0,9.406,4.216,13.113,11.306,13.113 c3.149,0,4.68-0.461,5.514-0.695c-0.046-1.668,0.185-2.734,0.465-4.17c-0.975,0.604-2.226,1.391-5.006,1.391 c-7.229,0-7.322-6.582-7.322-8.852H37.55L37.64,129.074"/>
<path i:knockout="Off" d="M52.715,131.066c0,4.309-0.787,10.102-6.162,10.102c-0.742,0-1.668-0.141-2.27-0.279 c-0.093-1.668-0.093-4.541-0.093-7.877c0-3.986,0.416-6.068,0.742-7.09c0.972-3.289,3.15-3.334,3.566-3.334 C52.02,122.588,52.715,127.453,52.715,131.066z M39.417,136.117c0,3.43,0,5.375-0.556,6.857c1.9,0.742,4.262,1.158,7.09,1.158 c1.807,0,7.043,0,9.869-5.791c1.344-2.688,1.807-6.303,1.807-9.037c0-1.668-0.186-5.328-1.529-7.646 c-1.296-2.176-3.382-3.289-5.605-3.289c-4.449,0-5.746,3.707-6.44,5.607c0-2.363,0.045-10.611,0.415-14.828 c-3.011,1.391-4.866,1.621-6.857,1.807c1.807,0.74,1.807,3.801,1.807,13.764V136.117"/>
<path i:knockout="Off" d="M66.535,143.855c-0.928-0.139-1.578-0.232-2.922-0.232c-1.48,0-2.502,0.094-3.566,0.232 c0.463-0.881,0.648-1.299,0.787-4.309c0.186-4.125,0.232-15.154-0.092-17.471c-0.232-1.762-0.648-2.039-1.297-2.502 c3.799-0.371,4.865-0.648,6.625-1.482c-0.369,2.037-0.418,3.059-0.418,6.162C65.561,140.242,65.514,141.955,66.535,143.855"/>
<path i:knockout="Off" d="M81.373,130.74c-0.092,2.92-0.139,4.959-0.928,6.58c-0.973,2.086-2.594,2.688-3.799,2.688 c-2.783,0-3.383-2.316-3.383-4.586c0-4.355,3.893-4.682,5.652-4.682H81.373z M68.629,136.441c0,2.92,0.881,5.838,3.477,7.09 c1.158,0.51,2.316,0.51,2.688,0.51c4.264,0,5.699-3.152,6.58-5.098c-0.047,2.039,0,3.289,0.139,4.912 c0.834-0.047,1.668-0.139,3.059-0.139c0.787,0,1.529,0.092,2.316,0.139c-0.51-0.787-0.787-1.252-0.928-3.059 c-0.092-1.76-0.092-3.521-0.092-5.977l0.047-9.453c0-3.523-0.928-6.998-7.879-6.998c-4.586,0-7.273,1.391-8.617,2.086 c0.557,1.02,1.02,1.898,1.436,3.893c1.809-1.576,4.172-2.41,6.58-2.41c3.848,0,3.848,2.549,3.848,6.162 c-0.881-0.045-1.623-0.137-2.875-0.137C72.521,127.963,68.629,130.23,68.629,136.441"/>
<path i:knockout="Off" d="M108.063,139.268c0.047,1.576,0.047,3.244,0.695,4.588c-1.021-0.092-1.623-0.232-3.521-0.232 c-1.113,0-1.715,0.094-2.596,0.232c0.184-0.602,0.279-0.834,0.371-1.623c0.139-1.064,0.232-4.633,0.232-5.885v-5.004 c0-2.178,0-5.33-0.141-6.441c-0.092-0.787-0.322-2.918-3.012-2.918c-2.641,0-3.521,1.945-3.846,3.521 c-0.369,1.621-0.369,3.383-0.369,10.24c0.045,5.932,0.045,6.486,0.508,8.109c-0.787-0.092-1.76-0.184-3.15-0.184 c-1.113,0-1.854,0.045-2.779,0.184c0.324-0.742,0.51-1.113,0.602-3.707c0.094-2.549,0.279-15.061-0.141-18.025 c-0.23-1.809-0.695-2.225-1.203-2.688c3.754-0.186,4.957-0.789,6.117-1.389v4.91c0.555-1.438,1.713-4.635,6.348-4.635 c5.793,0,5.838,4.217,5.885,6.996V139.268"/>
<path i:knockout="Off" fill="#A80030" d="M66.926,111.533l-3.838,3.836l-3.836-3.836l3.836-3.836L66.926,111.533"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.7 KiB

View file

@ -0,0 +1,89 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="800"
height="800"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="e-monogram_v3_post-spiro.svg">
<defs
id="defs4">
<inkscape:path-effect
is_visible="true"
id="path-effect2991"
effect="spiro" />
<inkscape:path-effect
effect="spiro"
id="path-effect3177"
is_visible="true" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.97625"
inkscape:cx="485.53137"
inkscape:cy="393.85403"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1615"
inkscape:window-height="1026"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<sodipodi:guide
orientation="1,0"
position="100,100"
id="guide2985" />
<sodipodi:guide
orientation="1,0"
position="700,555.18566"
id="guide2987" />
<sodipodi:guide
orientation="0,1"
position="-102.43278,100"
id="guide2989" />
<sodipodi:guide
orientation="0,1"
position="-169.01408,700"
id="guide2991" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-252.36218)">
<path
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:7.50000000000000000;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="M 400 100 C 234.31458 100 100 234.31458 100 400 C 100 565.68542 234.31458 700 400 700 C 565.68542 700 700 565.68542 700 400 C 700 234.31458 565.68542 100 400 100 z M 400 125 C 525.96744 125 632.15388 209.69851 664.71875 325.25 C 636.6706 383.10233 596.76011 435.18982 548.15625 477.28125 C 524.80752 497.50148 499.31541 515.52691 471.15625 528.21875 C 442.9971 540.91059 412.02407 548.11213 381.1875 546.34375 C 358.01936 545.01513 335.13297 538.5614 314.84375 527.3125 C 368.61386 498.17635 417.12964 459.32908 456.84375 412.8125 C 482.91128 382.27997 505.71839 347.58066 514.5 308.40625 C 518.89081 288.81904 519.63488 268.30563 515.53125 248.65625 C 511.42762 229.00687 502.34256 210.28185 488.59375 195.65625 C 475.16198 181.36791 457.52918 171.24668 438.625 166.03125 C 419.72081 160.81582 399.60344 160.41208 380.3125 163.9375 C 341.73062 170.98834 307.28404 193.41152 279.65625 221.25 C 230.95825 270.31936 200.85262 339.5572 206.375 408.46875 C 209.13618 442.92452 220.6828 476.78173 240.46875 505.125 C 244.88526 511.45162 249.74063 517.47756 254.9375 523.1875 C 226.11357 533.27523 196.26878 540.45584 166 544.5 C 140.01219 502.50734 125 453.01265 125 400 C 125 248.12169 248.12169 125 400 125 z M 401.75 180.5625 C 421.08142 180.58867 440.54415 186.44102 455.96875 198.09375 C 469.86554 208.59227 480.16267 223.52819 486 239.9375 C 491.83733 256.3468 493.33536 274.16634 491.34375 291.46875 C 487.36053 326.07355 469.90341 357.80884 448.8125 385.53125 C 411.46844 434.6172 361.83069 473.9046 306.625 501.40625 C 300.97426 504.22126 295.23397 506.8969 289.46875 509.46875 C 277.45642 498.95684 267.16054 486.48909 259.3125 472.59375 C 242.91376 443.55899 237.5059 409.06858 240.6875 375.875 C 243.8691 342.68143 255.2603 310.68983 270.5625 281.0625 C 288.30472 246.71092 312.48887 214.17257 346.34375 195.5 C 363.27119 186.16371 382.41858 180.5363 401.75 180.5625 z M 672.53125 363.1875 C 674.14242 375.22998 675 387.51657 675 400 C 675 551.87831 551.87831 675 400 675 C 314.70359 675 238.47226 636.17001 188.03125 575.21875 C 219.16487 568.14767 249.5942 557.99093 278.78125 545.0625 C 291.54496 554.78297 305.64099 562.75549 320.625 568.5 C 363.77602 585.04306 412.76684 582.64935 456.4375 567.53125 C 500.10815 552.41316 538.83419 525.27782 572.59375 493.71875 C 612.81014 456.12373 646.71783 411.81166 672.53125 363.1875 z "
transform="translate(0,252.36218)"
id="path2993" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -0,0 +1,208 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="848.59583"
height="233.3278"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="elementary-logotype_black-on-white_master.svg"
inkscape:export-filename="/home/hex/Pictures/Client_Work/elementary/First-Draft/Logo/elementary-v2-path-postlig.png"
inkscape:export-xdpi="72.571426"
inkscape:export-ydpi="72.571426">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4142136"
inkscape:cx="214.76785"
inkscape:cy="58.358586"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="3200"
inkscape:window-height="1674"
inkscape:window-x="0"
inkscape:window-y="60"
inkscape:window-maximized="1"
showguides="false"
inkscape:guide-bbox="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0">
<sodipodi:guide
orientation="0,1"
position="138.05984,95.859188"
id="guide3092" />
<sodipodi:guide
orientation="1,0"
position="134.57955,95.859188"
id="guide3094" />
<sodipodi:guide
orientation="0,1"
position="584.18897,81.584468"
id="guide3098" />
<sodipodi:guide
orientation="1,0"
position="179.058,81.459288"
id="guide3100" />
<sodipodi:guide
orientation="0,1"
position="171.84706,78.724908"
id="guide3102" />
<sodipodi:guide
orientation="0,1"
position="652.14003,82.318668"
id="guide3908" />
<sodipodi:guide
orientation="0,1"
position="651.94863,79.439758"
id="guide3910" />
<sodipodi:guide
orientation="1,0"
position="653.76113,80.431948"
id="guide3912" />
<sodipodi:guide
orientation="0,1"
position="598.02284,143.23273"
id="guide3914" />
<sodipodi:guide
orientation="0,1"
position="700.94863,154.17414"
id="guide3917" />
<sodipodi:guide
orientation="0,1"
position="718.183,47.334288"
id="guide3920" />
<sodipodi:guide
orientation="0,1"
position="717.88222,50.209288"
id="guide3922" />
<sodipodi:guide
orientation="1,0"
position="717.09706,50.056948"
id="guide3924" />
<sodipodi:guide
orientation="0.90735831,0.42035806"
position="721.48146,122.53044"
id="guide3979" />
<sodipodi:guide
orientation="0.90891047,0.41699132"
position="722.07215,128.08295"
id="guide3981" />
<sodipodi:guide
orientation="0,1"
position="561.51736,180.24797"
id="guide4003" />
<sodipodi:guide
orientation="1,0"
position="507.03456,9.3967876"
id="guide3135" />
<sodipodi:guide
orientation="0,1"
position="336.10498,27.093058"
id="guide3145" />
<sodipodi:guide
orientation="0,1"
position="323.90739,34.340898"
id="guide3147" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-103.71544,-562.93116)">
<path
inkscape:connector-curvature="0"
id="path3062"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:144px;line-height:125%;font-family:Raleway;-inkscape-font-specification:'Raleway Light';text-align:start;letter-spacing:-3.2599988px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
d="m 175.71544,679.66697 c 0,19.15198 15.12002,38.592 36,38.592 11.23199,0 25.05601,-6.19201 29.664,-17.856 l -3.08445,-0.003 c -4.46399,9.79199 -15.63556,14.97919 -26.57955,14.97919 -18.28798,0 -31.824,-16.12802 -33.12,-34.272 l 68.4,0 0,-1.584 c -0.288,-20.44798 -14.68802,-38.592 -36.576,-38.592 -20.87998,0 -34.128,18.72002 -34.704,38.736 m 2.88,-1.44 c 0.864,-16.41598 12.09602,-34.416 31.824,-34.416 19.15198,0 32.256,14.97602 33.552,34.416 l -65.376,0"
sodipodi:nodetypes="csccscccsccscc" />
<path
inkscape:connector-curvature="0"
id="path3064"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:144px;line-height:125%;font-family:Raleway;-inkscape-font-specification:'Raleway Light';text-align:start;letter-spacing:-3.2599988px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
d="m 262.46669,705.73097 c 0,6.33599 4.17601,11.808 11.376,11.808 5.04,0 6.45588,-0.005 6.45588,-0.005 l -0.003,-2.73438 c -0.144,0 -2.42113,0.003 -6.30913,0.003 -5.61599,0 -8.64,-4.896 -8.64,-9.072 l 0,-89.71959 -2.88,0 0,89.71959"
sodipodi:nodetypes="csccssccc" />
<path
inkscape:connector-curvature="0"
id="path3074"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:144px;line-height:125%;font-family:Raleway;-inkscape-font-specification:'Raleway Light';text-align:start;letter-spacing:-3.2599988px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
d="m 682.82268,714.6745 c -1.45919,0 -2.35199,-0.0155 -8.97598,-0.0155 -5.04,0 -9.648,-3.02401 -10.08,-8.64 l 0,-61.056 20.82843,0 0,-2.88 -20.82843,0 0,-26.064 -2.88,0 0,26.064 c 0,1.33043 0,1.40828 0,2.88 l 0,61.056 c 0,6.91199 6.048,11.52 12.96,11.52 7.91999,0 8.82759,0.13909 8.97159,-0.005"
sodipodi:nodetypes="cscccccccccssc" />
<path
inkscape:connector-curvature="0"
id="path3076"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:144px;line-height:125%;font-family:Raleway;-inkscape-font-specification:'Raleway Light';text-align:start;letter-spacing:-3.2599988px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
d="m 755.26769,713.93897 c -1.584,0 -2.016,-1.152 -2.304,-2.88 l 0,-41.328 c 0,-16.12798 -9.36002,-28.8 -27.36,-28.8 -9.21599,0 -18.14401,4.46401 -25.92,9.792 l 1.728,2.304 c 8.35199,-5.90399 16.992,-9.216 24.192,-9.216 14.83198,0 24.48,10.65601 24.48,25.92 l 0,8.496 c -3.888,-1.44 -12.81602,-4.176 -25.056,-4.176 -12.95999,0 -30.816,5.18402 -30.816,21.312 0,12.81599 10.65601,22.896 24.192,22.896 11.66398,0 24.048,-4.32001 31.68,-14.112 l 0,6.912 c 0,3.024 1.872,5.616 5.184,5.76 l 2.8276,2.4e-4 8.3e-4,-2.87891 z m -7.344,-11.808 c -5.904,9.21599 -18.57602,13.248 -29.52,13.248 -11.08799,0 -21.312,-7.92001 -21.312,-20.016 0,-13.96799 15.69601,-18.432 27.936,-18.432 8.35199,0 16.848,1.296 25.056,4.464 l 0,14.832 c 0,1.728 -0.72001,3.744 -2.16,5.904"
sodipodi:nodetypes="ccssccsscssscscccccssscsc" />
<path
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:144px;line-height:125%;font-family:Raleway;-inkscape-font-specification:'Raleway Light';text-align:start;letter-spacing:-3.2599988px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
d="m 817.71875,312.03125 c -1.66471,0.0903 -3.30337,0.54979 -4.75,1.375 -2.17359,1.23989 -3.87136,3.32292 -4.59375,5.71875 -0.49437,1.63961 -0.53216,3.38846 -0.375,5.09375 0.17486,1.89739 0.57947,3.76809 1.125,5.59375 0.40354,1.3505 0.9001,2.66573 1.4375,3.96875 -2.10417,0.01 -4.20833,0.023 -6.3125,0.0313 -0.50793,0.008 -4.50569,0.0937 -6.53125,0.6875 -10.72178,3.14311 -17.32204,8.69305 -22.40625,18.625 l 0,-19.3125 -2.875,0 0,74.75 2.875,0 0,-47.25 c 1.87199,-6.83999 5.3213,-12.84449 10.21875,-17.21875 4.89744,-4.37425 11.24301,-7.11825 18.875,-7.40625 2.35326,-0.0949 4.87121,-0.094 7.28125,-0.125 l 33.46875,72 c -11.37599,25.91997 -11.81125,26.761 -12.53125,27.625 -1.008,1.008 -2.14201,1.59375 -6.75,1.59375 l -2.5625,-0.125 0,2.875 2.5625,0.125 c 5.32799,0 8.21625,-1.14575 9.65625,-3.59375 l 1,-1.71875 44.5,-101.53125 -3.1875,0 -31.25,71.125 L 815.0625,336.5 c 1.52357,-0.0223 3.08347,0.077 4.59375,-0.125 1.63354,-0.2185 3.18295,-0.86678 4.59375,-1.71875 1.48125,-0.89451 2.8144,-2.01532 3.84375,-3.40625 1.43104,-1.93372 2.21576,-4.34524 2.28125,-6.75 0.0556,-2.04142 -0.37945,-4.08968 -1.3125,-5.90625 -0.73027,-1.42177 -1.77522,-2.69179 -3,-3.71875 -1.53952,-1.29087 -3.40774,-2.21713 -5.375,-2.625 -0.97846,-0.20286 -1.96992,-0.27291 -2.96875,-0.21875 z m 0.875,2.40625 c 1.59381,0.0164 3.16923,0.5771 4.46875,1.5 1.29953,0.9229 2.33787,2.20534 3.0625,3.625 0.89918,1.76163 1.32252,3.77916 1.15625,5.75 -0.16626,1.97084 -0.92317,3.88057 -2.21875,5.375 -1.8157,2.09438 -4.67414,3.27936 -7.4375,3.0625 l -3.75,0.0313 -1.15625,-2.71875 c -0.71924,-1.71159 -1.24509,-3.48896 -1.59375,-5.3125 -0.35896,-1.87741 -0.66305,-3.8445 -0.15625,-5.6875 0.50753,-1.84566 1.83358,-3.41113 3.46875,-4.40625 1.25392,-0.7631 2.68846,-1.23385 4.15625,-1.21875 z"
transform="translate(0,308.2677)"
id="path3435"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssccsccccccscccccccccccccccsssssssssssscccssss" />
<path
sodipodi:nodetypes="csccscccsccscc"
d="m 288.7267,679.66697 c 0,19.15198 15.12002,38.592 36,38.592 11.23199,0 25.05601,-6.19201 29.664,-17.856 l -3.08445,-0.003 c -4.46399,9.79199 -15.63556,14.97919 -26.57955,14.97919 -18.28798,0 -31.824,-16.12802 -33.12,-34.272 l 68.4,0 0,-1.584 c -0.288,-20.44798 -14.68802,-38.592 -36.576,-38.592 -20.87998,0 -34.128,18.72002 -34.704,38.736 m 2.88,-1.44 c 0.864,-16.41598 12.09602,-34.416 31.824,-34.416 19.15198,0 32.256,14.97602 33.552,34.416 l -65.376,0"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:144px;line-height:125%;font-family:Raleway;-inkscape-font-specification:'Raleway Light';text-align:start;letter-spacing:-3.2599988px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="path3096"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path3106"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:144px;line-height:125%;font-family:Raleway;-inkscape-font-specification:'Raleway Light';text-align:start;letter-spacing:-3.2599988px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
d="m 496.23793,679.66688 c 0,19.15198 15.12002,38.592 36,38.592 11.23199,0 25.05601,-6.19201 29.664,-17.856 l -3.08445,-0.003 c -4.46399,9.79199 -15.63556,14.97919 -26.57955,14.97919 -18.28798,0 -31.824,-16.12802 -33.12,-34.272 l 68.4,0 0,-1.584 c -0.288,-20.44798 -14.68802,-38.592 -36.576,-38.592 -20.87998,0 -34.128,18.72002 -34.704,38.736 m 2.88,-1.44 c 0.864,-16.41598 12.09602,-34.416 31.824,-34.416 19.15198,0 32.256,14.97602 33.552,34.416 l -65.376,0"
sodipodi:nodetypes="csccscccsccscc" />
<path
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:144px;line-height:125%;font-family:Raleway;-inkscape-font-specification:'Raleway Light';text-align:start;letter-spacing:-3.2599988px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
d="m 610.66196,640.91272 c -21.02397,0 -28.96875,19.16126 -28.96875,34.28125 l 0,41.625 2.875,0 0,-41.625 c 0,-15.69598 8.52577,-31.40625 26.09375,-31.40625 17.56798,0 26.09375,15.71027 26.09375,31.40625 l 0,41.625 2.875,0 0,-41.625 c 0,-15.11999 -7.94478,-34.28125 -28.96875,-34.28125 z"
id="path3133"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="sscsscccccsccscsccs"
d="m 480.00483,661.91807 c -2.1411,-10.79723 -12.84475,-20.9871 -26.47689,-20.9871 -14.17998,0 -24.434,10.32201 -25.414,21.744 -1.15199,-11.51999 -13.39001,-21.744 -27.358,-21.744 -12.23998,0 -21.91337,9.35801 -24.838,20.823 -1.42922,5.60275 -1.88,7.4632 -1.88,55.065 0,0 1.4395,0 2.88,0 0,-41.8953 0.0916,-45.01547 0.875,-50.732 1.83582,-12.08685 10.39881,-22.39971 22.963,-22.276 13.41599,0 26.304,8.64935 25.554,31.642 0,6.12323 0.1876,16.67926 0.1876,24.49811 0,8.76149 -0.1876,16.86789 -0.1876,16.86789 l 2.88,0 c 0,0 0.31042,-27.79495 0,-41.338 -0.5,-21.81385 11.27824,-31.64455 24.338,-31.67 13.60667,0.20485 24.06342,10.48085 24.87722,24.74555 0.41243,7.22924 0.17678,35.99384 0.17678,48.26245 1.41983,0 1.44422,0 2.88,0 0,-47.72177 -0.45288,-49.83673 -1.45711,-54.9009 z"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:144px;line-height:125%;font-family:Raleway;-inkscape-font-specification:'Raleway Light';text-align:start;letter-spacing:-3.2599988px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
id="path3143"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="trace"
style="display:none"
transform="translate(-103.71544,-254.66346)">
<path
d="m 639.72521,366.93527 c 0,-15.11999 -1.29603,-34.272 -22.32,-34.272 -13.10399,0 -26.64001,8.35201 -32.832,20.448 l 0,-19.296 -2.88,0 0,74.736 2.88,0 0,-47.232 c 3.74399,-13.24799 17.56801,-25.776 32.832,-25.776 17.56798,0 19.44,15.69602 19.44,31.392 l 0,41.616 2.88,0 0,-41.616"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:144px;line-height:125%;font-family:Raleway;-inkscape-font-specification:'Raleway Light';text-align:start;letter-spacing:-3.2599988px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:none;stroke:#ff0000;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none"
id="path3108"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="1024" height="324" viewBox="-1.8 -1.8 197.9 62.6"><path d="M194.4 16.4C194.4 7.4 187 0 177.9 0 168.8 0 161.5 7.4 161.5 16.4L161.5 16.4 161.5 29.2 161.5 29.2C161.5 31.2 163.1 32.9 165.2 32.9L165.2 32.9 165.2 32.9 177.9 32.9C187 32.9 194.4 25.5 194.4 16.4" fill="#072b61"/><path d="M182.8 3.9C178.5 3.9 175 7.4 175 11.6L175 15.7 170.9 15.7C166.7 15.7 163.2 19.1 163.2 23.4 163.2 27.7 166.7 31.1 170.9 31.1 175.2 31.1 178.7 27.7 178.7 23.4L178.7 19.3 182.8 19.3C187 19.3 190.5 15.9 190.5 11.6 190.5 7.4 187 3.9 182.8 3.9zM182.8 7.5C185 7.5 186.8 9.4 186.8 11.6 186.8 13.9 185 15.7 182.8 15.7L182.7 15.7 179.3 15.7C178.9 15.7 178.7 15.4 178.7 15.1L178.7 11.6C178.7 9.4 180.5 7.5 182.8 7.5zM76.8 17.9C75.2 17.9 73.9 19.1 73.9 20.8L73.9 36.2C72.4 33.5 69.2 31.6 65.3 31.6 57.5 31.6 52.3 37.5 52.3 45.3 52.3 53.2 57.7 59.1 65.3 59.1 68.7 59.1 71.7 57.7 73.4 55.2L74.1 56.9C74.5 58 75.6 58.8 76.9 58.8 78.5 58.8 79.8 57.5 79.8 55.9L79.8 55.9 79.8 20.8C79.8 19.1 78.5 17.9 76.8 17.9zM17 17.9C10.9 17.9 6 22.9 6 28.9L6 32.4 2.4 32.4C1.1 32.4 0 33.5 0 34.8 0 36.1 1.1 37.4 2.4 37.4L6 37.4 6 55.9C6 57.5 7.3 58.8 8.9 58.8 10.6 58.8 11.9 57.5 11.9 55.9L11.9 37.4 15.8 37.4C17.2 37.4 18.3 36.1 18.3 34.8 18.3 33.5 17.2 32.4 15.8 32.4L11.9 32.4 11.9 28.9C11.9 26.1 14.2 23.4 17 23.4 17.3 23.4 17.5 23.4 17.8 23.5 19.4 23.7 20.9 23 21.1 21.4 21.4 19.8 20.2 18.3 18.6 18.1 18.1 18 17.5 17.9 17 17.9zM170.9 19.3L174.4 19.3C174.8 19.3 175 19.6 175 19.9L175 23.4C175 25.7 173.2 27.5 170.9 27.5 168.7 27.5 166.8 25.7 166.8 23.4 166.8 21.2 168.7 19.3 170.9 19.3zM189.8 29L189.8 29.2 190.1 29.2 190.1 30.1 190.3 30.1 190.3 29.2 190.6 29.2 190.6 29 189.8 29zM190.7 29L190.7 30.1 190.9 30.1 190.9 29.5 190.9 29.4 190.9 29.5 191.2 30.1 191.5 29.5 191.5 29.3 191.5 29.5 191.5 30.1 191.7 30.1 191.7 29 191.5 29 191.3 29.5 191.2 29.7 191.2 29.5 190.9 29 190.7 29zM34.3 31.6C26.6 31.6 20.7 37.7 20.7 45.3 20.7 53 26.8 59.1 34.4 59.1 38.6 59.1 42.9 57.3 45.4 54.6 45.9 54 46.2 53.3 46.3 52.7 46.3 52.2 46.1 51.7 45.8 51.3 45.3 50.7 44.6 50.3 43.8 50.3 43.3 50.3 42.8 50.4 42.4 50.8 40.3 52.9 37.7 54.2 34.6 54.2 30.3 54.2 27.1 51.1 26.8 47.1 45.3 47.1 45.3 47.1 45.3 47.1 46.4 47.1 47.5 46.4 47.5 45.2 47.5 37.5 41.8 31.6 34.3 31.6zM98.3 31.6C90.6 31.6 84.5 37.7 84.5 45.3 84.5 53 90.6 59.1 98.3 59.1 105.9 59.1 112 53 112 45.3 112 37.7 105.9 31.6 98.3 31.6zM131.8 31.6C127.8 31.6 125.1 32.8 122.8 35.8L122.5 34.4C122.3 32.9 121.1 31.8 119.6 31.8 118 31.8 116.7 33.1 116.7 34.8L116.7 34.8 116.7 55.9C116.7 57.5 118 58.8 119.6 58.8 121.2 58.8 122.6 57.5 122.6 55.9L122.6 44.6C122.6 39.4 127 36.8 131.8 36.8 133.2 36.8 134.4 35.6 134.4 34.2 134.4 32.7 133.2 31.6 131.8 31.6zM149.1 31.6C141.4 31.6 135.3 37.7 135.3 45.3 135.3 53 141.3 59.1 148.5 59.1 152.2 59.1 155.4 57.2 156.8 55.3L157.6 57.1C157.9 58.1 158.9 58.8 160.1 58.8 161.6 58.8 162.8 57.6 162.8 56.1L162.8 49.1 162.8 45.3C162.8 38 157.6 31.6 149.1 31.6zM34.3 36.5C38.2 36.5 41.1 39.3 41.6 43 41.6 43 35.9 43 26.9 43 27.5 39.2 30.2 36.5 34.3 36.5zM66.1 36.8C70.9 36.8 73.9 40.5 73.9 45.3 73.9 50.2 70.9 53.8 66.1 53.8 61.3 53.8 58.2 50 58.2 45.3 58.2 40.7 61.3 36.8 66.1 36.8zM98.3 36.8C103 36.8 106.2 40.7 106.2 45.3 106.2 50 103 53.8 98.3 53.8 93.5 53.8 90.3 50 90.3 45.3 90.3 40.7 93.5 36.8 98.3 36.8zM149.1 36.8C153.9 36.8 157 40.7 157 45.3 157 50 153.9 53.8 149.1 53.8 144.3 53.8 141.2 50 141.2 45.3 141.2 40.7 144.3 36.8 149.1 36.8zM163.6 55.1L163.6 55.3 163.9 55.3 163.9 56.2 164.1 56.2 164.1 55.3 164.4 55.3 164.4 55.1 163.6 55.1zM164.5 55.1L164.5 56.2 164.7 56.2 164.7 55.6 164.7 55.5 164.8 55.6 165 56.2 165.3 55.6 165.3 55.5 165.3 55.6 165.3 56.2 165.5 56.2 165.5 55.1 165.3 55.1 165.1 55.6 165 55.8 165 55.6 164.7 55.1 164.5 55.1z" fill="#0a57a4"/><path d="M175 15.7L175 11.6 175 11.6C175 7.4 178.5 3.9 182.7 3.9 183.4 3.9 183.8 4 184.4 4.1 185.3 4.4 186 5.1 186 5.9 186 6.9 185.3 7.6 184.2 7.6 183.7 7.6 183.5 7.5 182.7 7.5 180.5 7.5 178.7 9.4 178.7 11.6L178.7 15.1 178.7 15.1C178.7 15.5 178.9 15.7 179.2 15.7L179.2 15.7 181.9 15.7C182.9 15.7 183.7 16.5 183.7 17.5 183.7 18.5 182.9 19.3 181.9 19.3L178.7 19.3 178.7 23.4 178.7 23.4C178.7 27.7 175.2 31.1 170.9 31.1 170.3 31.1 169.8 31.1 169.2 30.9 168.4 30.7 167.7 30 167.7 29.1 167.7 28.1 168.4 27.4 169.5 27.4 170 27.4 170.2 27.5 170.9 27.5 173.2 27.5 175 25.7 175 23.4L175 19.9C175 19.6 174.8 19.3 174.4 19.3L174.4 19.3 171.8 19.3C170.8 19.3 170 18.5 170 17.5 170 16.5 170.8 15.7 171.8 15.7L175 15.7" fill="#fff"/></svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 KiB

Binary file not shown.

View file

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="76.949" width="130.6" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 130.60352 76.948776">
<metadata>
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g fill="#527d97">
<path style="color-rendering:auto;text-decoration-color:#000000;color:#000000;isolation:auto;mix-blend-mode:normal;shape-rendering:auto;solid-color:#000000;block-progression:tb;text-decoration-line:none;text-decoration-style:solid;image-rendering:auto;white-space:normal;text-indent:0;text-transform:none" d="m3.5254 0c-1.7704 0.0019531-3.5254 2.002-3.5254 3.5215v58.826c0 1.7559 1.755 3.5137 3.5273 3.5117h15.652v-4h-14c-0.5855-0.003-1.1793-0.592-1.1793-1.174v-55.506c0-0.5843 0.5938-1.182 1.1816-1.18h120.24c0.59766-0.00195 1.1797 0.5957 1.1816 1.1797v55.506c-0.002 0.58203-0.58398 1.1719-1.1816 1.1738h-100.6v4h102.25c1.5312 0.002 3.5274-1.7559 3.5293-3.5117v-58.828c0-1.518-1.99-3.518-3.52-3.52z" fill-rule="evenodd"/>
<path d="m19.33 49.9v-32.87h5.09v16.298l13.519-16.298h6.237l-12.228 14.111 12.452 18.759h-5.7969l-10.549-15.402-3.6342 4.0101v11.392z"/>
<path d="m63.384 21.52-4.6201 14.482 9.563-0.000252zm-3.0881-4.49h6.199l12.416 32.87h-6.1674l-3.0872-8.748h-12.883l-3.0872 8.748h-5.8291z"/>
<path d="m82.704 17.03h4.8062v28.52h14.24v4.03h-19.046z"/>
<path d="m106.09 17.03h4.8203v32.55h-4.8203z"/>
<path d="m2.4186 73.779v2.337h1.4894q0.74932 0 1.1079-0.28626 0.36317-0.29053 0.36317-0.8844 0-0.59814-0.36317-0.88013-0.3585-0.286-1.1078-0.286h-1.4894zm0-2.6233v1.9226h1.3745q0.68036 0 1.0114-0.23499 0.33559-0.23926 0.33559-0.72632 0-0.48279-0.33559-0.72205-0.33099-0.23926-1.0114-0.23926h-1.3745zm-0.9286-0.71h2.3721q1.0619 0 1.6366 0.41016 0.57463 0.41016 0.57463 1.1664 0 0.58533-0.29421 0.9314t-0.86425 0.43152q0.68496 0.13672 1.0619 0.57251 0.38156 0.43152 0.38156 1.0809 0 0.85449-0.6252 1.3202-0.6252 0.4657-1.7791 0.4657h-2.464v-6.3788z"/>
<path d="m7.6299 70.446h0.92712l1.7688 2.6233 1.756-2.6233h0.92712l-2.256 3.3411v3.0377h-0.86714v-3.0377z"/>
<path d="m21.333 71.031q-0.93994 0-1.4954 0.70068-0.55115 0.70068-0.55115 1.9098 0 1.2048 0.55115 1.9055 0.55542 0.70068 1.4954 0.70068 0.93994 0 1.4868-0.70068 0.55115-0.70068 0.55115-1.9055 0-1.2091-0.55115-1.9098-0.54688-0.70068-1.4868-0.70068zm0-0.70068q1.3416 0 2.1448 0.90149 0.80322 0.89722 0.80322 2.4097 0 1.5082-0.80322 2.4097-0.80322 0.89722-2.1448 0.89722-1.3458 0-2.1533-0.89722-0.80322-0.89722-0.80322-2.4097t0.80322-2.4097q0.8075-0.90149 2.1533-0.90149z"/>
<path d="m27.032 70.446h3.6658v0.72632h-2.8027v1.8799h2.5293v0.72632h-2.5293v3.0463h-0.86304v-6.3788z"/>
<path d="m33.274 70.446h3.6658v0.72632h-2.8027v1.8799h2.5293v0.72632h-2.5293v3.0463h-0.86304v-6.3788z"/>
<path d="m38.915 70.446h4.0332v0.72632h-3.1702v1.8884h3.0377v0.72632h-3.0377v2.3114h3.2471v0.72632h-4.1101v-6.3788z"/>
<path d="m45.552 70.446h1.1621l2.8284 5.3363v-5.3363h0.8374v6.3788h-1.1621l-2.8284-5.3363v5.3363h-0.8374v-6.3788z"/>
<path d="m57.521 70.655v0.84168q-0.49133-0.23498-0.92712-0.35034t-0.84168-0.11536q-0.70496 0-1.0895 0.27344-0.38025 0.27344-0.38025 0.77759 0 0.42297 0.25208 0.64087 0.25635 0.21362 0.96558 0.34607l0.52124 0.10681q0.96558 0.18372 1.4227 0.64941 0.46142 0.46143 0.46142 1.239 0 0.92712-0.62378 1.4056-0.61951 0.47852-1.8201 0.47852-0.45288 0-0.96558-0.10254-0.50842-0.10254-1.0553-0.30334v-0.88867q0.52551 0.2948 1.0297 0.44434 0.50415 0.14954 0.99121 0.14954 0.73914 0 1.1407-0.29053 0.40161-0.29053 0.40161-0.82886 0-0.46997-0.29053-0.73486-0.286-0.265-0.944-0.397l-0.52551-0.10254q-0.96558-0.19226-1.3971-0.60242t-0.43152-1.1407q0-0.84595 0.59387-1.333 0.59814-0.48706 1.6449-0.48706 0.44861 0 0.91431 0.08118t0.95276 0.24353z"/>
<path d="m59.951 70.446h0.86304v6.3788h-0.86304v-6.3788z"/>
<path d="m65.476 76.825-2.4353-6.3788h0.90149l2.0209 5.3705 2.0251-5.3705h0.89722l-2.431 6.3788h-0.97839z"/>
<path d="m70.313 70.446h4.0332v0.72632h-3.1702v1.8884h3.0377v0.72632h-3.0377v2.3114h3.2471v0.72632h-4.1101v-6.3788z"/>
<path d="m84.061 70.655v0.84168q-0.49133-0.23498-0.92712-0.35034t-0.84168-0.11536q-0.70496 0-1.0895 0.27344-0.38025 0.27344-0.38025 0.77759 0 0.42297 0.25208 0.64087 0.25635 0.21362 0.96558 0.34607l0.52124 0.10681q0.96558 0.18372 1.4227 0.64941 0.46142 0.46143 0.46142 1.239 0 0.92712-0.62378 1.4056-0.61951 0.47852-1.8201 0.47852-0.45288 0-0.96558-0.10254-0.50842-0.10254-1.0553-0.30334v-0.88867q0.52551 0.2948 1.0297 0.44434 0.50415 0.14954 0.99121 0.14954 0.73914 0 1.1407-0.29053 0.40161-0.29053 0.40161-0.82886 0-0.46997-0.29053-0.73486-0.286-0.265-0.944-0.397l-0.52551-0.10254q-0.96558-0.19226-1.3971-0.60242t-0.43152-1.1407q0-0.84595 0.59387-1.333 0.59814-0.48706 1.6449-0.48706 0.44861 0 0.91431 0.08118t0.95276 0.24353z"/>
<path d="m86.391 70.446h4.0332v0.72632h-3.1702v1.8884h3.0377v0.72632h-3.0377v2.3114h3.2471v0.72632h-4.1101v-6.3788z"/>
<path d="m97.504 70.937v0.91003q-0.43579-0.40588-0.9314-0.60669-0.49133-0.2008-1.0468-0.2008-1.0938 0-1.6748 0.67078-0.58105 0.6665-0.58105 1.9312 0 1.2604 0.58105 1.9312 0.58106 0.6665 1.6748 0.6665 0.55542 0 1.0468-0.20081 0.49561-0.20081 0.9314-0.60669v0.90149q-0.45288 0.30762-0.9613 0.46143-0.50415 0.15381-1.0681 0.15381-1.4484 0-2.2815-0.8844-0.83313-0.88867-0.83313-2.4225 0-1.5381 0.83313-2.4225 0.83313-0.88867 2.2815-0.88867 0.57251 0 1.0767 0.15381 0.50842 0.14954 0.95276 0.45288z"/>
<path d="m99.848 70.446h0.86732v3.8751q0 1.0254 0.3717 1.4783 0.3717 0.44861 1.2048 0.44861 0.82886 0 1.2006-0.44861 0.3717-0.45288 0.3717-1.4783v-3.8751h0.86731v3.9819q0 1.2476-0.61951 1.8842-0.61523 0.6366-1.8201 0.6366-1.2091 0-1.8286-0.6366-0.61524-0.6366-0.61524-1.8842v-3.9819z"/>
<path d="m110.78 73.834q0.27771 0.09399 0.53833 0.40161 0.26489 0.30762 0.52978 0.84595l0.87586 1.7432h-0.92713l-0.81604-1.6364q-0.31616-0.64087-0.61523-0.85022-0.2948-0.20935-0.8075-0.20935h-0.93994v2.6959h-0.86304v-6.3788h1.9482q1.0938 0 1.6321 0.45715 0.53833 0.45715 0.53833 1.38 0 0.60242-0.28199 0.99976-0.27771 0.39734-0.81176 0.55115zm-2.1619-2.6788v2.2644h1.0852q0.62378 0 0.93994-0.28625 0.32043-0.29053 0.32043-0.85022t-0.32043-0.84168q-0.31616-0.28626-0.93994-0.28626h-1.0852z"/>
<path d="m114.84 70.446h0.86304v6.3788h-0.86304v-6.3788z"/>
<path d="m117.53 70.446h5.3961v0.72632h-2.2644v5.6525h-0.86731v-5.6525h-2.2644v-0.72632z"/>
<path d="m124.09 70.446h0.92712l1.7688 2.6233 1.756-2.6233h0.92712l-2.2559 3.3411v3.0377h-0.86731v-3.0377l-2.2559-3.3411z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 425 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="256" height="256" viewBox="0 0 256 256" id="svg0" version="1.1">
<defs id="defs0"/>
<metadata id="metadata0">
</metadata>
<g id="layer0" transform="translate(0,192)">
<g id="logo" transform="matrix(4,0,0,4,0,-192)">
<path id="rect4138" d="m 0,0 0,64 18,0 0,-46 23,0 0,-18 z" style="opacity:1;fill:#35bf5c;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path id="rect4140" d="m 22.999999,23 2e-6,41 L 41,64 41,23 Z" style="opacity:1;fill:#35bf5c;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
<path id="rect4142" d="M 46,1e-6 46,64 64,64 64,1e-6 Z" style="opacity:1;fill:#35bf5c;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="146.20282mm" height="33.866772mm" viewBox="0 0 146.20282 33.866772" version="1.1" id="svg74" inkscape:version="1.0 (4035a4fb49, 2020-05-01)" sodipodi:docname="Manjaro logo text.svg">
<title id="title192">Manjaro logo text</title>
<defs id="defs68">
<clipPath clipPathUnits="userSpaceOnUse" id="clipPath56">
<path d="M 0,96 H 414.434 V 0 H 0 Z" id="path54"/>
</clipPath>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1.4" inkscape:cx="216.95666" inkscape:cy="-20.725719" inkscape:document-units="px" inkscape:current-layer="layer1" inkscape:document-rotation="0" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" showborder="false" inkscape:window-width="1920" inkscape:window-height="1013" inkscape:window-x="-9" inkscape:window-y="-9" inkscape:window-maximized="1"/>
<metadata id="metadata71">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>Manjaro logo text</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g transform="translate(-23.093532,-37.306198)" inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1">
<path d="m 47.048201,71.172971 h 9.911998 V 37.306304 h -9.911998 z" style="fill:#35bf5c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352777" id="path42"/>
<path d="m 35.07069,71.172971 h 9.911997 V 49.283462 H 35.07069 Z" style="fill:#35bf5c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.352777" id="path44"/>
<g id="g46" transform="matrix(0.35277777,0,0,-0.35277777,23.093532,37.306198)">
<path d="m 0,0 v -96 h 28.002 v 67.903 H 62.048 V 0 Z" style="fill:#35bf5c;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path48"/>
</g>
<g transform="matrix(0.35277777,0,0,-0.35277777,23.093532,71.172971)" id="g50">
<g id="g52" clip-path="url(#clipPath56)">
<g id="g58" transform="translate(167.1694,67.666)">
<path d="m 0,0 c -2.107,1.196 -4.523,1.795 -7.251,1.795 -3.112,0 -5.876,-0.671 -8.292,-2.01 -1.707,-0.946 -3.129,-2.162 -4.299,-3.62 -1.075,1.616 -2.424,2.902 -4.065,3.835 -2.107,1.196 -4.523,1.795 -7.251,1.795 -2.825,0 -5.338,-0.671 -7.539,-2.01 -0.931,-0.567 -1.759,-1.247 -2.519,-1.999 -0.017,1.061 -0.347,1.92 -0.998,2.573 -0.671,0.67 -1.557,1.005 -2.657,1.005 -1.053,0 -1.927,-0.335 -2.62,-1.005 -0.695,-0.671 -1.041,-1.555 -1.041,-2.656 v -31.948 c 0,-1.054 0.346,-1.928 1.041,-2.621 0.693,-0.695 1.567,-1.041 2.62,-1.041 1.1,0 1.986,0.346 2.657,1.041 0.669,0.693 1.005,1.567 1.005,2.621 v 20.246 c 0,2.68 0.813,4.882 2.44,6.604 1.627,1.723 3.686,2.585 6.175,2.585 2.392,0 4.331,-0.73 5.815,-2.19 1.483,-1.46 2.226,-3.697 2.226,-6.712 v -20.533 c 0,-1.054 0.346,-1.928 1.041,-2.621 0.693,-0.695 1.567,-1.041 2.62,-1.041 1.1,0 1.986,0.346 2.656,1.041 0.67,0.693 1.006,1.567 1.006,2.621 v 20.246 c 0,2.68 0.8,4.882 2.405,6.604 1.602,1.723 3.649,2.585 6.138,2.585 2.393,0 4.331,-0.73 5.815,-2.19 1.483,-1.46 2.226,-3.697 2.226,-6.712 v -20.533 c 0,-1.054 0.346,-1.928 1.041,-2.621 0.693,-0.695 1.567,-1.041 2.62,-1.041 1.101,0 1.985,0.346 2.656,1.041 0.67,0.693 1.006,1.567 1.006,2.621 v 20.533 c 0,3.302 -0.587,6.113 -1.76,8.436 C 3.744,-2.956 2.105,-1.196 0,0" style="fill:#444444;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path60"/>
</g>
<g id="g62" transform="translate(209.0371,37.7646)">
<path d="m 0,0 c -1.914,-1.174 -4.091,-1.76 -6.532,-1.76 -2.394,0 -4.559,0.586 -6.498,1.76 -1.938,1.172 -3.47,2.774 -4.595,4.81 -1.125,2.034 -1.687,4.319 -1.687,6.856 0,2.585 0.562,4.894 1.687,6.928 1.125,2.034 2.657,3.636 4.595,4.81 1.939,1.172 4.104,1.759 6.498,1.759 2.441,0 4.618,-0.587 6.532,-1.759 C 1.914,22.23 3.422,20.628 4.523,18.594 5.625,16.56 6.176,14.251 6.176,11.666 6.176,9.129 5.625,6.844 4.523,4.81 3.422,2.774 1.914,1.172 0,0 m 3.52,29.004 c -2.969,1.747 -6.319,2.621 -10.052,2.621 -3.734,0 -7.096,-0.874 -10.087,-2.621 -2.992,-1.747 -5.361,-4.128 -7.108,-7.144 -1.748,-3.014 -2.62,-6.414 -2.62,-10.194 0,-3.781 0.801,-7.168 2.405,-10.159 1.603,-2.991 3.793,-5.361 6.569,-7.108 2.775,-1.747 5.911,-2.62 9.405,-2.62 3.493,0 6.628,0.873 9.405,2.62 1.706,1.075 3.188,2.385 4.452,3.929 v -2.672 c 0,-1.053 0.345,-1.927 1.041,-2.621 0.693,-0.694 1.566,-1.041 2.619,-1.041 1.053,0 1.926,0.347 2.621,1.041 0.693,0.694 1.041,1.568 1.041,2.621 v 16.01 c 0,3.78 -0.873,7.18 -2.621,10.194 -1.748,3.016 -4.104,5.397 -7.07,7.144" style="fill:#444444;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path64"/>
</g>
<g id="g66" transform="translate(266.6865,33.4209)">
<path d="m 0,0 v 17.661 c 0,3.973 -0.754,7.323 -2.262,10.051 -1.507,2.728 -3.565,4.798 -6.174,6.21 -2.609,1.411 -5.563,2.118 -8.866,2.118 -3.159,0 -6.007,-0.694 -8.544,-2.082 -1.386,-0.759 -2.596,-1.678 -3.661,-2.729 v 0.791 c 0,1.1 -0.335,1.985 -1.005,2.656 -0.671,0.67 -1.555,1.006 -2.656,1.006 -1.054,0 -1.928,-0.336 -2.621,-1.006 -0.694,-0.671 -1.041,-1.556 -1.041,-2.656 V 0 c 0,-1.054 0.347,-1.928 1.041,-2.621 0.693,-0.694 1.567,-1.041 2.621,-1.041 1.101,0 1.985,0.347 2.656,1.041 0.67,0.693 1.005,1.567 1.005,2.621 v 20.246 c 0,1.77 0.478,3.338 1.436,4.702 0.957,1.364 2.25,2.452 3.877,3.267 1.627,0.813 3.446,1.221 5.457,1.221 2.2,0 4.151,-0.42 5.85,-1.257 1.699,-0.838 3.051,-2.118 4.057,-3.841 1.005,-1.723 1.508,-3.948 1.508,-6.677 L -7.322,0 c 0,-1.054 0.346,-1.928 1.041,-2.621 0.692,-0.694 1.566,-1.041 2.62,-1.041 1.052,0 1.926,0.347 2.62,1.041 C -0.348,-1.928 0,-1.054 0,0" style="fill:#444444;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path68"/>
</g>
<g id="g70" transform="translate(282.4092,69.1025)">
<path d="m 0,0 c -1.053,0 -1.927,-0.336 -2.62,-1.006 -0.694,-0.671 -1.041,-1.556 -1.041,-2.656 v -35.466 c 0,-1.866 -0.42,-3.518 -1.257,-4.954 -0.838,-1.436 -1.974,-2.572 -3.41,-3.41 -1.436,-0.837 -3.11,-1.256 -5.026,-1.256 -1.051,0 -1.913,-0.334 -2.584,-1.005 -0.669,-0.67 -1.005,-1.555 -1.005,-2.656 0,-1.053 0.336,-1.927 1.005,-2.621 0.671,-0.694 1.533,-1.041 2.584,-1.041 3.351,0 6.293,0.73 8.832,2.189 2.536,1.461 4.534,3.459 5.994,5.995 1.46,2.537 2.19,5.456 2.19,8.759 v 35.466 c 0,1.1 -0.336,1.985 -1.006,2.656 C 1.985,-0.336 1.101,0 0,0" style="fill:#444444;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path72"/>
</g>
<g id="g74" transform="translate(282.4092,82.9688)">
<path d="m 0,0 c -1.292,0 -2.405,-0.467 -3.338,-1.4 -0.933,-0.934 -1.4,-2.046 -1.4,-3.338 0,-1.293 0.467,-2.406 1.4,-3.339 0.933,-0.934 2.046,-1.401 3.338,-1.401 1.292,0 2.405,0.467 3.339,1.401 0.932,0.933 1.399,2.046 1.399,3.339 0,1.292 -0.467,2.404 -1.399,3.338 C 2.405,-0.467 1.292,0 0,0" style="fill:#444444;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path76"/>
</g>
<g id="g78" transform="translate(319.5967,37.7646)">
<path d="m 0,0 c -1.914,-1.174 -4.092,-1.76 -6.533,-1.76 -2.394,0 -4.559,0.586 -6.497,1.76 -1.939,1.172 -3.471,2.774 -4.595,4.81 -1.125,2.034 -1.687,4.319 -1.687,6.856 0,2.585 0.562,4.894 1.687,6.928 1.124,2.034 2.656,3.636 4.595,4.81 1.938,1.172 4.103,1.759 6.497,1.759 2.441,0 4.619,-0.587 6.533,-1.759 C 1.914,22.23 3.422,20.628 4.523,18.594 5.624,16.56 6.175,14.251 6.175,11.666 6.175,9.129 5.624,6.844 4.523,4.81 3.422,2.774 1.914,1.172 0,0 m 3.519,29.004 c -2.969,1.747 -6.319,2.621 -10.052,2.621 -3.733,0 -7.096,-0.874 -10.087,-2.621 -2.991,-1.747 -5.36,-4.128 -7.108,-7.144 -1.747,-3.014 -2.62,-6.414 -2.62,-10.194 0,-3.781 0.801,-7.168 2.406,-10.159 1.602,-2.991 3.793,-5.361 6.569,-7.108 2.774,-1.747 5.91,-2.62 9.404,-2.62 3.493,0 6.629,0.873 9.406,2.62 1.705,1.075 3.188,2.385 4.451,3.929 v -2.672 c 0,-1.053 0.346,-1.927 1.041,-2.621 0.693,-0.694 1.566,-1.041 2.62,-1.041 1.053,0 1.926,0.347 2.62,1.041 0.693,0.694 1.041,1.568 1.041,2.621 v 16.01 c 0,3.78 -0.873,7.18 -2.62,10.194 -1.748,3.016 -4.105,5.397 -7.071,7.144" style="fill:#444444;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path80"/>
</g>
<g id="g82" transform="translate(365.7949,68.1328)">
<path d="m 0,0 c -1.412,0.934 -3.554,1.4 -6.425,1.4 -2.872,0 -5.505,-0.671 -7.897,-2.01 -1.619,-0.907 -2.994,-2.045 -4.164,-3.378 v 1.368 c 0,1.195 -0.3,2.093 -0.898,2.692 -0.598,0.598 -1.496,0.898 -2.692,0.898 -1.149,0 -2.034,-0.313 -2.656,-0.934 -0.622,-0.623 -0.934,-1.508 -0.934,-2.656 v -32.092 c 0,-1.197 0.312,-2.095 0.934,-2.692 0.622,-0.599 1.507,-0.898 2.656,-0.898 1.196,0 2.094,0.311 2.692,0.934 0.598,0.621 0.898,1.508 0.898,2.656 v 20.964 c 0,2.2 0.706,4.02 2.118,5.456 1.411,1.436 3.338,2.416 5.779,2.943 2.441,0.527 5.193,0.478 8.256,-0.143 0.622,-0.144 1.196,-0.168 1.724,-0.071 0.525,0.094 0.992,0.322 1.399,0.681 0.406,0.36 0.683,0.873 0.826,1.544 C 1.95,-2.046 1.412,-0.934 0,0" style="fill:#444444;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path84"/>
</g>
<g id="g86" transform="translate(405.7832,42.4668)">
<path d="m 0,0 c -1.077,-2.011 -2.573,-3.59 -4.487,-4.738 -1.915,-1.149 -4.117,-1.724 -6.606,-1.724 -2.489,0 -4.69,0.575 -6.604,1.724 -1.915,1.148 -3.423,2.727 -4.524,4.738 -1.101,2.01 -1.65,4.331 -1.65,6.964 0,2.632 0.549,4.965 1.65,7 1.101,2.034 2.609,3.626 4.524,4.774 1.914,1.149 4.115,1.723 6.604,1.723 2.489,0 4.691,-0.574 6.606,-1.723 1.914,-1.148 3.41,-2.74 4.487,-4.774 1.076,-2.035 1.615,-4.368 1.615,-7 C 1.615,4.331 1.076,2.01 0,0 m 6.103,17.338 c -1.701,2.991 -4.034,5.337 -7,7.036 -2.969,1.698 -6.367,2.549 -10.196,2.549 -3.876,0 -7.299,-0.851 -10.265,-2.549 -2.969,-1.699 -5.302,-4.045 -7,-7.036 -1.7,-2.991 -2.549,-6.45 -2.549,-10.374 0,-3.877 0.849,-7.312 2.549,-10.303 1.698,-2.991 4.031,-5.337 7,-7.035 2.966,-1.7 6.389,-2.549 10.265,-2.549 3.877,0 7.299,0.849 10.267,2.549 2.968,1.698 5.288,4.044 6.964,7.035 1.674,2.991 2.512,6.426 2.512,10.303 0,3.924 -0.849,7.383 -2.547,10.374" style="fill:#444444;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path88"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -0,0 +1,137 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="320"
height="320"
viewBox="0 0 320 320"
id="svg4135"
version="1.1"
inkscape:version="1.0.1 (1.0.1+r74)"
sodipodi:docname="Logo-Ring-Filled+shadow-#FFF+#00E472.svg"
inkscape:export-filename="/home/sebastien/linuxmint-logo/Logo-Ring-Filled+shadow-#FFF+#00E472.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96">
<defs
id="defs4137">
<filter
height="1.096"
y="-0.048"
width="1.096"
x="-0.048"
id="filter931"
style="color-interpolation-filters:sRGB"
inkscape:collect="always">
<feGaussianBlur
id="feGaussianBlur933"
stdDeviation="5.68"
inkscape:collect="always" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#f2f2f2"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="103.67892"
inkscape:cy="163.00002"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:window-width="1440"
inkscape:window-height="839"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:showpageshadow="false"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
showguides="false"
inkscape:guide-bbox="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:document-rotation="0"
inkscape:pagecheckerboard="false">
<inkscape:grid
type="xygrid"
id="grid3333"
spacingx="20"
spacingy="20"
color="#3f3fff"
opacity="0.1254902"
empcolor="#ff3f3f"
empopacity="0.25098039"
dotted="false"
originx="-92.999998"
originy="-93.000018" />
<sodipodi:guide
position="-92.999998,-17.000068"
orientation="0,1"
id="guide4248"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata4140">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:creator>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-93,-833.36218)">
<circle
r="142"
cy="993.36218"
cx="253"
id="circle857"
style="fill:#808080;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter931)" />
<g
id="g862">
<circle
r="140"
cy="993.36218"
cx="253"
id="ellipse4245"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<circle
r="120"
style="fill:#00e472;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="ellipse4247"
cx="253"
cy="993.36237" />
<path
id="path4249"
style="fill:none;fill-opacity:0.266667;stroke:#ffffff;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 232.99999,1020.3622 v -49.99996 c 0,-11.04569 8.95431,-20 20,-20 11.04569,0 20,8.95431 20,20 v 49.99996 m -80,-89.99996 v 89.99996 c 0,16.5686 13.43147,30 30,30 h 60 c 16.56854,0 30,-13.4314 30,-30 v -49.99996 c 0,-11.04569 -8.95431,-20 -20,-20 -11.04569,0 -20,8.95431 -20,20"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csssccsccsssc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -0,0 +1,100 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="280"
height="280"
viewBox="0 0 280 280"
id="svg4135"
version="1.1"
inkscape:version="1.0 (1.0+r73+1)"
sodipodi:docname="Logo-Badge-#FFF.svg"
inkscape:export-filename="/home/sebastien/Sources/LM-logo/Color_lm+name_#75cc1c.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96">
<defs
id="defs4137" />
<sodipodi:namedview
id="base"
pagecolor="#f2f2f2"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="66.555436"
inkscape:cy="140"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:window-width="1440"
inkscape:window-height="839"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:showpageshadow="false"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
showguides="false"
inkscape:guide-bbox="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:document-rotation="0">
<inkscape:grid
type="xygrid"
id="grid3333"
spacingx="20"
spacingy="20"
color="#3f3fff"
opacity="0.1254902"
empcolor="#ff3f3f"
empopacity="0.25098039"
dotted="false"
originx="-92.999998"
originy="-93.000018" />
<sodipodi:guide
position="-92.999998,-17.000068"
orientation="0,1"
id="guide4248"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata4140">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:creator>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-93,-833.36218)">
<path
id="ellipse4247"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:22.3357;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 139.97461 0 A 140 140 0 0 0 0 140 A 140 140 0 0 0 140 280 A 140 140 0 0 0 280 140 A 140 140 0 0 0 140 0 A 140 140 0 0 0 139.97461 0 z M 63 70.5 L 85 70.5 L 85 169.5 C 85 181.7806 94.71945 191.5 107 191.5 L 173 191.5 C 185.28053 191.5 195 181.7806 195 169.5 L 195 114.5 C 195 108.2946 190.20542 103.5 184 103.5 C 177.79461 103.5 173 108.2946 173 114.5 L 173 169.5 L 151 169.5 L 151 114.5 C 151 108.29461 146.20539 103.5 140 103.5 C 133.79459 103.5 129 108.29461 129 114.5 L 129 169.5 L 107 169.5 L 107 114.5 C 107 96.40489 121.90489 81.5 140 81.5 C 148.4533 81.5 156.13349 84.841054 162 90.152344 C 167.86651 84.841054 175.5467 81.5 184 81.5 C 202.09512 81.5 217 96.4049 217 114.5 L 217 169.5 C 217 193.6703 197.17023 213.5 173 213.5 L 107 213.5 C 82.82977 213.5 63 193.6703 63 169.5 L 63 70.5 z "
transform="translate(93,833.36218)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -0,0 +1,114 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
xml:space="preserve"
width="400"
height="250.37875"
viewBox="0 0 400 250.37875"
sodipodi:docname="openSUSElogo_rgb green.svg"><metadata
id="metadata8"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs6"><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath16"><path
d="m 0,200.303 320,0 L 320,0 0,0 0,200.303 Z"
id="path18"
inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="707"
inkscape:window-height="480"
id="namedview4"
showgrid="false"
inkscape:zoom="0.94257199"
inkscape:cx="200"
inkscape:cy="123.06752"
inkscape:window-x="103"
inkscape:window-y="66"
inkscape:window-maximized="0"
inkscape:current-layer="g10" /><g
id="g10"
inkscape:groupmode="layer"
inkscape:label="openSUSElogo_rgb green"
transform="matrix(1.25,0,0,-1.25,0,250.37875)"><g
id="g12"><g
id="g14"
clip-path="url(#clipPath16)"><g
id="g20"
transform="translate(262.6839,162.7228)"><path
d="m 0,0 c 0.175,4.73 2.156,9.12 5.614,12.34 3.46,3.231 7.975,4.9 12.708,4.75 9.761,-0.349 17.43,-8.589 17.095,-18.339 -0.184,-4.73 -2.164,-9.12 -5.614,-12.329 -3.46,-3.25 -7.964,-4.92 -12.719,-4.76 C 7.335,-17.979 -0.326,-9.758 0,0 Z m 47.347,-17.439 c 0.805,0.532 1.396,0.972 1.645,1.07 l 0.269,0.419 c -0.681,4.28 -7.06,25.03 -11.885,30.019 -1.329,1.36 -2.394,2.7 -4.549,3.961 -17.455,10.17 -58.863,16.309 -60.803,16.589 l -0.33,-0.091 -0.124,-0.3 c 0,0 -0.16,-8.58 -0.184,-9.539 -4.229,1.421 -34.972,11.351 -63.791,12.351 -24.44,0.859 -60.033,4.02 -107.196,-24.981 l -1.395,-0.868 c -22.189,-13.841 -37.509,-30.91 -45.517,-50.739 -2.512,-6.24 -5.89,-20.32 -2.542,-33.569 1.442,-5.791 4.131,-11.61 7.756,-16.819 8.194,-11.77 21.944,-19.58 36.748,-20.899 20.905,-1.87 36.733,7.519 42.363,25.1 3.871,12.129 0,29.927 -14.839,39.007 -12.07,7.391 -25.049,5.711 -32.578,0.73 -6.532,-4.331 -10.231,-11.06 -10.166,-18.451 0.151,-13.11 11.444,-20.078 19.565,-20.099 2.359,0 4.728,0.41 7.399,1.28 0.951,0.29 1.845,0.649 2.831,1.259 l 0.309,0.181 0.194,0.13 -0.065,-0.039 c 1.851,1.261 2.964,3.312 2.964,5.511 0,0.6 -0.084,1.208 -0.256,1.82 -0.959,3.32 -4.239,5.329 -7.638,4.71 l -0.459,-0.109 -0.621,-0.19 -0.901,-0.31 c -1.87,-0.46 -3.27,-0.5 -3.569,-0.51 -0.951,0.061 -5.625,1.461 -5.625,6.58 l 0,0.07 c 0,1.88 0.754,3.199 1.17,3.92 1.454,2.28 5.435,4.518 10.814,4.05 7.059,-0.611 12.149,-4.231 15.52,-11.06 3.129,-6.349 2.31,-14.159 -2.11,-19.88 -4.39,-5.669 -12.205,-8.078 -22.598,-6.959 -10.481,1.159 -19.34,7.19 -24.304,16.579 -4.856,9.178 -5.121,20.059 -0.685,28.418 10.609,20.029 30.648,19.82 41.636,17.921 16.26,-2.821 34.758,-17.82 41.319,-35.139 1.06,-2.761 1.6,-4.949 2.072,-6.951 l 0.708,-2.99 18.37,-8.969 0.24,-0.181 0.446,0.041 0.081,0.529 c -0.114,0.411 -0.381,0.789 -0.805,5.93 -0.349,4.562 -1.06,17.051 5.228,23.24 2.441,2.419 6.161,4.578 9.099,5.269 12.04,2.941 26.159,0.912 39.507,-14.539 6.911,-7.981 10.28,-11.62 11.97,-13.249 l 0.59,-0.532 0.694,-0.519 c 0.554,-0.301 22.955,-10.621 22.955,-10.621 l 0.461,0.11 0.009,0.479 c -0.149,0.17 -14.199,18.328 -11.698,33.28 1.969,11.908 11.447,10.83 24.557,9.35 4.28,-0.5 9.152,-1.06 14.196,-1.172 14.083,-0.089 29.254,2.511 38.604,6.601 6.049,2.63 9.909,4.38 12.328,6.579 0.87,0.721 1.32,1.891 1.791,3.15 l 0.329,0.831 c 0.391,1.021 0.967,3.171 1.219,4.35 0.102,0.519 0.162,1.068 -0.209,1.359 l -1.294,-0.24 c -4.106,-2.471 -14.369,-7.15 -23.965,-7.35 -11.914,-0.241 -35.898,11.98 -38.398,13.28 l -0.241,0.279 c -0.589,1.44 -4.19,9.949 -4.96,11.749 17.27,-11.379 31.594,-17.669 42.559,-18.639 12.207,-1.087 21.722,5.574 25.786,8.422 l -10e-4,0 z M 20.194,-1.64 c -3.031,0 -5.479,1.64 -5.479,3.65 0,2.029 2.448,3.66 5.479,3.66 3.031,0 5.486,-1.631 5.486,-3.66 C 25.678,0 23.223,-1.64 20.194,-1.64 M 18.173,11.872 C 14.862,11.991 11.723,10.821 9.323,8.571 6.924,6.321 5.509,3.273 5.409,-0.028 c -0.23,-6.821 5.111,-12.559 11.916,-12.81 3.309,-0.1 6.464,1.07 8.878,3.32 2.409,2.261 3.795,5.311 3.9,8.599 0.23,6.819 -5.109,12.549 -11.93,12.791 z"
style="fill:#73ba25;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path22"
inkscape:connector-curvature="0" /></g><g
id="g24"
transform="translate(133.9789,60.2888)"><path
d="m 0,0 c -7.784,0 -12.065,-6.58 -12.065,-11.13 l 0,-5.84 c 0,-6.7 5.474,-10.851 10.55,-10.851 l 17.819,0 c 2.245,0 2.715,-1.47 2.715,-2.71 l 0,-3.769 c 0,-0.4 -0.081,-4.02 -2.715,-4.02 l -24.303,0 c -2.415,0 -4.161,-1.68 -4.161,-3.98 l 0,-1.041 c 0,-2.291 1.746,-3.961 4.161,-3.961 l 25.623,0 c 6.698,0 11.02,4.66 11.02,11.879 l 0,6.302 c 0,6.779 -4.87,9.809 -9.706,9.809 l -17.533,0 c -2.64,0 -3.836,1.98 -3.836,3.38 l 0,3.48 c 0,2.19 1.465,3.46 4.025,3.46 l 19.408,0 c 2.38,0 4.171,1.71 4.171,3.971 l 0,1.04 C 25.173,-1.712 23.352,0 20.922,0 L 0,0 Z"
style="fill:#73ba25;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path26"
inkscape:connector-curvature="0" /></g><g
id="g28"
transform="translate(206.8412,60.2888)"><path
d="m 0,0 c -2.301,0 -4.155,-1.87 -4.155,-4.171 l 0,-29.838 c 0,-2.391 -1.95,-4.311 -4.311,-4.311 l -13.545,0 c -2.369,0 -4.309,1.92 -4.309,4.311 l 0,29.838 C -26.32,-1.87 -28.19,0 -30.489,0 l -1.31,0 c -2.335,0 -4.171,-1.842 -4.171,-4.171 l 0,-30.968 c 0,-7.21 5.674,-12.44 13.489,-12.44 l 14.485,0 c 7.805,0 13.475,5.229 13.475,12.44 l 0,30.968 C 5.479,-1.842 3.65,0 1.319,0 L 0,0 Z"
style="fill:#73ba25;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path30"
inkscape:connector-curvature="0" /></g><g
id="g32"
transform="translate(232.7736,60.2888)"><path
d="m 0,0 c -7.78,0 -12.074,-6.58 -12.074,-11.13 l 0,-5.84 c 0,-6.7 5.485,-10.851 10.564,-10.851 l 17.814,0 c 2.248,0 2.72,-1.47 2.72,-2.71 l 0,-3.769 c 0,-0.4 -0.081,-4.02 -2.72,-4.02 l -24.314,0 c -2.404,0 -4.16,-1.68 -4.16,-3.98 l 0,-1.041 c 0,-2.291 1.756,-3.961 4.16,-3.961 l 25.633,0 c 6.7,0 11.04,4.66 11.04,11.879 l 0,6.302 c 0,6.779 -4.884,9.809 -9.72,9.809 l -17.533,0 c -2.646,0 -3.839,1.98 -3.839,3.38 l 0,3.48 c 0,2.19 1.464,3.46 4.025,3.46 l 19.419,0 c 2.374,0 4.158,1.71 4.158,3.971 l 0,1.04 C 25.173,-1.712 23.354,0 20.913,0 L 0,0 Z"
style="fill:#73ba25;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path34"
inkscape:connector-curvature="0" /></g><g
id="g36"
transform="translate(273.7386,60.2888)"><path
d="m 0,0 c -2.31,0 -4.055,-1.712 -4.055,-3.981 l 0,-39.359 c 0,-2.259 1.705,-3.96 3.964,-3.96 l 31.364,0 c 2.415,0 4.16,1.67 4.16,3.96 l 0,1.042 c 0,2.3 -1.745,3.98 -4.16,3.98 l -25.687,0 0,10.02 18.822,0 c 2.41,0 4.161,1.69 4.161,3.981 l 0,1.04 c 0,2.301 -1.751,3.971 -4.161,3.971 l -18.822,0 0,10.319 24.382,0 c 2.406,0 4.16,1.659 4.16,3.971 l 0,1.04 c 0,2.301 -1.754,3.981 -4.16,3.981 L 0,0.005 0,0 Z"
style="fill:#73ba25;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path38"
inkscape:connector-curvature="0" /></g><g
id="g40"
transform="translate(5.0529,20.4885)"><path
d="m 0,0 0,13.55 c 0,1.589 1.305,2.889 2.901,2.889 l 7.478,0 c 1.561,0 2.891,-1.329 2.891,-2.889 L 13.27,0 c 0,-1.6 -1.295,-2.899 -2.891,-2.899 l -7.534,0 C 1.245,-2.899 0,-1.628 0,0 m 2.077,21.08 c -3.931,0 -7.13,-3.059 -7.13,-6.83 l 0,-14.839 c 0,-3.831 3.096,-6.951 6.891,-6.951 l 9.599,0 c 3.795,0 6.891,3.12 6.891,6.951 l 0,14.839 c 0,3.769 -3.201,6.83 -7.13,6.83 l -9.122,0 10e-4,0 z"
style="fill:#73ba25;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path42"
inkscape:connector-curvature="0" /></g><g
id="g44"
transform="translate(35.5085,20.7779)"><path
d="m 0,0 0,12.961 c 0,1.791 1.4,3.189 3.188,3.189 l 7.011,0 c 1.79,0 3.188,-1.4 3.188,-3.189 L 13.387,0 c 0,-1.759 -1.435,-3.188 -3.188,-3.188 l -7.011,0 C 1.433,-3.188 0,-1.759 0,0 Z m 9.602,20.962 c -2.767,0 -4.854,-0.989 -6.529,-1.799 -1.021,-0.49 -1.905,-0.912 -2.591,-0.912 -0.31,0 -0.575,0.14 -0.715,0.37 l -0.639,1.22 c -0.159,0.321 -0.799,0.949 -1.59,0.949 l -0.949,0 c -0.912,0 -1.642,-0.819 -1.642,-1.818 l 0,-37.64 c 0,-1.18 0.931,-2.11 2.11,-2.11 l 0.821,0 c 1.17,0 2.12,0.94 2.12,2.11 l 0,12.489 c 0,0.37 0.241,0.77 0.484,0.77 0.686,0 1.57,-0.402 2.591,-0.87 1.675,-0.77 3.762,-1.719 6.529,-1.719 l 0.886,0 c 4.9,0 7.949,2.801 7.949,7.3 l 0,14.368 c 0,4.43 -3.114,7.29 -7.949,7.29 l -0.886,0 0,0.002 z"
style="fill:#73ba25;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path46"
inkscape:connector-curvature="0" /></g><g
id="g48"
transform="translate(66.0714,34.088)"><path
d="m 0,0 c 0,1.591 1.251,2.839 2.843,2.839 l 7.71,0 c 1.589,0 2.829,-1.248 2.829,-2.839 l 0,-4.599 -13.384,0 C 0,-3.999 0,0 0,0 Z m 2.075,7.48 c -3.931,0 -7.121,-3.058 -7.121,-6.829 l 0,-14.729 c 0,-3.82 3.101,-7.059 6.76,-7.059 l 9.903,0 c 1.225,0 2.11,0.848 2.11,2.001 l 0,0.649 c 0,1.159 -0.885,1.99 -2.11,1.99 l -8.136,0 c -2.28,0 -3.483,1.121 -3.483,3.252 l 0,4.309 14.678,0 c 2.361,0 3.757,1.44 3.757,3.88 l 0,5.71 c 0,3.769 -3.196,6.83 -7.11,6.83 l -9.248,0 0,-0.004 z"
style="fill:#73ba25;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path50"
inkscape:connector-curvature="0" /></g><g
id="g52"
transform="translate(104.8947,41.74)"><path
d="m 0,0 c -2.759,0 -4.841,-0.989 -6.521,-1.791 -1.045,-0.491 -1.938,-0.92 -2.667,-0.92 -0.321,0 -0.451,0.04 -0.7,0.471 l -0.581,1.06 c -0.333,0.67 -0.899,1.008 -1.664,1.008 l -0.816,0 c -0.985,0 -1.704,-0.768 -1.704,-1.819 l 0,-24.689 c 0,-1.169 0.924,-2.109 2.115,-2.109 l 0.815,0 c 1.17,0 2.124,0.95 2.124,2.109 l 0,18.679 c 0,1.75 1.43,3.188 3.18,3.188 l 7.014,0 c 1.755,0 3.185,-1.438 3.185,-3.188 l 0,-18.679 c 0,-1.169 0.929,-2.109 2.11,-2.109 l 0.824,0 c 1.17,0 2.12,0.95 2.12,2.109 l 0,19.389 C 8.834,-2.86 5.719,0 0.88,0 L 0,0 Z"
style="fill:#73ba25;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path54"
inkscape:connector-curvature="0" /></g><g
id="g56"
transform="translate(315.4154,18.754)"><path
d="m 0,0 0.503,0 c 0.574,0 1.06,0.207 1.06,0.747 0,0.382 -0.277,0.765 -1.06,0.765 C 0.277,1.512 0.121,1.494 0,1.475 L 0,0 Z m 0,-2.415 -0.695,0 0,4.358 C -0.33,1.996 0.018,2.048 0.538,2.048 1.2,2.048 1.633,1.91 1.892,1.719 2.154,1.529 2.294,1.235 2.294,0.815 2.294,0.244 1.912,-0.104 1.443,-0.244 l 0,-0.037 C 1.826,-0.349 2.085,-0.696 2.173,-1.34 2.278,-2.019 2.38,-2.278 2.45,-2.417 l -0.729,0 C 1.615,-2.278 1.512,-1.878 1.426,-1.305 1.321,-0.751 1.043,-0.54 0.488,-0.54 l -0.486,0 0,-1.875 -0.002,0 z M 0.73,3.16 c -1.719,0 -3.126,-1.476 -3.126,-3.3 0,-1.859 1.407,-3.317 3.143,-3.317 1.736,-0.019 3.126,1.458 3.126,3.299 0,1.842 -1.39,3.318 -3.126,3.318 l -0.017,0 z m 0.017,0.607 c 2.136,0 3.838,-1.736 3.838,-3.909 0,-2.205 -1.703,-3.923 -3.855,-3.923 -2.137,0 -3.873,1.718 -3.873,3.923 0,2.171 1.736,3.909 3.873,3.909 l 0.017,0 z"
style="fill:#73ba25;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path58"
inkscape:connector-curvature="0" /></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="700"
width="1012"
id="svg14"
version="1.1"
viewBox="0 0 1012 700"
sodipodi:docname="pop_edit.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview11"
showgrid="false"
inkscape:zoom="0.8468512"
inkscape:cx="506"
inkscape:cy="350"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg14" />
<metadata
id="metadata20">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs18" />
<path
style="fill:#6cc7d2;stroke-width:0.98686367"
id="path2"
d="m 904.38957,397.08506 c -1.85504,7.88028 -5.85803,14.86281 -12.69239,19.25182 -10.7397,6.88278 -23.82262,4.88777 -33.09782,-3.49126 -8.68941,-7.78053 -11.61842,-20.94758 -8.88467,-32.31912 2.83138,-11.87029 11.81368,-22.34408 23.33445,-25.63584 25.67767,-7.28178 36.31975,21.24682 31.34043,42.1944 z m -15.71903,-80.9973 c -15.9143,-6.48377 -10.44681,-91.77034 4.10061,-195.31122 4.10062,-28.92761 11.13025,-42.59341 19.03858,-49.57593 11.32551,-9.87529 31.92622,-10.27429 45.88784,-8.17953 16.01193,2.394 31.34043,9.97503 42.95883,21.44633 10.2515,10.17453 11.4232,20.54857 7.9083,34.01487 -5.7604,21.44633 -15.62136,41.99491 -25.09183,62.04473 -2.24557,4.88777 -21.86995,42.89266 -24.50606,47.58093 -47.35235,85.18681 -56.82282,93.46609 -70.29627,87.97982 z" />
<path
style="fill:#bbb5b3;stroke-width:0.98686367"
id="path4"
d="m 567.45562,277.68387 c 9.37284,40.89765 8.3965,85.78532 0.39054,118.10444 -7.5178,30.52361 -27.92324,57.85521 -60.33764,67.03225 -28.41141,8.07977 -61.50924,2.1945 -81.81705,-17.75557 C 392.30074,412.34687 372.774,335.53908 381.4634,279.77863 c 7.02963,-44.78792 30.65699,-102.14438 82.50049,-104.63814 3.31954,-0.1995 6.63909,-0.0997 9.95864,0.1995 52.81983,4.88777 81.62178,50.37394 93.53309,102.34388 z m -95.48577,93.06709 c 2.92901,0.49876 5.85802,0.49876 8.78704,-0.399 9.861,-2.89276 15.52376,-13.36655 18.15987,-23.54108 4.00298,-15.46131 3.41718,-32.11962 -1.75741,-47.28168 -2.63611,-7.68078 -6.54146,-15.16206 -12.49712,-20.74808 -20.99124,-19.65082 -41.98249,0.79801 -45.59494,24.03984 -2.83138,18.15457 1.26924,39.2019 12.39948,53.8652 5.17459,6.78303 12.59475,12.6683 20.50308,14.0648 z" />
<path
style="fill:#99918d;stroke-width:0.98686367"
id="path6"
d="m 681.7847,364.36694 c -0.0976,75.51103 7.32253,133.26649 -25.1895,140.14927 -26.3611,5.48627 -25.4824,-18.15457 -27.5327,-38.00489 -7.8107,-76.90754 -14.93796,-204.68776 -17.96461,-281.99429 2.14794,-33.21688 23.92026,-53.56595 46.57128,-58.55347 34.95287,-7.68078 72.24895,-5.48627 103.19884,14.0648 61.21634,38.70314 66.09802,109.72541 28.99721,167.68037 -20.30781,31.62087 -81.71942,54.56345 -108.08052,52.56845 z m 7.8107,-169.27638 c -3.80772,0.59851 -10.05627,2.39401 -11.81368,6.18453 -4.19825,8.87778 -3.90535,65.23674 3.41718,88.87758 1.1716,3.89026 3.80771,7.58102 7.61543,8.97753 13.86399,5.18702 26.3611,-12.16955 32.02386,-22.64333 7.90833,-14.56356 10.4468,-31.72062 5.46748,-47.68068 -4.68641,-14.86281 -19.23384,-36.40889 -36.71027,-33.71563 z" />
<path
style="fill:#48b9c7;stroke-width:0.98686367"
id="path8"
d="m 331.67021,232.5967 c -22.94393,49.57594 -61.02107,88.97733 -113.74328,108.42865 15.13323,40.3989 30.55935,80.29905 45.59494,120.5982 8.3965,21.74558 16.40247,45.58592 9.07994,67.03225 -7.61543,21.94508 -37.29608,28.02985 -58.87313,4.68827 C 172.23435,488.2569 31.934707,202.57184 21.585534,181.12551 12.7985,162.67169 -0.38205176,142.92112 0.0084831,121.57454 0.69191909,89.45492 49.313508,56.9363 72.647966,40.27799 105.25763,17.03616 142.94424,1.17585 183.26696,1.0761 c 31.43806,0 58.28733,8.77803 82.10996,24.33909 36.515,23.94009 61.89977,62.14448 71.27261,105.33639 8.20123,38.00489 6.44382,76.90753 -4.97932,101.84512 M 224.76129,178.3325 c -8.20123,-30.42386 -26.75164,-58.45371 -50.08609,-78.10454 -5.07696,-4.28926 -10.54445,-8.27928 -16.89064,-10.47379 -43.7399,-14.6633 -24.79896,60.04973 -17.6717,78.90255 9.86101,26.43384 24.79896,59.85022 44.81388,79.80029 4.39351,4.38902 9.5681,8.27928 15.52376,9.47629 9.07993,1.89525 17.47643,-4.58852 22.06522,-12.16955 3.80771,-6.28427 5.27222,-13.76555 6.15092,-21.04733 1.65977,-15.4613 0.19527,-31.22186 -3.90535,-46.38392 z" />
<path
style="fill:#554741;fill-opacity:1;stroke-width:0.98686367"
id="path10"
d="m 854.72855,612.31791 c -0.19527,43.79041 -26.3611,87.58082 -84.06263,87.58082 -57.70152,0 -84.55079,-43.09216 -84.55079,-87.08207 0,-54.8627 37.39371,-88.77783 85.7224,-88.77783 56.04175,0.49875 83.37919,42.99241 82.89102,88.27908 z m -82.89102,-60.64822 c -36.22211,0 -56.52992,25.73559 -56.72519,60.84772 0,30.52361 16.69536,59.15197 56.04175,59.15197 39.34639,0 54.38198,-31.02237 54.38198,-59.45122 0.48817,-29.52611 -14.84033,-59.85022 -53.69854,-60.54847 z M 878.94171,677.4549 c 0,6.48377 0.19527,-30.82286 0,-36.50863 h 26.55637 l 1.85504,22.84283 c 8.6894,5.08727 22.16285,8.87778 33.19546,8.87778 20.50308,0 41.88486,-5.28677 41.88486,-25.73559 -0.68343,-18.55357 -24.50606,-22.34409 -43.7399,-24.33909 -32.70729,-3.39152 -59.0684,-11.57105 -59.0684,-49.07718 0,-33.41638 37.00318,-50.07469 64.53589,-50.07469 22.16285,-0.49875 37.88188,3.09226 57.89677,19.45132 0,13.4663 -0.1953,21.44633 -0.1953,34.91263 h -25.67761 l -1.65978,-22.14458 c -10.34917,-5.08727 -20.99124,-6.48377 -29.19248,-6.28427 -17.6717,0.1995 -36.51501,8.67828 -36.51501,23.84033 0,14.86281 12.20422,18.95257 33.8789,22.14459 35.34341,4.78801 69.41758,12.96754 69.41758,51.47119 -0.1953,42.09465 -38.85822,53.16694 -72.05369,53.16694 -25.28713,0.0997 -41.10379,-4.68826 -61.1187,-22.54358 z"
inkscape:connector-curvature="0" />
<path
style="fill:#faa41a;stroke-width:0.98686367"
id="path12"
d="m 650.28355,685.53468 c 0,7.68078 -6.05329,13.8653 -13.57108,13.8653 H 479.81509 c -7.5178,0 -13.57109,-6.18452 -13.57109,-13.8653 v -1.197 c 0,-7.68078 6.05329,-13.86531 13.57109,-13.86531 h 156.89738 c 7.51779,0 13.57108,6.18453 13.57108,13.86531 z"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 6.8 KiB

View file

@ -0,0 +1,147 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1500"
height="512"
viewBox="0 0 362 136"
id="svg6473"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="SolusIcon+TextH@big.svg">
<defs
id="defs6475" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.588"
inkscape:cx="750"
inkscape:cy="256"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="px"
inkscape:snap-bbox="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:window-width="1599"
inkscape:window-height="871"
inkscape:window-x="1367"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true"
inkscape:snap-midpoints="true">
<inkscape:grid
type="xygrid"
id="grid7041" />
</sodipodi:namedview>
<metadata
id="metadata6478">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-916.36221)">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:93.32241058px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#4c5263;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="144.13281"
y="1012.5959"
id="text4683"
sodipodi:linespacing="125%"
inkscape:export-xdpi="89.991982"
inkscape:export-ydpi="89.991982"><tspan
sodipodi:role="line"
id="tspan4685"
x="144.13281"
y="1012.5959"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:90px;font-family:Roboto;-inkscape-font-specification:'Roboto Light';fill:#4c5263;fill-opacity:1">Solus</tspan></text>
<g
id="g4802"
transform="translate(872.78571,1728.8657)">
<circle
style="fill:#4c5263;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle4804"
cx="-804.78571"
cy="-744.56592"
r="63.999992"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4c5263;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.31807232;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -827.78894,-812.50349 c -9.63078,31.4588 -23.86409,61.33441 -39.99677,89.93756 l -1,2 1.54157,0.79445 c 1.35333,0.62831 3.13495,1.05082 5.54687,1.5332 2.41193,0.48238 5.37886,0.96316 8.71289,1.43945 6.66808,0.95258 14.7982,1.88366 22.68555,2.70313 15.77471,1.63893 30.58203,2.83398 30.58203,2.83398 l 2.51953,0.20313 -0.19335,-2.52149 c 0,0 -3.90695,-50.82991 -4.63672,-59.18164 l -0.0391,-0.45117 -0.21875,-0.39844 c -4.62375,-7.38388 -22.58726,-38.0225 -25.50375,-38.89216 z m 2.00323,8.93756 c 6.82802,12.01186 12.72677,18.82237 20,32 0.72571,8.39811 3.58298,51.7588 3.89118,55.76515 -2.15756,-0.17632 -13.54785,-1.09258 -27.95899,-2.58984 -7.85641,-0.81626 -15.94849,-1.74293 -22.51953,-2.68165 -3.28551,-0.46935 -6.19216,-0.94351 -8.47656,-1.40039 -1.12711,-0.22542 -1.15187,-0.88079 -1.9361,-1.09327 11.78263,-20.81853 30.49883,-53.46772 37,-80 z"
id="path4806"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccsssccccccccccssscc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.31807232;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -742.14317,-731.41513 c -9.34571,12.60787 -26.60918,19.34605 -47.17544,22.33421 -21.45726,3.11762 -46.33823,2.1913 -68.53889,0.29492 1.06332,1.58839 2.23042,3.12835 3.43158,4.61524 21.3716,1.69438 44.91786,2.38689 65.7284,-0.63672 17.35633,-2.52178 33.03962,-7.63814 43.79912,-17.14649 1.17402,-3.05709 2.13941,-6.44331 2.75523,-9.46116 z"
id="path4808"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccscc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4c5263;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.31807232;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -793.78571,-765.56593 -1.02874,4.49952 c 10.04859,6.72143 19.62481,12.58987 25.84375,18.83008 6.21893,6.24022 9.13316,12.3812 6.76953,20.98047 l -1.10156,4.01367 3.91601,-1.41015 c 12.23548,-4.4024 18.0492,-12.93321 21.60101,-19.91359 l 1,-2 -2,-2 c -5.96313,-6.27973 -15.17389,-10.44201 -25.86077,-14.23095 -10.68689,-3.78893 -22.32622,-7.12618 -29.13923,-8.76905 z m 11.9361,7.9507 c 4.9734,1.36682 10.39142,2.98537 15.75977,4.88867 9.74062,3.45345 18.96263,7.89396 24.17382,12.69336 -2.97972,5.49491 -7.52402,11.83259 -15.36328,15.77148 0.8405,-8.22187 -2.78232,-15.15097 -8.63281,-21.02148 -4.31849,-4.33327 -9.95794,-8.32505 -15.9375,-12.33203 z"
id="path4810"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsccccccsccsccsc" />
<circle
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
r="64.075058"
cy="-744.64099"
cx="-804.71063"
id="circle4812"
style="fill:#500000;fill-opacity:0;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -788.70147,-704.80948 c -21.74774,3.06876 -43.90018,2.30793 -65.72445,0.63872 14.04431,17.91048 38.45322,26.93623 60.99997,22.586 21.76014,-3.74023 40.83336,-19.67568 48.51661,-40.35033 -12.92189,9.16602 -28.18857,14.72923 -43.79213,17.12561 z"
id="path4814"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
inkscape:export-ydpi="90"
inkscape:export-xdpi="90"
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path4816"
d="m -800.78571,-769.56593 c 9.63852,19.85542 9.64724,39.49909 4,54 7.95178,0.0481 20.92769,0.93977 35,-6 -11.56629,-26.40963 -39.00001,-48 -39,-48 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.31807232;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -825.78571,-803.56593 c -6.50145,26.53211 -25.21755,59.18176 -37,80 l 10.41462,2.49562 c 6.57103,0.93871 14.66311,1.86538 22.51953,2.68164 14.41013,1.49715 25.90684,2.6463 28.06585,2.82274 -0.3084,-4.00889 -3.27414,-47.59986 -4,-56 -7.27323,-13.17763 -13.17198,-19.98814 -20,-32 z"
id="path4819"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccsccc" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.31807232;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -781.78571,-757.56593 c 5.9813,4.00802 11.68042,7.66564 16,12 5.85007,5.8701 8.8398,13.77887 8,22 7.83834,-3.93845 13.02025,-10.50552 16,-16 -5.21142,-4.79902 -14.26004,-9.54678 -24,-13 -5.37059,-1.90409 -11.02494,-3.63283 -16,-5 z"
id="path4821"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccsc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 298 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 186 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 172 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

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