lint: Lint

This commit is contained in:
elvis kahoro 2023-06-20 23:39:00 -07:00
parent 6008ba3986
commit cfadbc7dce
79 changed files with 583 additions and 620 deletions

View file

@ -2,8 +2,7 @@
## Discord username (optional) ## Discord username (optional)
If you're in our Discord server, we'd like to give you the Contributor Discord Role, please include If you're in our Discord server, we'd like to give you the Contributor Discord Role, please include your username. Note: It must be labelled like so: username#4747 (make sure to include the #XXXX).
your username. Note: It must be labelled like so: username#4747 (make sure to include the #XXXX).
## Name of theme ## Name of theme
@ -20,5 +19,4 @@ We cannot accept pull request that include custom background images because:
- of licensing restrictions - of licensing restrictions
- we are trying to keep the binary size of the repo as small as possible (just the yaml files) - we are trying to keep the binary size of the repo as small as possible (just the yaml files)
If your theme has an intended custom background image, include a comment in the yaml with a link to If your theme has an intended custom background image, include a comment in the yaml with a link to where people should download it.
where people should download it.

1
.trunk/.gitignore vendored
View file

@ -5,3 +5,4 @@
plugins plugins
user_trunk.yaml user_trunk.yaml
user.yaml user.yaml
shims

@ -1 +1 @@
Subproject commit 301c36ec79a4ceeff958fc4cf3e86bfb1e8f7cd3 Subproject commit 1d895ee788bcf766f38ed1b14e6635bfa8b14146

View file

@ -1,21 +1,22 @@
version: 0.1 version: 0.1
cli: cli:
version: 1.0.1 version: 1.11.0
plugins: plugins:
sources: sources:
- id: trunk - id: trunk
ref: v0.0.5 ref: v0.0.14
uri: https://github.com/trunk-io/plugins uri: https://github.com/trunk-io/plugins
lint: lint:
enabled: enabled:
- isort@5.12.0
- prettier@2.8.8
- black@23.3.0
- gitleaks@8.17.0
- markdownlint@0.35.0
- flake8@6.0.0
- svgo@3.0.2
disabled:
- git-diff-check - git-diff-check
- isort@5.10.1
- prettier@2.7.1
- black@22.10.0
- gitleaks@8.15.0
- markdownlint@0.32.2
- flake8@5.0.4
- svgo@3.0.0
runtimes: runtimes:
enabled: enabled:
- go@1.18.3 - go@1.18.3

View file

@ -1,22 +1,17 @@
# Warp Themes # Warp Themes
This is an open source repository with themes for [Warp](https://www.warp.dev/). We welcome and This is an open source repository with themes for [Warp](https://www.warp.dev/). We welcome and appreciate any contributions! Join our [Discord](https://discord.gg/warpdotdev), we have a channel dedicated to discussing custom themes.
appreciate any contributions! Join our [Discord](https://discord.gg/warpdotdev), we have a channel
dedicated to discussing custom themes.
We have We have [directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes)
[directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes)
## Custom Background Images ## Custom Background Images
Warp supports setting background images, set the path to your background image in your themes Warp supports setting background images, set the path to your background image in your themes `.yaml` file:
`.yaml` file:
- a relative path to `~/.warp/themes` - a relative path to `~/.warp/themes`
- the absolute path to the background image - the absolute path to the background image
If your background image was under `~/.warp/themes/level_one/level_two/background_image.jpg` then If your background image was under `~/.warp/themes/level_one/level_two/background_image.jpg` then the filepath in the yaml should be:
the filepath in the yaml should be:
```yaml ```yaml
background_image: background_image:
@ -25,21 +20,17 @@ background_image:
## Contributing ## Contributing
tldr; After adding your theme run the python script for generating theme previews tldr; After adding your theme run the python script for generating theme previews `./scripts/gen_theme_previews.py` like so:
`./scripts/gen_theme_previews.py` like so:
`python3 ./scripts/gen_theme_previews.py standard` `python3 ./scripts/gen_theme_previews.py standard`
For a newly added theme that's in the standard folder / directory. If you get the error that yaml is For a newly added theme that's in the standard folder / directory. If you get the error that yaml is missing make sure you `pip install PyYAML`
missing make sure you `pip install PyYAML`
There are more There are more [directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes).
[directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes).
## Open source dependencies ## Open source dependencies
We'd like to call out a few of the open source themes and repositories that helped bootstrap the set We'd like to call out a few of the open source themes and repositories that helped bootstrap the set of themes for Warp:
of themes for Warp:
- [iTerm colors pencil](https://github.com/mattly/iterm-colors-pencil) - [iTerm colors pencil](https://github.com/mattly/iterm-colors-pencil)
- [Alacritty-theme](https://github.com/eendroroy/alacritty-theme) - [Alacritty-theme](https://github.com/eendroroy/alacritty-theme)
@ -51,21 +42,14 @@ of themes for Warp:
## What are base16 themes? ## What are base16 themes?
> An architecture for building themes based on carefully chosen syntax highlighting using a base of > An architecture for building themes based on carefully chosen syntax highlighting using a base of sixteen colors. Base16 provides a set of guidelines detailing how to style syntax and how to code a builder for compiling Base16 schemes and templates.
> sixteen colors. Base16 provides a set of guidelines detailing how to style syntax and how to code
> a builder for compiling Base16 schemes and templates.
More on the details and structure here: More on the details and structure here: [https://github.com/chriskempson/base16.](https://github.com/chriskempson/base16)
[https://github.com/chriskempson/base16.](https://github.com/chriskempson/base16)
Base16 themes were sourced and auto-generated based on the Alacritty themes collected by @aarowill. Base16 themes were sourced and auto-generated based on the Alacritty themes collected by @aarowill. Repo: [https://github.com/aarowill/base16-alacritty](https://github.com/aarowill/base16-alacritty)
Repo: [https://github.com/aarowill/base16-alacritty](https://github.com/aarowill/base16-alacritty)
## What are standard themes? ## What are standard themes?
In this directory you'll find themes popular among other tools, including Solarized, Dracula and In this directory you'll find themes popular among other tools, including Solarized, Dracula and others.
others.
Themes in this directory were sourced and auto-generated based on the Alacritty themes collected by Themes in this directory were sourced and auto-generated based on the Alacritty themes collected by @eendroroy. Repo: [https://github.com/eendroroy/alacritty-theme](https://github.com/eendroroy/alacritty-theme)
@eendroroy. Repo:
[https://github.com/eendroroy/alacritty-theme](https://github.com/eendroroy/alacritty-theme)

View file

@ -1,30 +1,21 @@
# Warp Themes # Warp Themes
This is an open-source repository with themes for [Warp](https://www.warp.dev/). We welcome and This is an open-source repository with themes for [Warp](https://www.warp.dev/). We welcome and appreciate any contributions! Join our [Discord](https://discord.gg/warpdotdev), we have a channel dedicated to discussing custom themes.
appreciate any contributions! Join our [Discord](https://discord.gg/warpdotdev), we have a channel
dedicated to discussing custom themes.
We have We have [directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes/custom-themes)
[directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes/custom-themes)
## Create your own theme with Warp-Themes.com ## Create your own theme with Warp-Themes.com
[Warp-Themes.com](https://warp-themes.com/) is a web app built entirely by community member [Warp-Themes.com](https://warp-themes.com/) is a web app built entirely by community member [Torben Haack](https://twitter.com/torben_haack). The tool allows you to visually customize your own terminal theme with a few simple color selections, then download that theme file and have Warp load it into its theme picker. Please see more on how to use the app in our [Warp-Themes blog post](https://www.warp.dev/blog/create-custom-terminal-theme).
[Torben Haack](https://twitter.com/torben_haack). The tool allows you to visually customize your own
terminal theme with a few simple color selections, then download that theme file and have Warp load
it into its theme picker. Please see more on how to use the app in our
[Warp-Themes blog post](https://www.warp.dev/blog/create-custom-terminal-theme).
## Custom Background Images ## Custom Background Images
Warp supports setting background images, set the path to your background image in your themes Warp supports setting background images, set the path to your background image in your themes `.yaml` file:
`.yaml` file:
- A relative path to `~/.warp/themes/background.jpg` - A relative path to `~/.warp/themes/background.jpg`
- The absolute path to the background image `/Users/my_user/Documents/background.jpg` - The absolute path to the background image `/Users/my_user/Documents/background.jpg`
If your background image was under `~/.warp/themes/level_one/level_two/background_image.jpg` then If your background image was under `~/.warp/themes/level_one/level_two/background_image.jpg` then the file path in the yaml should be:
the file path in the yaml should be:
```yaml ```yaml
background_image: background_image:
@ -34,21 +25,17 @@ background_image:
## Contributing ## Contributing
TLDR; After adding your theme run the python script for generating theme previews TLDR; After adding your theme run the python script for generating theme previews `./scripts/gen_theme_previews.py` like so:
`./scripts/gen_theme_previews.py` like so:
`python3 ./scripts/gen_theme_previews.py standard` `python3 ./scripts/gen_theme_previews.py standard`
for a newly added theme that's in the standard folder/directory. If you get the error that yaml is for a newly added theme that's in the standard folder/directory. If you get the error that yaml is missing make sure you `pip install PyYAML`
missing make sure you `pip install PyYAML`
There are more There are more [directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes).
[directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes).
## Open source dependencies ## Open source dependencies
We'd like to call out a few of the open source themes and repositories that helped bootstrap the set We'd like to call out a few of the open source themes and repositories that helped bootstrap the set of themes for Warp:
of themes for Warp:
- [iTerm colors pencil](https://github.com/mattly/iterm-colors-pencil) - [iTerm colors pencil](https://github.com/mattly/iterm-colors-pencil)
- [Alacritty-theme](https://github.com/alacritty/alacritty-theme) - [Alacritty-theme](https://github.com/alacritty/alacritty-theme)
@ -60,24 +47,17 @@ of themes for Warp:
## What are base16 themes? ## What are base16 themes?
> An architecture for building themes based on carefully chosen syntax highlighting using a base of > An architecture for building themes based on carefully chosen syntax highlighting using a base of sixteen colors. Base16 provides a set of guidelines detailing how to style syntax and how to code a builder for compiling Base16 schemes and templates.
> sixteen colors. Base16 provides a set of guidelines detailing how to style syntax and how to code
> a builder for compiling Base16 schemes and templates.
More on the details and structure here: More on the details and structure here: [https://github.com/chriskempson/base16.](https://github.com/chriskempson/base16)
[https://github.com/chriskempson/base16.](https://github.com/chriskempson/base16)
Base16 themes were sourced and auto-generated based on the Alacritty themes collected by @aarowill. Base16 themes were sourced and auto-generated based on the Alacritty themes collected by @aarowill. Repo: [https://github.com/aarowill/base16-alacritty](https://github.com/aarowill/base16-alacritty)
Repo: [https://github.com/aarowill/base16-alacritty](https://github.com/aarowill/base16-alacritty)
## What are standard themes? ## What are standard themes?
In this directory, you'll find themes popular among other tools, including Solarized, Dracula, and In this directory, you'll find themes popular among other tools, including Solarized, Dracula, and others.
others.
Themes in this directory were sourced and auto-generated based on the Alacritty themes collected by Themes in this directory were sourced and auto-generated based on the Alacritty themes collected by @eendroroy. Repo: [https://github.com/eendroroy/alacritty-theme](https://github.com/eendroroy/alacritty-theme)
@eendroroy. Repo:
[https://github.com/eendroroy/alacritty-theme](https://github.com/eendroroy/alacritty-theme)
## What are holiday themes? ## What are holiday themes?

View file

@ -2,17 +2,14 @@ import argparse
import os import os
from pathlib import Path from pathlib import Path
from typing import Any from typing import Any
from typing import Dict
from typing import List
from typing import Optional
import yaml import yaml
def get_all_input_files(input_dir: str) -> List[str]: def get_all_input_files(
""" input_dir: str,
) -> list[str]:
Parameters """Parameters
---------- ----------
input_dir : input_dir :
@ -21,13 +18,13 @@ def get_all_input_files(input_dir: str) -> List[str]:
""" """
filenames: Any = next(os.walk(input_dir), (None, None, []))[2] filenames: Any = next(os.walk(input_dir), (None, None, []))[2]
return list(filter(lambda f: (f.endswith("yaml") or f.endswith("yml")), filenames)) return list(filter(lambda f: (f.endswith(("yaml", "yml"))), filenames))
def ensure_output_dir(output_dir: str) -> None: def ensure_output_dir(
""" output_dir: str,
) -> None:
Parameters """Parameters
---------- ----------
output_dir : output_dir :
""" """
@ -36,14 +33,12 @@ def ensure_output_dir(output_dir: str) -> None:
def add_color_to_dict( def add_color_to_dict(
output: Dict[str, str], output: dict[str, str],
obj: Dict[str, str], obj: dict[str, str],
key: str, key: str,
prefix: Optional[str] = None, prefix: str | None = None,
) -> None: ) -> None:
""" """Parameters
Parameters
---------- ----------
output : output :
obj : obj :
@ -55,10 +50,11 @@ def add_color_to_dict(
output[f"{prefix}{key}"] = obj[key] output[f"{prefix}{key}"] = obj[key]
def get_color_dict(input_dir: str, file_name: str) -> Dict[str, str]: def get_color_dict(
""" input_dir: str,
file_name: str,
Parameters ) -> dict[str, str]:
"""Parameters
---------- ----------
input_dir : input_dir :
file_name : file_name :
@ -67,28 +63,28 @@ def get_color_dict(input_dir: str, file_name: str) -> Dict[str, str]:
------- -------
""" """
file = open(os.path.join(input_dir, file_name), "r") file = open(os.path.join(input_dir, file_name))
loaded_theme = yaml.safe_load(file) loaded_theme = yaml.safe_load(file)
output: Dict[str, str] = {} output: dict[str, str] = {}
add_color_to_dict(output, loaded_theme, "accent") add_color_to_dict(output, loaded_theme, "accent")
add_color_to_dict(output, loaded_theme, "foreground") add_color_to_dict(output, loaded_theme, "foreground")
add_color_to_dict(output, loaded_theme, "background") add_color_to_dict(output, loaded_theme, "background")
normal_colors = loaded_theme["terminal_colors"]["normal"] normal_colors = loaded_theme["terminal_colors"]["normal"]
for color in normal_colors.keys(): for color in normal_colors:
add_color_to_dict(output, normal_colors, color) add_color_to_dict(output, normal_colors, color)
bright_colors = loaded_theme["terminal_colors"]["bright"] bright_colors = loaded_theme["terminal_colors"]["bright"]
for color in bright_colors.keys(): for color in bright_colors:
add_color_to_dict(output, bright_colors, color, "br") add_color_to_dict(output, bright_colors, color, "br")
return output return output
def file_name_to_display(file_name: str) -> str: def file_name_to_display(
""" file_name: str,
) -> str:
Parameters """Parameters
---------- ----------
file_name : file_name :
@ -105,10 +101,11 @@ def file_name_to_display(file_name: str) -> str:
return " ".join(output) return " ".join(output)
def gen_svg_for_theme(color_dict: Dict[str, str], svg_template: str) -> str: def gen_svg_for_theme(
""" color_dict: dict[str, str],
svg_template: str,
Parameters ) -> str:
"""Parameters
---------- ----------
color_dict : color_dict :
svg_template : svg_template :
@ -128,7 +125,7 @@ def gen_svg_for_theme(color_dict: Dict[str, str], svg_template: str) -> str:
def main() -> None: def main() -> None:
""" """ """ """
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description="Generate README.md with embedded SVG previews." description="Generate README.md with embedded SVG previews.",
) )
parser.add_argument( parser.add_argument(
"input_dir", "input_dir",
@ -136,7 +133,10 @@ def main() -> None:
help="Directory from which to read in all Warp themes.", help="Directory from which to read in all Warp themes.",
) )
parser.add_argument( parser.add_argument(
"--output_dir", type=str, help="Where to save README.md", default="" "--output_dir",
type=str,
help="Where to save README.md",
default="",
) )
parser.add_argument( parser.add_argument(
"--svg_path", "--svg_path",
@ -161,7 +161,7 @@ def main() -> None:
filenames = get_all_input_files(input_dir=input_dir) filenames = get_all_input_files(input_dir=input_dir)
markdown = ["|Theme name | Preview|", "| --- | --- |"] markdown = ["|Theme name | Preview|", "| --- | --- |"]
svg = open(args.svg_path, "r").read() svg = open(args.svg_path).read()
svg_dir = os.path.join(output_dir, "previews") svg_dir = os.path.join(output_dir, "previews")
os.makedirs(svg_dir, exist_ok=True) os.makedirs(svg_dir, exist_ok=True)

View file

@ -1,5 +1,5 @@
| Theme name | Preview | | Theme name | Preview |
| --- | --- | | ---------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
| **[Afterglow](afterglow.yaml)**: | <img src='previews/afterglow.yaml.svg' width='300'> | | **[Afterglow](afterglow.yaml)**: | <img src='previews/afterglow.yaml.svg' width='300'> |
| **[Apple Dark](apple_dark.yaml)**: | <img src='previews/apple_dark.yaml.svg' width='300'> | | **[Apple Dark](apple_dark.yaml)**: | <img src='previews/apple_dark.yaml.svg' width='300'> |
| **[Apple Light](apple_light.yaml)**: | <img src='previews/apple_light.yaml.svg' width='300'> | | **[Apple Light](apple_light.yaml)**: | <img src='previews/apple_light.yaml.svg' width='300'> |

View file

@ -1,23 +1,23 @@
accent: '#009688' accent: "#009688"
background: '#2f343f' background: "#2f343f"
details: darker details: darker
foreground: '#d3dae3' foreground: "#d3dae3"
terminal_colors: terminal_colors:
bright: bright:
black: '#2f343f' black: "#2f343f"
red: '#d64937' red: "#d64937"
green: '#86df5d' green: "#86df5d"
yellow: '#fdd75a' yellow: "#fdd75a"
blue: '#0f75bd' blue: "#0f75bd"
magenta: '#9e5e83' magenta: "#9e5e83"
cyan: '#37c3d6' cyan: "#37c3d6"
white: '#f9f9f9' white: "#f9f9f9"
normal: normal:
black: '#262b36' black: "#262b36"
red: '#9c3528' red: "#9c3528"
green: '#61bc3b' green: "#61bc3b"
yellow: '#f3b43a' yellow: "#f3b43a"
blue: '#0d68a8' blue: "#0d68a8"
magenta: '#744560' magenta: "#744560"
cyan: '#288e9c' cyan: "#288e9c"
white: '#a2a2a2' white: "#a2a2a2"

View file

@ -21,4 +21,3 @@ terminal_colors:
magenta: "#FF8CB0" magenta: "#FF8CB0"
cyan: "#4FD3D1" cyan: "#4FD3D1"
white: "#FFFFFF" white: "#FFFFFF"

View file

@ -1,9 +1,9 @@
accent: "#4136d9" accent: "#4136d9"
background: background:
top: '#000000' top: "#000000"
bottom: '#00081e' bottom: "#00081e"
left: '#000000' left: "#000000"
right: '#00081e' right: "#00081e"
details: darker details: darker
foreground: "#80c0ff" foreground: "#80c0ff"
terminal_colors: terminal_colors:

View file

@ -1,10 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000000" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0088ff" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" class="Dynamic" rx="5"/><text x="15" y="15" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#08f" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#ffffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -14,15 +14,15 @@ red
green green
</text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#0088ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#08f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#eeeeee" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#eee" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -38,9 +38,9 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ffffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,10 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000000" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0088ff" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" class="Dynamic" rx="5"/><text x="15" y="15" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#08f" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#ffffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -14,15 +14,15 @@ red
green green
</text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#0088ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#08f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#eeeeee" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#eee" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -38,9 +38,9 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ffffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -30,7 +30,7 @@ black
red red
</text><text x="105" y="85" fill="#34C759" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="85" fill="#34C759" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="85" fill="#FFCC00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="85" fill="#FC0" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="85" fill="#007AFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#007AFF" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -12,7 +12,7 @@ black
red red
</text><text x="105" y="70" fill="#34C759" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#34C759" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="70" fill="#FFCC00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#FC0" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#007AFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#007AFF" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
@ -44,7 +44,7 @@ white
~/project ~/project
</text><text x="65" y="110" fill="#34C759" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#34C759" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(
</text><text x="85" y="110" fill="#FFCC00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="110" fill="#FC0" class="Dynamic" font-family="monospace" font-size=".6em">
main main
</text><text x="113" y="110" fill="#34C759" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="113" y="110" fill="#34C759" class="Dynamic" font-family="monospace" font-size=".6em">
) )

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -34,11 +34,11 @@ green
yellow yellow
</text><text x="170" y="85" fill="#59C2FF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#59C2FF" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="85" fill="#FFEE99" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#FE9" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="85" fill="#95E6CB" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#95E6CB" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#B3B1AD" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#FAE994" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#B3B1AD" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#FAE994" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#5c6166" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#5c6166" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#5c6166" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#5c6166" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#5c6166" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#5c6166" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ea6c6d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#ea6c6d" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -48,4 +48,4 @@ git(
main main
</text><text x="113" y="110" fill="#6cbf43" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="113" y="110" fill="#6cbf43" class="Dynamic" font-family="monospace" font-size=".6em">
) )
</text><path stroke="#ffaa33" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg> </text><path stroke="#fa3" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#95e6cb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#95e6cb" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#cccac2" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#dabafa" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#cccac2" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#dabafa" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
@ -48,4 +48,4 @@ git(
main main
</text><text x="113" y="110" fill="#87d96c" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="113" y="110" fill="#87d96c" class="Dynamic" font-family="monospace" font-size=".6em">
) )
</text><path stroke="#ffcc66" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg> </text><path stroke="#fc6" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,10 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000000" class="Dynamic" rx="5"/><text x="15" y="15" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#00AEEC" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" class="Dynamic" rx="5"/><text x="15" y="15" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#00AEEC" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#E23D3D" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#E23D3D" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#FFFFFF" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#FFF" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#616161" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#616161" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -16,13 +16,13 @@ green
yellow yellow
</text><text x="170" y="70" fill="#00AEEC" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#00AEEC" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#FF6699" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#F69" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#14C4BF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#14C4BF" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#F1F1F1" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#F1F1F1" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#696A66" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#696A66" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -38,9 +38,9 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#4FD3D1" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#4FD3D1" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#FFFFFF" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#FF6699" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#FFF" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#F69" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#2AC864" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#2AC864" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -12,7 +12,7 @@ black
red red
</text><text x="105" y="70" fill="#009F6B" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#009F6B" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="70" fill="#FFD700" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="gold" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#0087BD" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#0087BD" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
@ -36,15 +36,15 @@ yellow
blue blue
</text><text x="195" y="85" fill="#FF1493" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#FF1493" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="85" fill="#00CCCC" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#0CC" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#FFFAFA" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="snow" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#C6C6C4" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#9A4EAE" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#C6C6C4" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#9A4EAE" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#009F6B" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#009F6B" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(
</text><text x="85" y="110" fill="#FFD700" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="110" fill="gold" class="Dynamic" font-family="monospace" font-size=".6em">
main main
</text><text x="113" y="110" fill="#009F6B" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="113" y="110" fill="#009F6B" class="Dynamic" font-family="monospace" font-size=".6em">
) )

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#16a085" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#16a085" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#fcfcfc" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#9b59b6" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fcfcfc" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#9b59b6" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,10 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#0c0c0c" class="Dynamic" rx="5"/><text x="15" y="15" fill="#cccccc" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0037da" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#0c0c0c" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ccc" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0037da" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#c50f1f" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#c50f1f" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#cccccc" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#ccc" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#cccccc" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#cccccc" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#cccccc" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#ccc" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ccc" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ccc" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#0c0c0c" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#0c0c0c" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -20,9 +20,9 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#3a96dd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#3a96dd" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#cccccc" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#ccc" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#cccccc" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#ccc" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#767676" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#767676" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -40,7 +40,7 @@ magenta
cyan cyan
</text><text x="260" y="85" fill="#f2f2f2" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#f2f2f2" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#cccccc" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#881798" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#ccc" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#881798" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#13a10e" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#13a10e" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,14 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000000" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#1190ff" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" class="Dynamic" rx="5"/><text x="15" y="15" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#1190ff" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#ffffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="70" fill="#00e000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#00e000" class="Dynamic" font-family="monospace" font-size=".6em">
green green
@ -16,31 +16,31 @@ green
yellow yellow
</text><text x="170" y="70" fill="#1190ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#1190ff" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#ff00ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#f0f" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#00fdfd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#00fdfd" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#dddddd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#ddd" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#888888" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#888" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="85" fill="#ff8888" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="85" fill="#f88" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="85" fill="#88ff88" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="85" fill="#8f8" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="85" fill="#ffff88" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="85" fill="#ff8" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="85" fill="#88ccff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#8cf" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="85" fill="#ff88ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#f8f" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="85" fill="#88ffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#8ff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ffffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff00ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#f0f" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#00e000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#00e000" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Before After
Before After

View file

@ -1,14 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#122637" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#1460d2" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#122637" class="Dynamic" rx="5"/><text x="15" y="15" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#1460d2" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#ffffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="70" fill="#37dd21" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#37dd21" class="Dynamic" font-family="monospace" font-size=".6em">
green green
@ -18,11 +18,11 @@ yellow
blue blue
</text><text x="195" y="70" fill="#ff005d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#ff005d" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#00bbbb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#0bb" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#bbbbbb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#bbb" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#545454" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#545454" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -32,15 +32,15 @@ red
green green
</text><text x="135" y="85" fill="#ecc809" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="85" fill="#ecc809" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="85" fill="#5555ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#55f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="85" fill="#ff55ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#f5f" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="85" fill="#6ae3f9" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#6ae3f9" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ffffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff005d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff005d" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#37dd21" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#37dd21" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Before After
Before After

View file

@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#9BE2E2" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#9BE2E2" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#d8dee9" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#c5a5c5" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#d8dee9" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#c5a5c5" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,6 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000b1e" class="Dynamic" rx="5"/><text x="15" y="15" fill="#0abdc6" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#123e7c" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000b1e" class="Dynamic" rx="5"/><text x="15" y="15" fill="#0abdc6" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#123e7c" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#0abdc6" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#0abdc6" class="Dynamic" font-family="monospace" font-size=".6em">
file file
@ -8,7 +8,7 @@ file
normal: normal:
</text><text x="55" y="70" fill="#123e7c" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#123e7c" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="70" fill="#d300c4" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#d300c4" class="Dynamic" font-family="monospace" font-size=".6em">
green green
@ -26,13 +26,13 @@ white
bright: bright:
</text><text x="55" y="85" fill="#1c61c2" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#1c61c2" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="85" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="85" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="85" fill="#d300c4" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="85" fill="#d300c4" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="85" fill="#f57800" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="85" fill="#f57800" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="85" fill="#00ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#0f0" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="85" fill="#711c91" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#711c91" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,10 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000000" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0088ff" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" class="Dynamic" rx="5"/><text x="15" y="15" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#08f" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#ffffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -14,15 +14,15 @@ red
green green
</text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#0088ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#08f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#eeeeee" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#eee" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -38,9 +38,9 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ffffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,10 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000000" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0088ff" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" class="Dynamic" rx="5"/><text x="15" y="15" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#08f" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#ffffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -14,15 +14,15 @@ red
green green
</text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#0088ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#08f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#eeeeee" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#eee" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -38,9 +38,9 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ffffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,14 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#282a36" class="Dynamic" rx="5"/><text x="15" y="15" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#caa9fa" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#282a36" class="Dynamic" rx="5"/><text x="15" y="15" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#caa9fa" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ff5555" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#f55" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#f8f8f2" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#f8f8f2" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ff5555" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#f55" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="70" fill="#50fa7b" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#50fa7b" class="Dynamic" font-family="monospace" font-size=".6em">
green green

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#93E0E3" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#93E0E3" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#DCDCCC" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#DC8CC3" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#DCDCCC" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#DC8CC3" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,14 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#282a36" class="Dynamic" rx="5"/><text x="15" y="15" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#bd93f9" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#282a36" class="Dynamic" rx="5"/><text x="15" y="15" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#bd93f9" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ff5555" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#f55" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#f8f8f2" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#f8f8f2" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ff5555" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#f55" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="70" fill="#50fa7b" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#50fa7b" class="Dynamic" font-family="monospace" font-size=".6em">
green green
@ -20,13 +20,13 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#8be9fd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#8be9fd" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#bbbbbb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#bbb" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#555555" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#555" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="85" fill="#ff5555" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="85" fill="#f55" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="85" fill="#50fa7b" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="85" fill="#50fa7b" class="Dynamic" font-family="monospace" font-size=".6em">
green green
@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#8be9fd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#8be9fd" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#f8f8f2" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff79c6" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#f8f8f2" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff79c6" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,10 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000000" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0088ff" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" class="Dynamic" rx="5"/><text x="15" y="15" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#08f" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#ffffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -14,15 +14,15 @@ red
green green
</text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#0088ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#08f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#eeeeee" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#eee" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -38,9 +38,9 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ffffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,10 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000000" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0088ff" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" class="Dynamic" rx="5"/><text x="15" y="15" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#08f" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#ffffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -14,15 +14,15 @@ red
green green
</text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#0088ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#08f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#eeeeee" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#eee" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -38,9 +38,9 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ffffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#BFBFBF" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#BFBFBF" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#BFBFBF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#BFBFBF" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#BFBFBF" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#BFBFBF" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#FF260E" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#FF260E" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -20,7 +20,7 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#00DEEF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#00DEEF" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#BFBFBF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#BFBFBF" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,10 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#272a34" class="Dynamic" rx="5"/><text x="15" y="15" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#277FFF" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#272a34" class="Dynamic" rx="5"/><text x="15" y="15" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#277FFF" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#EC0101" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#EC0101" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#FFFFFF" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#FFF" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#1F2229" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#1F2229" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -20,9 +20,9 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#05A1F7" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#05A1F7" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#1F2229" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#1F2229" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -38,9 +38,9 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#49AEE6" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#49AEE6" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#FFFFFF" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#D71655" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#FFF" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#D71655" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#47D4B9" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#47D4B9" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,4 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#ffffff" class="Dynamic" rx="5"/><text x="15" y="15" fill="#24292f" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#54aeff" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#fff" class="Dynamic" rx="5"/><text x="15" y="15" fill="#24292f" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#54aeff" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ff8182" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#ff8182" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,51 +1,51 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#1e1e1e" class="Dynamic" rx="5"/><text x="15" y="15" fill="#aeafad" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0000ff" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#1e1e1e" class="Dynamic" rx="5"/><text x="15" y="15" fill="#aeafad" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#00f" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#aeafad" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#aeafad" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#aeafad" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#aeafad" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#aeafad" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#aeafad" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#aeafad" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#aeafad" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="70" fill="#00ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#0f0" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="70" fill="#ffff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#ff0" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#0000ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#00f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#ff00ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#f0f" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#00ffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#0ff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#aeafad" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#aeafad" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="85" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="85" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="85" fill="#00ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="85" fill="#0f0" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="85" fill="#ffff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="85" fill="#ff0" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="85" fill="#0000ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#00f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="85" fill="#ff00ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#f0f" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="85" fill="#00ffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#0ff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#aeafad" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff00ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#aeafad" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#f0f" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#00ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#0f0" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(
</text><text x="85" y="110" fill="#ffff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="110" fill="#ff0" class="Dynamic" font-family="monospace" font-size=".6em">
main main
</text><text x="113" y="110" fill="#00ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="113" y="110" fill="#0f0" class="Dynamic" font-family="monospace" font-size=".6em">
) )
</text><path stroke="#6daf22" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg> </text><path stroke="#6daf22" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Before After
Before After

View file

@ -1,51 +1,51 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#444444" class="Dynamic" rx="5"/><text x="15" y="15" fill="#dddddd" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0000ff" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#444" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ddd" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#00f" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#dddddd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#ddd" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#dddddd" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#dddddd" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#dddddd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#ddd" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ddd" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ddd" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="70" fill="#00ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#0f0" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="70" fill="#ffff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#ff0" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#0000ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#00f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#ff00ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#f0f" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#00ffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#0ff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#dddddd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#ddd" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="85" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="85" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="85" fill="#00ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="85" fill="#0f0" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="85" fill="#ffff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="85" fill="#ff0" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="85" fill="#0000ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#00f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="85" fill="#ff00ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#f0f" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="85" fill="#00ffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#0ff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#dddddd" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff00ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#ddd" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#f0f" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#00ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#0f0" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(
</text><text x="85" y="110" fill="#ffff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="110" fill="#ff0" class="Dynamic" font-family="monospace" font-size=".6em">
main main
</text><text x="113" y="110" fill="#00ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="113" y="110" fill="#0f0" class="Dynamic" font-family="monospace" font-size=".6em">
) )
</text><path stroke="#0000ff" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg> </text><path stroke="#00f" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Before After
Before After

View file

@ -1,51 +1,51 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000000" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0066ff" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" class="Dynamic" rx="5"/><text x="15" y="15" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#06f" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#fe0100" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#fe0100" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#ffffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#fe0100" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#fe0100" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="70" fill="#33ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#3f0" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="70" fill="#feff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#feff00" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#0066ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#06f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#cc00ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#c0f" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#00ffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#0ff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#d0d0d0" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#d0d0d0" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#808080" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="gray" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="85" fill="#fe0100" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="85" fill="#fe0100" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="85" fill="#33ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="85" fill="#3f0" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="85" fill="#feff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="85" fill="#feff00" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="85" fill="#0066ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#06f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="85" fill="#cc00ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#c0f" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="85" fill="#00ffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#0ff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ffffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#cc00ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#c0f" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#33ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#3f0" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(
</text><text x="85" y="110" fill="#feff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="110" fill="#feff00" class="Dynamic" font-family="monospace" font-size=".6em">
main main
</text><text x="113" y="110" fill="#33ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="113" y="110" fill="#3f0" class="Dynamic" font-family="monospace" font-size=".6em">
) )
</text><path stroke="#0066ff" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg> </text><path stroke="#06f" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Before After
Before After

View file

@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#99faf2" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#99faf2" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#fffbf6" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#7b5cb0" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fffbf6" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#7b5cb0" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#00988e" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#00988e" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#dedede" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#e1c0fa" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#dedede" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#e1c0fa" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#e3e3e3" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#e3e3e3" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#e3e3e3" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#e3e3e3" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#e3e3e3" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#e3e3e3" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#b21818" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#b21818" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#54ffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#54ffff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#e3e3e3" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#b218b2" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#e3e3e3" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#b218b2" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,51 +1,51 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#333333" class="Dynamic" rx="5"/><text x="15" y="15" fill="#dddddd" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0000bb" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#333" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ddd" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#00b" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#bb0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#b00" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#dddddd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#ddd" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#dddddd" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#dddddd" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#dddddd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#ddd" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ddd" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ddd" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#bb0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#b00" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="70" fill="#00bb00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#0b0" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="70" fill="#bbbb00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#bb0" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#0000bb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#00b" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#bb00bb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#b0b" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#00bbbb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#0bb" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#bbbbbb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#bbb" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#dddddd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#ddd" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="85" fill="#bb0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="85" fill="#b00" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="85" fill="#00bb00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="85" fill="#0b0" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="85" fill="#bbbb00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="85" fill="#bb0" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="85" fill="#0000bb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#00b" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="85" fill="#bb00bb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#b0b" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="85" fill="#00bbbb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#0bb" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#bbbbbb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#bbb" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#dddddd" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#bb00bb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#ddd" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#b0b" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#00bb00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#0b0" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(
</text><text x="85" y="110" fill="#bbbb00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="110" fill="#bb0" class="Dynamic" font-family="monospace" font-size=".6em">
main main
</text><text x="113" y="110" fill="#00bb00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="113" y="110" fill="#0b0" class="Dynamic" font-family="monospace" font-size=".6em">
) )
</text><path stroke="#0000bb" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg> </text><path stroke="#00b" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Before After
Before After

View file

@ -20,7 +20,7 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#8EE478" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#8EE478" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#EEEEEE" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#EEE" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#F8F8F2" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#F8F8F2" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#8EE478" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#8EE478" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#F8F8F2" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#FF73FD" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#F8F8F2" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#FF73FD" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#c4c7d1" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#c4c7d1" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#666666" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#666" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#eb606b" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#eb606b" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -20,7 +20,7 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#aeddff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#aeddff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#35434d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#35434d" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#c4c7d1" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff2f90" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#c4c7d1" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff2f90" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#c4c7d1" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#c4c7d1" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#666666" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#666" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#eb606b" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#eb606b" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -20,7 +20,7 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#aeddff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#aeddff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#35434d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#35434d" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#c4c7d1" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff2f90" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#c4c7d1" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff2f90" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#00ff51" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#00ff51" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#00ff51" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#00ff51" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#00ff51" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#00ff51" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#c91b00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#c91b00" class="Dynamic" font-family="monospace" font-size=".6em">
red red

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#00ff51" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#00ff51" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#00ff51" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#00ff51" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#00ff51" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#00ff51" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#c91b00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#c91b00" class="Dynamic" font-family="monospace" font-size=".6em">
red red

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,4 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#222222" class="Dynamic" rx="5"/><text x="15" y="15" fill="#f7f1ff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#6ab0f3" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#222" class="Dynamic" rx="5"/><text x="15" y="15" fill="#f7f1ff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#6ab0f3" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#fc618d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#fc618d" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#f7f1ff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#f7f1ff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#f7f1ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#f7f1ff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#f7f1ff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#f7f1ff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#222222" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#222" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#fc618d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#fc618d" class="Dynamic" font-family="monospace" font-size=".6em">
red red

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -20,7 +20,7 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#21c7a8" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#21c7a8" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#d6deeb" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#d6deeb" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#7fdbca" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#7fdbca" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#d6deeb" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#c792ea" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#d6deeb" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#c792ea" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,4 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#1b2b34" class="Dynamic" rx="5"/><text x="15" y="15" fill="#d8dee9" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#6699cc" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#1b2b34" class="Dynamic" rx="5"/><text x="15" y="15" fill="#d8dee9" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#69c" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ec5f67" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#ec5f67" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
@ -14,7 +14,7 @@ red
green green
</text><text x="135" y="70" fill="#fac863" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#fac863" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#6699cc" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#69c" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#c594c5" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#c594c5" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
@ -32,7 +32,7 @@ red
green green
</text><text x="135" y="85" fill="#fac863" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="85" fill="#fac863" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="85" fill="#6699cc" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#69c" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="85" fill="#c594c5" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#c594c5" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
@ -48,4 +48,4 @@ git(
main main
</text><text x="113" y="110" fill="#99c794" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="113" y="110" fill="#99c794" class="Dynamic" font-family="monospace" font-size=".6em">
) )
</text><path stroke="#6699cc" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg> </text><path stroke="#69c" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,14 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#191622" class="Dynamic" rx="5"/><text x="15" y="15" fill="#e1e1e6" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#bd93f9" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#191622" class="Dynamic" rx="5"/><text x="15" y="15" fill="#e1e1e6" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#bd93f9" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ff5555" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#f55" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#e1e1e6" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#e1e1e6" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#e1e1e6" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#e1e1e6" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#e1e1e6" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#e1e1e6" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#e1e1e6" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#e1e1e6" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ff5555" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#f55" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="70" fill="#50fa7b" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#50fa7b" class="Dynamic" font-family="monospace" font-size=".6em">
green green

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#56b6c2" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#56b6c2" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#abb2bf" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#c678dd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#abb2bf" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#c678dd" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#a3f7ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#a3f7ff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#d0d0d0" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#c792ea" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#d0d0d0" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#c792ea" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,4 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#eeeeee" class="Dynamic" rx="5"/><text x="15" y="15" fill="#878787" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0087af" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#eee" class="Dynamic" rx="5"/><text x="15" y="15" fill="#878787" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0087af" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#af0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#af0000" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#878787" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#878787" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#878787" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#878787" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#878787" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#878787" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#eeeeee" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#eee" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#af0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#af0000" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -20,7 +20,7 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#005f87" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#005f87" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#444444" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#444" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#878787" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#878787" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,4 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#1B1E28" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ACCDFF" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#DDFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#1B1E28" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ACCDFF" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#DFF" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#679DFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#679DFF" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
@ -14,13 +14,13 @@ red
green green
</text><text x="135" y="70" fill="#FAC2FF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#FAC2FF" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#DDFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#DFF" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#C5E9FF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#C5E9FF" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#DDFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#DFF" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ACCDFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#ACCDFF" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#D7FFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#D7FFFF" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ACCDFF" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#C5E9FF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#ACCDFF" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#C5E9FF" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -26,7 +26,7 @@ white
bright: bright:
</text><text x="55" y="85" fill="#373b41" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#373b41" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="85" fill="#cc6666" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="85" fill="#c66" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="85" fill="#b5bd68" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="85" fill="#b5bd68" class="Dynamic" font-family="monospace" font-size=".6em">
green green

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,12 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#2d2b55" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#7857fe" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#2d2b55" class="Dynamic" rx="5"/><text x="15" y="15" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#7857fe" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ec3a37" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#ec3a37" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#ffffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ec3a37" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#ec3a37" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -20,9 +20,9 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#80fcff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#80fcff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#5c5c61" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#5c5c61" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -38,9 +38,9 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#80fcff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#80fcff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ffffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff2c70" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff2c70" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#3ad900" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#3ad900" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,12 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#191830" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#7857fe" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#191830" class="Dynamic" rx="5"/><text x="15" y="15" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#7857fe" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ec3a37" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#ec3a37" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#ffffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ec3a37" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#ec3a37" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -20,9 +20,9 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#80fcff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#80fcff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#5c5c61" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#5c5c61" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -38,9 +38,9 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#80fcff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#80fcff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ffffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff2c70" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ff2c70" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#3ad900" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#3ad900" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,10 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#1f2732" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#7cafc2" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#1f2732" class="Dynamic" rx="5"/><text x="15" y="15" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#7cafc2" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ab4642" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#ab4642" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#ffffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#181818" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#181818" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -22,7 +22,7 @@ magenta
cyan cyan
</text><text x="260" y="70" fill="#d8d8d8" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#d8d8d8" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#585858" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#585858" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -40,7 +40,7 @@ magenta
cyan cyan
</text><text x="260" y="85" fill="#f8f8f8" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#f8f8f8" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ffffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ba8baf" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ba8baf" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#a1b56c" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#a1b56c" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(
@ -48,4 +48,4 @@ git(
main main
</text><text x="113" y="110" fill="#a1b56c" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="113" y="110" fill="#a1b56c" class="Dynamic" font-family="monospace" font-size=".6em">
) )
</text><path stroke="#ffffff" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg> </text><path stroke="#fff" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#ecf0c1" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ecf0c1" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ecf0c1" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#ecf0c1" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ecf0c1" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ecf0c1" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#e33400" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#e33400" class="Dynamic" font-family="monospace" font-size=".6em">
red red

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -32,7 +32,7 @@ red
green green
</text><text x="135" y="85" fill="#fff0b4" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="85" fill="#fff0b4" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="85" fill="#aaeeff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#aef" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="85" fill="#ffa8df" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#ffa8df" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#c0e9f8" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#c0e9f8" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#f0f0f0" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ffb2fe" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#f0f0f0" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ffb2fe" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,6 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#2e3436" class="Dynamic" rx="5"/><text x="15" y="15" fill="#d3d7cf" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#3465a4" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#2e3436" class="Dynamic" rx="5"/><text x="15" y="15" fill="#d3d7cf" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#3465a4" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#cc0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#c00" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#d3d7cf" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#d3d7cf" class="Dynamic" font-family="monospace" font-size=".6em">
file file
@ -8,7 +8,7 @@ file
normal: normal:
</text><text x="55" y="70" fill="#2e3436" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#2e3436" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#cc0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#c00" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="70" fill="#4e9a06" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#4e9a06" class="Dynamic" font-family="monospace" font-size=".6em">
green green

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,10 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#282828" class="Dynamic" rx="5"/><text x="15" y="15" fill="#eeeeee" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#b3deef" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#282828" class="Dynamic" rx="5"/><text x="15" y="15" fill="#eee" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#b3deef" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#f43753" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#f43753" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#eeeeee" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#eee" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#eeeeee" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#eeeeee" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#eeeeee" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#eee" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#eee" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#eee" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -20,9 +20,9 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#73cef4" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#73cef4" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#eeeeee" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#eee" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#eeeeee" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#eee" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#4c4c4c" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#4c4c4c" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -40,7 +40,7 @@ magenta
cyan cyan
</text><text x="260" y="85" fill="#feffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#feffff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#eeeeee" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#d3b987" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#eee" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#d3b987" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#c9d05c" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#c9d05c" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,18 +1,18 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000000" class="Dynamic" rx="5"/><text x="15" y="15" fill="#b6b6b6" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0000b2" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" class="Dynamic" rx="5"/><text x="15" y="15" fill="#b6b6b6" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0000b2" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#990000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#900" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#b6b6b6" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#b6b6b6" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#b6b6b6" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#b6b6b6" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#b6b6b6" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#b6b6b6" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#b6b6b6" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#b6b6b6" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#990000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#900" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="70" fill="#00a600" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#00a600" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="70" fill="#999900" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#990" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#0000b2" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#0000b2" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
@ -24,7 +24,7 @@ cyan
white white
</text><text x="15" y="85" fill="#b6b6b6" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#b6b6b6" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#666666" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#666" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="85" fill="#e50000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="85" fill="#e50000" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -32,7 +32,7 @@ red
green green
</text><text x="135" y="85" fill="#e5e500" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="85" fill="#e5e500" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="85" fill="#0000ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#00f" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="85" fill="#e500e5" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#e500e5" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
@ -44,7 +44,7 @@ white
~/project ~/project
</text><text x="65" y="110" fill="#00a600" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#00a600" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(
</text><text x="85" y="110" fill="#999900" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="110" fill="#990" class="Dynamic" font-family="monospace" font-size=".6em">
main main
</text><text x="113" y="110" fill="#00a600" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="113" y="110" fill="#00a600" class="Dynamic" font-family="monospace" font-size=".6em">
) )

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,6 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#1d1f21" class="Dynamic" rx="5"/><text x="15" y="15" fill="#c5c8c6" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#81a2be" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#1d1f21" class="Dynamic" rx="5"/><text x="15" y="15" fill="#c5c8c6" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#81a2be" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#cc6666" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#c66" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#c5c8c6" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#c5c8c6" class="Dynamic" font-family="monospace" font-size=".6em">
file file
@ -8,7 +8,7 @@ file
normal: normal:
</text><text x="55" y="70" fill="#1d1f21" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#1d1f21" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#cc6666" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#c66" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="70" fill="#b5bd68" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="70" fill="#b5bd68" class="Dynamic" font-family="monospace" font-size=".6em">
green green
@ -24,7 +24,7 @@ cyan
white white
</text><text x="15" y="85" fill="#c5c8c6" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#c5c8c6" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#666666" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#666" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="85" fill="#ff3334" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="85" fill="#ff3334" class="Dynamic" font-family="monospace" font-size=".6em">
red red

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,4 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000000" class="Dynamic" rx="5"/><text x="15" y="15" fill="#eaeaea" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#7aa6da" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" class="Dynamic" rx="5"/><text x="15" y="15" fill="#eaeaea" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#7aa6da" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#d54e53" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#d54e53" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#eaeaea" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#eaeaea" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#eaeaea" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#eaeaea" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#eaeaea" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#eaeaea" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#d54e53" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#d54e53" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -24,7 +24,7 @@ cyan
white white
</text><text x="15" y="85" fill="#eaeaea" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#eaeaea" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#666666" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#666" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="85" fill="#ff3334" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="85" fill="#ff3334" class="Dynamic" font-family="monospace" font-size=".6em">
red red

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,4 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000" class="Dynamic" rx="5"/><text x="15" y="15" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#6394bf" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" class="Dynamic" rx="5"/><text x="15" y="15" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#6394bf" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#cb7676" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#cb7676" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#dbd7ca" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#dbd7ca" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#777777" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#777" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#cb7676" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#cb7676" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -20,7 +20,7 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#5eaab5" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#5eaab5" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#dbd7ca" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#dbd7ca" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#777777" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#777" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#cb7676" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#cb7676" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -20,7 +20,7 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#5eaab5" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#5eaab5" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#dbd7ca" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#dbd7ca" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#777777" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#777" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#cb7676" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#cb7676" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -20,7 +20,7 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#5eaab5" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#5eaab5" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,4 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#ffffff" class="Dynamic" rx="5"/><text x="15" y="15" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#296aa3" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#fff" class="Dynamic" rx="5"/><text x="15" y="15" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#296aa3" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ab5959" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#ab5959" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#393a34" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#393a34" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#aaaaaa" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#aaa" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ab5959" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#ab5959" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -20,7 +20,7 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#2993a3" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#2993a3" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#dddddd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#ddd" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#393a34" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#393a34" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#aaaaaa" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#aaa" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ab5959" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#ab5959" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -20,7 +20,7 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#2993a3" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#2993a3" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#dddddd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#ddd" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,12 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#1a1a1a" class="Dynamic" rx="5"/><text x="15" y="15" fill="#eeffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#82aaff" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#1a1a1a" class="Dynamic" rx="5"/><text x="15" y="15" fill="#eff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#82aaff" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#ff5370" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#ff5370" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#eeffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#eff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#eeffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#eeffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#eeffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#eff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#eff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#eff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#ff5370" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#ff5370" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -20,9 +20,9 @@ blue
magenta magenta
</text><text x="235" y="70" fill="#89ddff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#89ddff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#eeffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#eff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#4a4a4a" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#4a4a4a" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -38,9 +38,9 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#89ddff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#89ddff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#eeffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#c792ea" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#eff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#c792ea" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#c3e88d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#c3e88d" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,10 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#202831" class="Dynamic" rx="5"/><text x="15" y="15" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#8DC3F9" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#202831" class="Dynamic" rx="5"/><text x="15" y="15" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#8DC3F9" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#E84606" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#E84606" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#FFFFFF" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#FFF" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -16,13 +16,13 @@ green
yellow yellow
</text><text x="170" y="70" fill="#8DC3F9" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#8DC3F9" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#33CCCC" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#3CC" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="70" fill="#33CCCC" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="70" fill="#3CC" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="70" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
black black
@ -34,13 +34,13 @@ green
yellow yellow
</text><text x="170" y="85" fill="#8DC3F9" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#8DC3F9" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="85" fill="#33CCCC" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#3CC" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="85" fill="#33CCCC" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#3CC" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#FFFFFF" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#FFF" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#FFFFFF" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#33CCCC" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#FFF" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#3CC" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#3D8BEB" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#3D8BEB" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -6,7 +6,7 @@ executable
file file
</text><path stroke="#e5e1d8" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#e5e1d8" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#e5e1d8" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#e5e1d8" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#e5e1d8" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#e5e1d8" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#f7786d" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#f7786d" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -38,7 +38,7 @@ blue
magenta magenta
</text><text x="235" y="85" fill="#c2fefa" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#c2fefa" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#e5e1d8" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ef88ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#e5e1d8" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#ef88ff" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

@ -1,12 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" fill="#000000" class="Dynamic" rx="5"/><text x="15" y="15" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#0000ee" class="Dynamic" font-family="monospace" font-size=".6em"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 145"><rect width="300" height="145" class="Dynamic" rx="5"/><text x="15" y="15" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">ls</text><text x="15" y="30" fill="#00e" class="Dynamic" font-family="monospace" font-size=".6em">
dir dir
</text><text x="65" y="30" fill="#cd0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="30" fill="#cd0000" class="Dynamic" font-family="monospace" font-size=".6em">
executable executable
</text><text x="175" y="30" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="175" y="30" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
file file
</text><path stroke="#ffffff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 40h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="55" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">bash ~/colors.sh</text><text x="15" y="70" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
normal: normal:
</text><text x="55" y="70" fill="#000000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="70" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="70" fill="#cd0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="70" fill="#cd0000" class="Dynamic" font-family="monospace" font-size=".6em">
red red
@ -14,7 +14,7 @@ red
green green
</text><text x="135" y="70" fill="#cdcd00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="70" fill="#cdcd00" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="70" fill="#0000ee" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="70" fill="#00e" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="70" fill="#cd00cd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="70" fill="#cd00cd" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
@ -22,25 +22,25 @@ magenta
cyan cyan
</text><text x="260" y="70" fill="#e5e5e5" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="70" fill="#e5e5e5" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><text x="15" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="15" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
bright: bright:
</text><text x="55" y="85" fill="#7f7f7f" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="55" y="85" fill="#7f7f7f" class="Dynamic" font-family="monospace" font-size=".6em">
black black
</text><text x="85" y="85" fill="#ff0000" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="85" y="85" fill="red" class="Dynamic" font-family="monospace" font-size=".6em">
red red
</text><text x="105" y="85" fill="#00ff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="105" y="85" fill="#0f0" class="Dynamic" font-family="monospace" font-size=".6em">
green green
</text><text x="135" y="85" fill="#ffff00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="135" y="85" fill="#ff0" class="Dynamic" font-family="monospace" font-size=".6em">
yellow yellow
</text><text x="170" y="85" fill="#5c5cff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="170" y="85" fill="#5c5cff" class="Dynamic" font-family="monospace" font-size=".6em">
blue blue
</text><text x="195" y="85" fill="#ff00ff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="195" y="85" fill="#f0f" class="Dynamic" font-family="monospace" font-size=".6em">
magenta magenta
</text><text x="235" y="85" fill="#00ffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="235" y="85" fill="#0ff" class="Dynamic" font-family="monospace" font-size=".6em">
cyan cyan
</text><text x="260" y="85" fill="#ffffff" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="260" y="85" fill="#fff" class="Dynamic" font-family="monospace" font-size=".6em">
white white
</text><path stroke="#ffffff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#cd00cd" class="Dynamic" font-family="monospace" font-size=".6em"> </text><path stroke="#fff" d="M0 95h300" class="Dynamic" style="stroke-width:.2"/><text x="15" y="110" fill="#cd00cd" class="Dynamic" font-family="monospace" font-size=".6em">
~/project ~/project
</text><text x="65" y="110" fill="#00cd00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="65" y="110" fill="#00cd00" class="Dynamic" font-family="monospace" font-size=".6em">
git( git(
@ -48,4 +48,4 @@ git(
main main
</text><text x="113" y="110" fill="#00cd00" class="Dynamic" font-family="monospace" font-size=".6em"> </text><text x="113" y="110" fill="#00cd00" class="Dynamic" font-family="monospace" font-size=".6em">
) )
</text><path stroke="#0000ee" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg> </text><path stroke="#00e" d="M15 120v10" class="Dynamic" style="stroke-width:2"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Before After
Before After