lint: Lint
6
.github/PULL_REQUEST_TEMPLATE.md
vendored
|
@ -2,8 +2,7 @@
|
|||
|
||||
## Discord username (optional)
|
||||
|
||||
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).
|
||||
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).
|
||||
|
||||
## Name of theme
|
||||
|
||||
|
@ -20,5 +19,4 @@ We cannot accept pull request that include custom background images because:
|
|||
- of licensing restrictions
|
||||
- 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
|
||||
where people should download it.
|
||||
If your theme has an intended custom background image, include a comment in the yaml with a link to where people should download it.
|
||||
|
|
1
.trunk/.gitignore
vendored
|
@ -5,3 +5,4 @@
|
|||
plugins
|
||||
user_trunk.yaml
|
||||
user.yaml
|
||||
shims
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 301c36ec79a4ceeff958fc4cf3e86bfb1e8f7cd3
|
||||
Subproject commit 1d895ee788bcf766f38ed1b14e6635bfa8b14146
|
|
@ -1,21 +1,22 @@
|
|||
version: 0.1
|
||||
cli:
|
||||
version: 1.0.1
|
||||
version: 1.11.0
|
||||
plugins:
|
||||
sources:
|
||||
- id: trunk
|
||||
ref: v0.0.5
|
||||
ref: v0.0.14
|
||||
uri: https://github.com/trunk-io/plugins
|
||||
lint:
|
||||
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
|
||||
- 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:
|
||||
enabled:
|
||||
- go@1.18.3
|
||||
|
|
|
@ -1,22 +1,17 @@
|
|||
# Warp Themes
|
||||
|
||||
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.
|
||||
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.
|
||||
|
||||
We have
|
||||
[directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes)
|
||||
We have [directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes)
|
||||
|
||||
## Custom Background Images
|
||||
|
||||
Warp supports setting background images, set the path to your background image in your themes
|
||||
`.yaml` file:
|
||||
Warp supports setting background images, set the path to your background image in your themes `.yaml` file:
|
||||
|
||||
- a relative path to `~/.warp/themes`
|
||||
- the absolute path to the background image
|
||||
|
||||
If your background image was under `~/.warp/themes/level_one/level_two/background_image.jpg` then
|
||||
the filepath in the yaml should be:
|
||||
If your background image was under `~/.warp/themes/level_one/level_two/background_image.jpg` then the filepath in the yaml should be:
|
||||
|
||||
```yaml
|
||||
background_image:
|
||||
|
@ -25,21 +20,17 @@ background_image:
|
|||
|
||||
## Contributing
|
||||
|
||||
tldr; After adding your theme run the python script for generating theme previews
|
||||
`./scripts/gen_theme_previews.py` like so:
|
||||
tldr; After adding your theme run the python script for generating theme previews `./scripts/gen_theme_previews.py` like so:
|
||||
|
||||
`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
|
||||
missing make sure you `pip install PyYAML`
|
||||
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`
|
||||
|
||||
There are more
|
||||
[directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes).
|
||||
There are more [directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes).
|
||||
|
||||
## Open source dependencies
|
||||
|
||||
We'd like to call out a few of the open source themes and repositories that helped bootstrap the set
|
||||
of themes for Warp:
|
||||
We'd like to call out a few of the open source themes and repositories that helped bootstrap the set of themes for Warp:
|
||||
|
||||
- [iTerm colors pencil](https://github.com/mattly/iterm-colors-pencil)
|
||||
- [Alacritty-theme](https://github.com/eendroroy/alacritty-theme)
|
||||
|
@ -51,21 +42,14 @@ of themes for Warp:
|
|||
|
||||
## What are base16 themes?
|
||||
|
||||
> 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.
|
||||
> 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.
|
||||
|
||||
More on the details and structure here:
|
||||
[https://github.com/chriskempson/base16.](https://github.com/chriskempson/base16)
|
||||
More on the details and structure here: [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.
|
||||
Repo: [https://github.com/aarowill/base16-alacritty](https://github.com/aarowill/base16-alacritty)
|
||||
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)
|
||||
|
||||
## What are standard themes?
|
||||
|
||||
In this directory you'll find themes popular among other tools, including Solarized, Dracula and
|
||||
others.
|
||||
In this directory you'll find themes popular among other tools, including Solarized, Dracula and others.
|
||||
|
||||
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)
|
||||
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)
|
||||
|
|
48
README.md
|
@ -1,30 +1,21 @@
|
|||
# Warp Themes
|
||||
|
||||
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.
|
||||
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.
|
||||
|
||||
We have
|
||||
[directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes/custom-themes)
|
||||
We have [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
|
||||
|
||||
[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).
|
||||
[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).
|
||||
|
||||
## Custom Background Images
|
||||
|
||||
Warp supports setting background images, set the path to your background image in your themes
|
||||
`.yaml` file:
|
||||
Warp supports setting background images, set the path to your background image in your themes `.yaml` file:
|
||||
|
||||
- A relative path to `~/.warp/themes/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
|
||||
the file path in the yaml should be:
|
||||
If your background image was under `~/.warp/themes/level_one/level_two/background_image.jpg` then the file path in the yaml should be:
|
||||
|
||||
```yaml
|
||||
background_image:
|
||||
|
@ -34,21 +25,17 @@ background_image:
|
|||
|
||||
## Contributing
|
||||
|
||||
TLDR; After adding your theme run the python script for generating theme previews
|
||||
`./scripts/gen_theme_previews.py` like so:
|
||||
TLDR; After adding your theme run the python script for generating theme previews `./scripts/gen_theme_previews.py` like so:
|
||||
|
||||
`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
|
||||
missing make sure you `pip install PyYAML`
|
||||
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`
|
||||
|
||||
There are more
|
||||
[directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes).
|
||||
There are more [directions on how to use this repository in our documentation.](https://docs.warp.dev/features/themes).
|
||||
|
||||
## Open source dependencies
|
||||
|
||||
We'd like to call out a few of the open source themes and repositories that helped bootstrap the set
|
||||
of themes for Warp:
|
||||
We'd like to call out a few of the open source themes and repositories that helped bootstrap the set of themes for Warp:
|
||||
|
||||
- [iTerm colors pencil](https://github.com/mattly/iterm-colors-pencil)
|
||||
- [Alacritty-theme](https://github.com/alacritty/alacritty-theme)
|
||||
|
@ -60,24 +47,17 @@ of themes for Warp:
|
|||
|
||||
## What are base16 themes?
|
||||
|
||||
> 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.
|
||||
> 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.
|
||||
|
||||
More on the details and structure here:
|
||||
[https://github.com/chriskempson/base16.](https://github.com/chriskempson/base16)
|
||||
More on the details and structure here: [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.
|
||||
Repo: [https://github.com/aarowill/base16-alacritty](https://github.com/aarowill/base16-alacritty)
|
||||
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)
|
||||
|
||||
## What are standard themes?
|
||||
|
||||
In this directory, you'll find themes popular among other tools, including Solarized, Dracula, and
|
||||
others.
|
||||
In this directory, you'll find themes popular among other tools, including Solarized, Dracula, and others.
|
||||
|
||||
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)
|
||||
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)
|
||||
|
||||
## What are holiday themes?
|
||||
|
||||
|
|
|
@ -2,17 +2,14 @@ import argparse
|
|||
import os
|
||||
from pathlib import Path
|
||||
from typing import Any
|
||||
from typing import Dict
|
||||
from typing import List
|
||||
from typing import Optional
|
||||
|
||||
import yaml
|
||||
|
||||
|
||||
def get_all_input_files(input_dir: str) -> List[str]:
|
||||
"""
|
||||
|
||||
Parameters
|
||||
def get_all_input_files(
|
||||
input_dir: str,
|
||||
) -> list[str]:
|
||||
"""Parameters
|
||||
----------
|
||||
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]
|
||||
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:
|
||||
"""
|
||||
|
||||
Parameters
|
||||
def ensure_output_dir(
|
||||
output_dir: str,
|
||||
) -> None:
|
||||
"""Parameters
|
||||
----------
|
||||
output_dir :
|
||||
"""
|
||||
|
@ -36,14 +33,12 @@ def ensure_output_dir(output_dir: str) -> None:
|
|||
|
||||
|
||||
def add_color_to_dict(
|
||||
output: Dict[str, str],
|
||||
obj: Dict[str, str],
|
||||
output: dict[str, str],
|
||||
obj: dict[str, str],
|
||||
key: str,
|
||||
prefix: Optional[str] = None,
|
||||
prefix: str | None = None,
|
||||
) -> None:
|
||||
"""
|
||||
|
||||
Parameters
|
||||
"""Parameters
|
||||
----------
|
||||
output :
|
||||
obj :
|
||||
|
@ -55,10 +50,11 @@ def add_color_to_dict(
|
|||
output[f"{prefix}{key}"] = obj[key]
|
||||
|
||||
|
||||
def get_color_dict(input_dir: str, file_name: str) -> Dict[str, str]:
|
||||
"""
|
||||
|
||||
Parameters
|
||||
def get_color_dict(
|
||||
input_dir: str,
|
||||
file_name: str,
|
||||
) -> dict[str, str]:
|
||||
"""Parameters
|
||||
----------
|
||||
input_dir :
|
||||
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)
|
||||
output: Dict[str, str] = {}
|
||||
output: dict[str, str] = {}
|
||||
add_color_to_dict(output, loaded_theme, "accent")
|
||||
add_color_to_dict(output, loaded_theme, "foreground")
|
||||
add_color_to_dict(output, loaded_theme, "background")
|
||||
|
||||
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)
|
||||
|
||||
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")
|
||||
|
||||
return output
|
||||
|
||||
|
||||
def file_name_to_display(file_name: str) -> str:
|
||||
"""
|
||||
|
||||
Parameters
|
||||
def file_name_to_display(
|
||||
file_name: str,
|
||||
) -> str:
|
||||
"""Parameters
|
||||
----------
|
||||
file_name :
|
||||
|
||||
|
@ -105,10 +101,11 @@ def file_name_to_display(file_name: str) -> str:
|
|||
return " ".join(output)
|
||||
|
||||
|
||||
def gen_svg_for_theme(color_dict: Dict[str, str], svg_template: str) -> str:
|
||||
"""
|
||||
|
||||
Parameters
|
||||
def gen_svg_for_theme(
|
||||
color_dict: dict[str, str],
|
||||
svg_template: str,
|
||||
) -> str:
|
||||
"""Parameters
|
||||
----------
|
||||
color_dict :
|
||||
svg_template :
|
||||
|
@ -128,7 +125,7 @@ def gen_svg_for_theme(color_dict: Dict[str, str], svg_template: str) -> str:
|
|||
def main() -> None:
|
||||
""" """
|
||||
parser = argparse.ArgumentParser(
|
||||
description="Generate README.md with embedded SVG previews."
|
||||
description="Generate README.md with embedded SVG previews.",
|
||||
)
|
||||
parser.add_argument(
|
||||
"input_dir",
|
||||
|
@ -136,7 +133,10 @@ def main() -> None:
|
|||
help="Directory from which to read in all Warp themes.",
|
||||
)
|
||||
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(
|
||||
"--svg_path",
|
||||
|
@ -161,7 +161,7 @@ def main() -> None:
|
|||
|
||||
filenames = get_all_input_files(input_dir=input_dir)
|
||||
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")
|
||||
os.makedirs(svg_dir, exist_ok=True)
|
||||
|
||||
|
|
|
@ -1,111 +1,111 @@
|
|||
|Theme name | Preview|
|
||||
| --- | --- |
|
||||
|**[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 Light](apple_light.yaml)**:|<img src='previews/apple_light.yaml.svg' width='300'>|
|
||||
|**[Arc Dark](arc_dark.yaml)**:|<img src='previews/arc_dark.yaml.svg' width='300'>|
|
||||
|**[Argonaut](argonaut.yaml)**:|<img src='previews/argonaut.yaml.svg' width='300'>|
|
||||
|**[Avirage](avirage.yaml)**:|<img src='previews/avirage.yaml.svg' width='300'>|
|
||||
|**[Ayu Dark](ayu_dark.yaml)**:|<img src='previews/ayu_dark.yaml.svg' width='300'>|
|
||||
|**[Ayu Light](ayu_light.yaml)**:|<img src='previews/ayu_light.yaml.svg' width='300'>|
|
||||
|**[Ayu Mirage](ayu_mirage.yaml)**:|<img src='previews/ayu_mirage.yaml.svg' width='300'>|
|
||||
|**[Bilibili Dark](bilibili_dark.yaml)**:|<img src='previews/bilibili_dark.yaml.svg' width='300'>|
|
||||
|**[Blood Moon](blood_moon.yaml)**:|<img src='previews/blood_moon.yaml.svg' width='300'>|
|
||||
|**[Blue Monday](blue_monday.yaml)**:|<img src='previews/blue_monday.yaml.svg' width='300'>|
|
||||
|**[Breeze](breeze.yaml)**:|<img src='previews/breeze.yaml.svg' width='300'>|
|
||||
|**[Campbell](campbell.yaml)**:|<img src='previews/campbell.yaml.svg' width='300'>|
|
||||
|**[Catppuccin](catppuccin.yaml)**:|<img src='previews/catppuccin.yaml.svg' width='300'>|
|
||||
|**[Challenger Deep](challenger_deep.yaml)**:|<img src='previews/challenger_deep.yaml.svg' width='300'>|
|
||||
|**[Cherry](cherry.yaml)**:|<img src='previews/cherry.yaml.svg' width='300'>|
|
||||
|**[Classic Vivid](classic_vivid.yaml)**:|<img src='previews/classic_vivid.yaml.svg' width='300'>|
|
||||
|**[Cobalt 2](cobalt_2.yaml)**:|<img src='previews/cobalt_2.yaml.svg' width='300'>|
|
||||
|**[Cobalt Next](cobalt_next.yaml)**:|<img src='previews/cobalt_next.yaml.svg' width='300'>|
|
||||
|**[Cyberpunk-neon](cyberpunk-neon.yaml)**:|<img src='previews/cyberpunk-neon.yaml.svg' width='300'>|
|
||||
|**[Cyberpunk-night City](cyberpunk-night_city.yaml)**:|<img src='previews/cyberpunk-night_city.yaml.svg' width='300'>|
|
||||
|**[Cyberpunk-v](cyberpunk-v.yaml)**:|<img src='previews/cyberpunk-v.yaml.svg' width='300'>|
|
||||
|**[Daobeam](daobeam.yaml)**:|<img src='previews/daobeam.yaml.svg' width='300'>|
|
||||
|**[Darcula](darcula.yaml)**:|<img src='previews/darcula.yaml.svg' width='300'>|
|
||||
|**[Dark Pastels](dark_pastels.yaml)**:|<img src='previews/dark_pastels.yaml.svg' width='300'>|
|
||||
|**[Default Dark](default_dark.yaml)**:|<img src='previews/default_dark.yaml.svg' width='300'>|
|
||||
|**[Dracula](dracula.yaml)**:|<img src='previews/dracula.yaml.svg' width='300'>|
|
||||
|**[Edgerunners-david](edgerunners-david.yaml)**:|<img src='previews/edgerunners-david.yaml.svg' width='300'>|
|
||||
|**[Edgerunners-lucy And David Jump](edgerunners-lucy_and_david_jump.yaml)**:|<img src='previews/edgerunners-lucy_and_david_jump.yaml.svg' width='300'>|
|
||||
|**[Everforest Hard](everforest_hard.yaml)**:|<img src='previews/everforest_hard.yaml.svg' width='300'>|
|
||||
|**[Everforest Light](everforest_light.yaml)**:|<img src='previews/everforest_light.yaml.svg' width='300'>|
|
||||
|**[Fairyfloss](fairyfloss.yaml)**:|<img src='previews/fairyfloss.yaml.svg' width='300'>|
|
||||
|**[Faithful Argonaut](faithful_argonaut.yaml)**:|<img src='previews/faithful_argonaut.yaml.svg' width='300'>|
|
||||
|**[Falcon](falcon.yaml)**:|<img src='previews/falcon.yaml.svg' width='300'>|
|
||||
|**[Flat Remix](flat_remix.yaml)**:|<img src='previews/flat_remix.yaml.svg' width='300'>|
|
||||
|**[Github Dark](github_dark.yaml)**:|<img src='previews/github_dark.yaml.svg' width='300'>|
|
||||
|**[Github Dark Dimmed](github_dark_dimmed.yaml)**:|<img src='previews/github_dark_dimmed.yaml.svg' width='300'>|
|
||||
|**[Github Light](github_light.yaml)**:|<img src='previews/github_light.yaml.svg' width='300'>|
|
||||
|**[Gotham](gotham.yaml)**:|<img src='previews/gotham.yaml.svg' width='300'>|
|
||||
|**[Green Geeko](green_geeko.yaml)**:|<img src='previews/green_geeko.yaml.svg' width='300'>|
|
||||
|**[Gruvbox Dark](gruvbox_dark.yaml)**:|<img src='previews/gruvbox_dark.yaml.svg' width='300'>|
|
||||
|**[Gruvbox Light](gruvbox_light.yaml)**:|<img src='previews/gruvbox_light.yaml.svg' width='300'>|
|
||||
|**[Gruvbox Material](gruvbox_material.yaml)**:|<img src='previews/gruvbox_material.yaml.svg' width='300'>|
|
||||
|**[Halcyon](halcyon.yaml)**:|<img src='previews/halcyon.yaml.svg' width='300'>|
|
||||
|**[High Contrast](high_contrast.yaml)**:|<img src='previews/high_contrast.yaml.svg' width='300'>|
|
||||
|**[Horizon Dark](horizon_dark.yaml)**:|<img src='previews/horizon_dark.yaml.svg' width='300'>|
|
||||
|**[Hyper](hyper.yaml)**:|<img src='previews/hyper.yaml.svg' width='300'>|
|
||||
|**[Iceberg](iceberg.yaml)**:|<img src='previews/iceberg.yaml.svg' width='300'>|
|
||||
|**[Iterm](iterm.yaml)**:|<img src='previews/iterm.yaml.svg' width='300'>|
|
||||
|**[Jellybeans](jellybeans.yaml)**:|<img src='previews/jellybeans.yaml.svg' width='300'>|
|
||||
|**[Konsole Linux](konsole_linux.yaml)**:|<img src='previews/konsole_linux.yaml.svg' width='300'>|
|
||||
|**[Laser](laser.yaml)**:|<img src='previews/laser.yaml.svg' width='300'>|
|
||||
|**[Low Contrast](low_contrast.yaml)**:|<img src='previews/low_contrast.yaml.svg' width='300'>|
|
||||
|**[Lucario](lucario.yaml)**:|<img src='previews/lucario.yaml.svg' width='300'>|
|
||||
|**[Material Theme](material_theme.yaml)**:|<img src='previews/material_theme.yaml.svg' width='300'>|
|
||||
|**[Material Theme Mod](material_theme_mod.yaml)**:|<img src='previews/material_theme_mod.yaml.svg' width='300'>|
|
||||
|**[Matrix Dracula](matrix_dracula.yaml)**:|<img src='previews/matrix_dracula.yaml.svg' width='300'>|
|
||||
|**[Matrix Dracula Switcheroo](matrix_dracula_switcheroo.yaml)**:|<img src='previews/matrix_dracula_switcheroo.yaml.svg' width='300'>|
|
||||
|**[Monokai Pro](monokai_pro.yaml)**:|<img src='previews/monokai_pro.yaml.svg' width='300'>|
|
||||
|**[Monokai Pro Classic](monokai_pro_classic.yaml)**:|<img src='previews/monokai_pro_classic.yaml.svg' width='300'>|
|
||||
|**[Monokai Pro Machine](monokai_pro_machine.yaml)**:|<img src='previews/monokai_pro_machine.yaml.svg' width='300'>|
|
||||
|**[Monokai Pro Octagon](monokai_pro_octagon.yml)**:|<img src='previews/monokai_pro_octagon.yml.svg' width='300'>|
|
||||
|**[Monokai Pro Ristretto](monokai_pro_ristretto.yml)**:|<img src='previews/monokai_pro_ristretto.yml.svg' width='300'>|
|
||||
|**[Monokai Pro Spectrum](monokai_pro_spectrum.yml)**:|<img src='previews/monokai_pro_spectrum.yml.svg' width='300'>|
|
||||
|**[Night Owl](night_owl.yaml)**:|<img src='previews/night_owl.yaml.svg' width='300'>|
|
||||
|**[Nord](nord.yaml)**:|<img src='previews/nord.yaml.svg' width='300'>|
|
||||
|**[Oceanic Next](oceanic_next.yaml)**:|<img src='previews/oceanic_next.yaml.svg' width='300'>|
|
||||
|**[Omni](omni.yaml)**:|<img src='previews/omni.yaml.svg' width='300'>|
|
||||
|**[One Dark](one_dark.yaml)**:|<img src='previews/one_dark.yaml.svg' width='300'>|
|
||||
|**[One Monokai](one_monokai.yaml)**:|<img src='previews/one_monokai.yaml.svg' width='300'>|
|
||||
|**[Palenight](palenight.yaml)**:|<img src='previews/palenight.yaml.svg' width='300'>|
|
||||
|**[Panda Syntax](panda_syntax.yaml)**:|<img src='previews/panda_syntax.yaml.svg' width='300'>|
|
||||
|**[Papercolor Light](papercolor_light.yaml)**:|<img src='previews/papercolor_light.yaml.svg' width='300'>|
|
||||
|**[Pencil Dark](pencil_dark.yaml)**:|<img src='previews/pencil_dark.yaml.svg' width='300'>|
|
||||
|**[Pencil Light](pencil_light.yaml)**:|<img src='previews/pencil_light.yaml.svg' width='300'>|
|
||||
|**[Plastic](plastic.yaml)**:|<img src='previews/plastic.yaml.svg' width='300'>|
|
||||
|**[Poimandres](poimandres.yaml)**:|<img src='previews/poimandres.yaml.svg' width='300'>|
|
||||
|**[Remedy Dark](remedy_dark.yaml)**:|<img src='previews/remedy_dark.yaml.svg' width='300'>|
|
||||
|**[Seashells](seashells.yaml)**:|<img src='previews/seashells.yaml.svg' width='300'>|
|
||||
|**[Shades Of Purple](shades_of_purple.yaml)**:|<img src='previews/shades_of_purple.yaml.svg' width='300'>|
|
||||
|**[Shades Of Purple Super Dark](shades_of_purple_super_dark.yaml)**:|<img src='previews/shades_of_purple_super_dark.yaml.svg' width='300'>|
|
||||
|**[Simply Dark](simply_dark.yaml)**:|<img src='previews/simply_dark.yaml.svg' width='300'>|
|
||||
|**[Snazzy](snazzy.yaml)**:|<img src='previews/snazzy.yaml.svg' width='300'>|
|
||||
|**[Snazzy Blue](snazzy_blue.yaml)**:|<img src='previews/snazzy_blue.yaml.svg' width='300'>|
|
||||
|**[Snazzy Green](snazzy_green.yaml)**:|<img src='previews/snazzy_green.yaml.svg' width='300'>|
|
||||
|**[Snazzy Red](snazzy_red.yaml)**:|<img src='previews/snazzy_red.yaml.svg' width='300'>|
|
||||
|**[Solarized Dark](solarized_dark.yaml)**:|<img src='previews/solarized_dark.yaml.svg' width='300'>|
|
||||
|**[Solarized Light](solarized_light.yaml)**:|<img src='previews/solarized_light.yaml.svg' width='300'>|
|
||||
|**[Spaceduck](spaceduck.yaml)**:|<img src='previews/spaceduck.yaml.svg' width='300'>|
|
||||
|**[Synthwave 84](synthwave_84.yaml)**:|<img src='previews/synthwave_84.yaml.svg' width='300'>|
|
||||
|**[Taerminal](taerminal.yaml)**:|<img src='previews/taerminal.yaml.svg' width='300'>|
|
||||
|**[Tango Dark](tango_dark.yaml)**:|<img src='previews/tango_dark.yaml.svg' width='300'>|
|
||||
|**[Tender](tender.yaml)**:|<img src='previews/tender.yaml.svg' width='300'>|
|
||||
|**[Terminal App](terminal_app.yaml)**:|<img src='previews/terminal_app.yaml.svg' width='300'>|
|
||||
|**[Thelovelace](thelovelace.yaml)**:|<img src='previews/thelovelace.yaml.svg' width='300'>|
|
||||
|**[Tokyo Night](tokyo_night.yaml)**:|<img src='previews/tokyo_night.yaml.svg' width='300'>|
|
||||
|**[Tokyo Night Storm](tokyo_night_storm.yaml)**:|<img src='previews/tokyo_night_storm.yaml.svg' width='300'>|
|
||||
|**[Tomorrow Night](tomorrow_night.yaml)**:|<img src='previews/tomorrow_night.yaml.svg' width='300'>|
|
||||
|**[Tomorrow Night Bright](tomorrow_night_bright.yaml)**:|<img src='previews/tomorrow_night_bright.yaml.svg' width='300'>|
|
||||
|**[Vitesse Black](vitesse_black.yaml)**:|<img src='previews/vitesse_black.yaml.svg' width='300'>|
|
||||
|**[Vitesse Dark](vitesse_dark.yaml)**:|<img src='previews/vitesse_dark.yaml.svg' width='300'>|
|
||||
|**[Vitesse Dark Soft](vitesse_dark_soft.yaml)**:|<img src='previews/vitesse_dark_soft.yaml.svg' width='300'>|
|
||||
|**[Vitesse Light](vitesse_light.yaml)**:|<img src='previews/vitesse_light.yaml.svg' width='300'>|
|
||||
|**[Vitesse Light Soft](vitesse_light_soft.yaml)**:|<img src='previews/vitesse_light_soft.yaml.svg' width='300'>|
|
||||
|**[Vscode Default Dark Material](vscode_default_dark_material.yml)**:|<img src='previews/vscode_default_dark_material.yml.svg' width='300'>|
|
||||
|**[Vuesion](vuesion.yaml)**:|<img src='previews/vuesion.yaml.svg' width='300'>|
|
||||
|**[Wombat](wombat.yaml)**:|<img src='previews/wombat.yaml.svg' width='300'>|
|
||||
|**[Xterm](xterm.yaml)**:|<img src='previews/xterm.yaml.svg' width='300'>|
|
||||
| Theme name | Preview |
|
||||
| ---------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
|
||||
| **[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 Light](apple_light.yaml)**: | <img src='previews/apple_light.yaml.svg' width='300'> |
|
||||
| **[Arc Dark](arc_dark.yaml)**: | <img src='previews/arc_dark.yaml.svg' width='300'> |
|
||||
| **[Argonaut](argonaut.yaml)**: | <img src='previews/argonaut.yaml.svg' width='300'> |
|
||||
| **[Avirage](avirage.yaml)**: | <img src='previews/avirage.yaml.svg' width='300'> |
|
||||
| **[Ayu Dark](ayu_dark.yaml)**: | <img src='previews/ayu_dark.yaml.svg' width='300'> |
|
||||
| **[Ayu Light](ayu_light.yaml)**: | <img src='previews/ayu_light.yaml.svg' width='300'> |
|
||||
| **[Ayu Mirage](ayu_mirage.yaml)**: | <img src='previews/ayu_mirage.yaml.svg' width='300'> |
|
||||
| **[Bilibili Dark](bilibili_dark.yaml)**: | <img src='previews/bilibili_dark.yaml.svg' width='300'> |
|
||||
| **[Blood Moon](blood_moon.yaml)**: | <img src='previews/blood_moon.yaml.svg' width='300'> |
|
||||
| **[Blue Monday](blue_monday.yaml)**: | <img src='previews/blue_monday.yaml.svg' width='300'> |
|
||||
| **[Breeze](breeze.yaml)**: | <img src='previews/breeze.yaml.svg' width='300'> |
|
||||
| **[Campbell](campbell.yaml)**: | <img src='previews/campbell.yaml.svg' width='300'> |
|
||||
| **[Catppuccin](catppuccin.yaml)**: | <img src='previews/catppuccin.yaml.svg' width='300'> |
|
||||
| **[Challenger Deep](challenger_deep.yaml)**: | <img src='previews/challenger_deep.yaml.svg' width='300'> |
|
||||
| **[Cherry](cherry.yaml)**: | <img src='previews/cherry.yaml.svg' width='300'> |
|
||||
| **[Classic Vivid](classic_vivid.yaml)**: | <img src='previews/classic_vivid.yaml.svg' width='300'> |
|
||||
| **[Cobalt 2](cobalt_2.yaml)**: | <img src='previews/cobalt_2.yaml.svg' width='300'> |
|
||||
| **[Cobalt Next](cobalt_next.yaml)**: | <img src='previews/cobalt_next.yaml.svg' width='300'> |
|
||||
| **[Cyberpunk-neon](cyberpunk-neon.yaml)**: | <img src='previews/cyberpunk-neon.yaml.svg' width='300'> |
|
||||
| **[Cyberpunk-night City](cyberpunk-night_city.yaml)**: | <img src='previews/cyberpunk-night_city.yaml.svg' width='300'> |
|
||||
| **[Cyberpunk-v](cyberpunk-v.yaml)**: | <img src='previews/cyberpunk-v.yaml.svg' width='300'> |
|
||||
| **[Daobeam](daobeam.yaml)**: | <img src='previews/daobeam.yaml.svg' width='300'> |
|
||||
| **[Darcula](darcula.yaml)**: | <img src='previews/darcula.yaml.svg' width='300'> |
|
||||
| **[Dark Pastels](dark_pastels.yaml)**: | <img src='previews/dark_pastels.yaml.svg' width='300'> |
|
||||
| **[Default Dark](default_dark.yaml)**: | <img src='previews/default_dark.yaml.svg' width='300'> |
|
||||
| **[Dracula](dracula.yaml)**: | <img src='previews/dracula.yaml.svg' width='300'> |
|
||||
| **[Edgerunners-david](edgerunners-david.yaml)**: | <img src='previews/edgerunners-david.yaml.svg' width='300'> |
|
||||
| **[Edgerunners-lucy And David Jump](edgerunners-lucy_and_david_jump.yaml)**: | <img src='previews/edgerunners-lucy_and_david_jump.yaml.svg' width='300'> |
|
||||
| **[Everforest Hard](everforest_hard.yaml)**: | <img src='previews/everforest_hard.yaml.svg' width='300'> |
|
||||
| **[Everforest Light](everforest_light.yaml)**: | <img src='previews/everforest_light.yaml.svg' width='300'> |
|
||||
| **[Fairyfloss](fairyfloss.yaml)**: | <img src='previews/fairyfloss.yaml.svg' width='300'> |
|
||||
| **[Faithful Argonaut](faithful_argonaut.yaml)**: | <img src='previews/faithful_argonaut.yaml.svg' width='300'> |
|
||||
| **[Falcon](falcon.yaml)**: | <img src='previews/falcon.yaml.svg' width='300'> |
|
||||
| **[Flat Remix](flat_remix.yaml)**: | <img src='previews/flat_remix.yaml.svg' width='300'> |
|
||||
| **[Github Dark](github_dark.yaml)**: | <img src='previews/github_dark.yaml.svg' width='300'> |
|
||||
| **[Github Dark Dimmed](github_dark_dimmed.yaml)**: | <img src='previews/github_dark_dimmed.yaml.svg' width='300'> |
|
||||
| **[Github Light](github_light.yaml)**: | <img src='previews/github_light.yaml.svg' width='300'> |
|
||||
| **[Gotham](gotham.yaml)**: | <img src='previews/gotham.yaml.svg' width='300'> |
|
||||
| **[Green Geeko](green_geeko.yaml)**: | <img src='previews/green_geeko.yaml.svg' width='300'> |
|
||||
| **[Gruvbox Dark](gruvbox_dark.yaml)**: | <img src='previews/gruvbox_dark.yaml.svg' width='300'> |
|
||||
| **[Gruvbox Light](gruvbox_light.yaml)**: | <img src='previews/gruvbox_light.yaml.svg' width='300'> |
|
||||
| **[Gruvbox Material](gruvbox_material.yaml)**: | <img src='previews/gruvbox_material.yaml.svg' width='300'> |
|
||||
| **[Halcyon](halcyon.yaml)**: | <img src='previews/halcyon.yaml.svg' width='300'> |
|
||||
| **[High Contrast](high_contrast.yaml)**: | <img src='previews/high_contrast.yaml.svg' width='300'> |
|
||||
| **[Horizon Dark](horizon_dark.yaml)**: | <img src='previews/horizon_dark.yaml.svg' width='300'> |
|
||||
| **[Hyper](hyper.yaml)**: | <img src='previews/hyper.yaml.svg' width='300'> |
|
||||
| **[Iceberg](iceberg.yaml)**: | <img src='previews/iceberg.yaml.svg' width='300'> |
|
||||
| **[Iterm](iterm.yaml)**: | <img src='previews/iterm.yaml.svg' width='300'> |
|
||||
| **[Jellybeans](jellybeans.yaml)**: | <img src='previews/jellybeans.yaml.svg' width='300'> |
|
||||
| **[Konsole Linux](konsole_linux.yaml)**: | <img src='previews/konsole_linux.yaml.svg' width='300'> |
|
||||
| **[Laser](laser.yaml)**: | <img src='previews/laser.yaml.svg' width='300'> |
|
||||
| **[Low Contrast](low_contrast.yaml)**: | <img src='previews/low_contrast.yaml.svg' width='300'> |
|
||||
| **[Lucario](lucario.yaml)**: | <img src='previews/lucario.yaml.svg' width='300'> |
|
||||
| **[Material Theme](material_theme.yaml)**: | <img src='previews/material_theme.yaml.svg' width='300'> |
|
||||
| **[Material Theme Mod](material_theme_mod.yaml)**: | <img src='previews/material_theme_mod.yaml.svg' width='300'> |
|
||||
| **[Matrix Dracula](matrix_dracula.yaml)**: | <img src='previews/matrix_dracula.yaml.svg' width='300'> |
|
||||
| **[Matrix Dracula Switcheroo](matrix_dracula_switcheroo.yaml)**: | <img src='previews/matrix_dracula_switcheroo.yaml.svg' width='300'> |
|
||||
| **[Monokai Pro](monokai_pro.yaml)**: | <img src='previews/monokai_pro.yaml.svg' width='300'> |
|
||||
| **[Monokai Pro Classic](monokai_pro_classic.yaml)**: | <img src='previews/monokai_pro_classic.yaml.svg' width='300'> |
|
||||
| **[Monokai Pro Machine](monokai_pro_machine.yaml)**: | <img src='previews/monokai_pro_machine.yaml.svg' width='300'> |
|
||||
| **[Monokai Pro Octagon](monokai_pro_octagon.yml)**: | <img src='previews/monokai_pro_octagon.yml.svg' width='300'> |
|
||||
| **[Monokai Pro Ristretto](monokai_pro_ristretto.yml)**: | <img src='previews/monokai_pro_ristretto.yml.svg' width='300'> |
|
||||
| **[Monokai Pro Spectrum](monokai_pro_spectrum.yml)**: | <img src='previews/monokai_pro_spectrum.yml.svg' width='300'> |
|
||||
| **[Night Owl](night_owl.yaml)**: | <img src='previews/night_owl.yaml.svg' width='300'> |
|
||||
| **[Nord](nord.yaml)**: | <img src='previews/nord.yaml.svg' width='300'> |
|
||||
| **[Oceanic Next](oceanic_next.yaml)**: | <img src='previews/oceanic_next.yaml.svg' width='300'> |
|
||||
| **[Omni](omni.yaml)**: | <img src='previews/omni.yaml.svg' width='300'> |
|
||||
| **[One Dark](one_dark.yaml)**: | <img src='previews/one_dark.yaml.svg' width='300'> |
|
||||
| **[One Monokai](one_monokai.yaml)**: | <img src='previews/one_monokai.yaml.svg' width='300'> |
|
||||
| **[Palenight](palenight.yaml)**: | <img src='previews/palenight.yaml.svg' width='300'> |
|
||||
| **[Panda Syntax](panda_syntax.yaml)**: | <img src='previews/panda_syntax.yaml.svg' width='300'> |
|
||||
| **[Papercolor Light](papercolor_light.yaml)**: | <img src='previews/papercolor_light.yaml.svg' width='300'> |
|
||||
| **[Pencil Dark](pencil_dark.yaml)**: | <img src='previews/pencil_dark.yaml.svg' width='300'> |
|
||||
| **[Pencil Light](pencil_light.yaml)**: | <img src='previews/pencil_light.yaml.svg' width='300'> |
|
||||
| **[Plastic](plastic.yaml)**: | <img src='previews/plastic.yaml.svg' width='300'> |
|
||||
| **[Poimandres](poimandres.yaml)**: | <img src='previews/poimandres.yaml.svg' width='300'> |
|
||||
| **[Remedy Dark](remedy_dark.yaml)**: | <img src='previews/remedy_dark.yaml.svg' width='300'> |
|
||||
| **[Seashells](seashells.yaml)**: | <img src='previews/seashells.yaml.svg' width='300'> |
|
||||
| **[Shades Of Purple](shades_of_purple.yaml)**: | <img src='previews/shades_of_purple.yaml.svg' width='300'> |
|
||||
| **[Shades Of Purple Super Dark](shades_of_purple_super_dark.yaml)**: | <img src='previews/shades_of_purple_super_dark.yaml.svg' width='300'> |
|
||||
| **[Simply Dark](simply_dark.yaml)**: | <img src='previews/simply_dark.yaml.svg' width='300'> |
|
||||
| **[Snazzy](snazzy.yaml)**: | <img src='previews/snazzy.yaml.svg' width='300'> |
|
||||
| **[Snazzy Blue](snazzy_blue.yaml)**: | <img src='previews/snazzy_blue.yaml.svg' width='300'> |
|
||||
| **[Snazzy Green](snazzy_green.yaml)**: | <img src='previews/snazzy_green.yaml.svg' width='300'> |
|
||||
| **[Snazzy Red](snazzy_red.yaml)**: | <img src='previews/snazzy_red.yaml.svg' width='300'> |
|
||||
| **[Solarized Dark](solarized_dark.yaml)**: | <img src='previews/solarized_dark.yaml.svg' width='300'> |
|
||||
| **[Solarized Light](solarized_light.yaml)**: | <img src='previews/solarized_light.yaml.svg' width='300'> |
|
||||
| **[Spaceduck](spaceduck.yaml)**: | <img src='previews/spaceduck.yaml.svg' width='300'> |
|
||||
| **[Synthwave 84](synthwave_84.yaml)**: | <img src='previews/synthwave_84.yaml.svg' width='300'> |
|
||||
| **[Taerminal](taerminal.yaml)**: | <img src='previews/taerminal.yaml.svg' width='300'> |
|
||||
| **[Tango Dark](tango_dark.yaml)**: | <img src='previews/tango_dark.yaml.svg' width='300'> |
|
||||
| **[Tender](tender.yaml)**: | <img src='previews/tender.yaml.svg' width='300'> |
|
||||
| **[Terminal App](terminal_app.yaml)**: | <img src='previews/terminal_app.yaml.svg' width='300'> |
|
||||
| **[Thelovelace](thelovelace.yaml)**: | <img src='previews/thelovelace.yaml.svg' width='300'> |
|
||||
| **[Tokyo Night](tokyo_night.yaml)**: | <img src='previews/tokyo_night.yaml.svg' width='300'> |
|
||||
| **[Tokyo Night Storm](tokyo_night_storm.yaml)**: | <img src='previews/tokyo_night_storm.yaml.svg' width='300'> |
|
||||
| **[Tomorrow Night](tomorrow_night.yaml)**: | <img src='previews/tomorrow_night.yaml.svg' width='300'> |
|
||||
| **[Tomorrow Night Bright](tomorrow_night_bright.yaml)**: | <img src='previews/tomorrow_night_bright.yaml.svg' width='300'> |
|
||||
| **[Vitesse Black](vitesse_black.yaml)**: | <img src='previews/vitesse_black.yaml.svg' width='300'> |
|
||||
| **[Vitesse Dark](vitesse_dark.yaml)**: | <img src='previews/vitesse_dark.yaml.svg' width='300'> |
|
||||
| **[Vitesse Dark Soft](vitesse_dark_soft.yaml)**: | <img src='previews/vitesse_dark_soft.yaml.svg' width='300'> |
|
||||
| **[Vitesse Light](vitesse_light.yaml)**: | <img src='previews/vitesse_light.yaml.svg' width='300'> |
|
||||
| **[Vitesse Light Soft](vitesse_light_soft.yaml)**: | <img src='previews/vitesse_light_soft.yaml.svg' width='300'> |
|
||||
| **[Vscode Default Dark Material](vscode_default_dark_material.yml)**: | <img src='previews/vscode_default_dark_material.yml.svg' width='300'> |
|
||||
| **[Vuesion](vuesion.yaml)**: | <img src='previews/vuesion.yaml.svg' width='300'> |
|
||||
| **[Wombat](wombat.yaml)**: | <img src='previews/wombat.yaml.svg' width='300'> |
|
||||
| **[Xterm](xterm.yaml)**: | <img src='previews/xterm.yaml.svg' width='300'> |
|
||||
|
|
|
@ -1,23 +1,23 @@
|
|||
accent: '#009688'
|
||||
background: '#2f343f'
|
||||
accent: "#009688"
|
||||
background: "#2f343f"
|
||||
details: darker
|
||||
foreground: '#d3dae3'
|
||||
foreground: "#d3dae3"
|
||||
terminal_colors:
|
||||
bright:
|
||||
black: '#2f343f'
|
||||
red: '#d64937'
|
||||
green: '#86df5d'
|
||||
yellow: '#fdd75a'
|
||||
blue: '#0f75bd'
|
||||
magenta: '#9e5e83'
|
||||
cyan: '#37c3d6'
|
||||
white: '#f9f9f9'
|
||||
black: "#2f343f"
|
||||
red: "#d64937"
|
||||
green: "#86df5d"
|
||||
yellow: "#fdd75a"
|
||||
blue: "#0f75bd"
|
||||
magenta: "#9e5e83"
|
||||
cyan: "#37c3d6"
|
||||
white: "#f9f9f9"
|
||||
normal:
|
||||
black: '#262b36'
|
||||
red: '#9c3528'
|
||||
green: '#61bc3b'
|
||||
yellow: '#f3b43a'
|
||||
blue: '#0d68a8'
|
||||
magenta: '#744560'
|
||||
cyan: '#288e9c'
|
||||
white: '#a2a2a2'
|
||||
black: "#262b36"
|
||||
red: "#9c3528"
|
||||
green: "#61bc3b"
|
||||
yellow: "#f3b43a"
|
||||
blue: "#0d68a8"
|
||||
magenta: "#744560"
|
||||
cyan: "#288e9c"
|
||||
white: "#a2a2a2"
|
||||
|
|
|
@ -21,4 +21,3 @@ terminal_colors:
|
|||
magenta: "#FF8CB0"
|
||||
cyan: "#4FD3D1"
|
||||
white: "#FFFFFF"
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
accent: "#4136d9"
|
||||
background:
|
||||
top: '#000000'
|
||||
bottom: '#00081e'
|
||||
left: '#000000'
|
||||
right: '#00081e'
|
||||
top: "#000000"
|
||||
bottom: "#00081e"
|
||||
left: "#000000"
|
||||
right: "#00081e"
|
||||
details: darker
|
||||
foreground: "#80c0ff"
|
||||
terminal_colors:
|
||||
|
|
|
@ -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
|
||||
</text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -14,15 +14,15 @@ red
|
|||
green
|
||||
</text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
magenta
|
||||
</text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -38,9 +38,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -14,15 +14,15 @@ red
|
|||
green
|
||||
</text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
magenta
|
||||
</text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -38,9 +38,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -30,7 +30,7 @@ black
|
|||
red
|
||||
</text><text x="105" y="85" fill="#34C759" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="170" y="85" fill="#007AFF" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
blue
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -12,7 +12,7 @@ black
|
|||
red
|
||||
</text><text x="105" y="70" fill="#34C759" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="170" y="70" fill="#007AFF" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
blue
|
||||
|
@ -44,7 +44,7 @@ white
|
|||
~/project
|
||||
</text><text x="65" y="110" fill="#34C759" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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 |
|
@ -34,11 +34,11 @@ green
|
|||
yellow
|
||||
</text><text x="170" y="85" fill="#59C2FF" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="235" y="85" fill="#95E6CB" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#ea6c6d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -48,4 +48,4 @@ git(
|
|||
main
|
||||
</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 |
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#95e6cb" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
@ -48,4 +48,4 @@ git(
|
|||
main
|
||||
</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 |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#E23D3D" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="70" fill="#616161" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -16,13 +16,13 @@ green
|
|||
yellow
|
||||
</text><text x="170" y="70" fill="#00AEEC" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="235" y="70" fill="#14C4BF" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
cyan
|
||||
</text><text x="260" y="70" fill="#F1F1F1" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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:
|
||||
</text><text x="55" y="85" fill="#696A66" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -38,9 +38,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#4FD3D1" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#2AC864" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -12,7 +12,7 @@ black
|
|||
red
|
||||
</text><text x="105" y="70" fill="#009F6B" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="170" y="70" fill="#0087BD" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
blue
|
||||
|
@ -36,15 +36,15 @@ yellow
|
|||
blue
|
||||
</text><text x="195" y="85" fill="#FF1493" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#009F6B" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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 |
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#16a085" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#c50f1f" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="70" fill="#0c0c0c" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -20,9 +20,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#3a96dd" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#767676" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -40,7 +40,7 @@ magenta
|
|||
cyan
|
||||
</text><text x="260" y="85" fill="#f2f2f2" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="65" y="110" fill="#13a10e" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</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
|
||||
</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
|
||||
</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:
|
||||
</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
|
||||
</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
|
||||
</text><text x="105" y="70" fill="#00e000" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
green
|
||||
|
@ -16,31 +16,31 @@ green
|
|||
yellow
|
||||
</text><text x="170" y="70" fill="#1190ff" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="235" y="70" fill="#00fdfd" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#00e000" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.1 KiB |
|
@ -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
|
||||
</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
|
||||
</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
|
||||
</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:
|
||||
</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
|
||||
</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
|
||||
</text><text x="105" y="70" fill="#37dd21" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
green
|
||||
|
@ -18,11 +18,11 @@ yellow
|
|||
blue
|
||||
</text><text x="195" y="70" fill="#ff005d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#545454" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -32,15 +32,15 @@ red
|
|||
green
|
||||
</text><text x="135" y="85" fill="#ecc809" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="235" y="85" fill="#6ae3f9" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#37dd21" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.1 KiB |
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#9BE2E2" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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">
|
||||
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
|
||||
</text><text x="175" y="30" fill="#0abdc6" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
file
|
||||
|
@ -8,7 +8,7 @@ file
|
|||
normal:
|
||||
</text><text x="55" y="70" fill="#123e7c" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="105" y="70" fill="#d300c4" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
green
|
||||
|
@ -26,13 +26,13 @@ white
|
|||
bright:
|
||||
</text><text x="55" y="85" fill="#1c61c2" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="105" y="85" fill="#d300c4" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
green
|
||||
</text><text x="135" y="85" fill="#f57800" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="195" y="85" fill="#711c91" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
magenta
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -14,15 +14,15 @@ red
|
|||
green
|
||||
</text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
magenta
|
||||
</text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -38,9 +38,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -14,15 +14,15 @@ red
|
|||
green
|
||||
</text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
magenta
|
||||
</text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -38,9 +38,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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">
|
||||
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
|
||||
</text><text x="175" y="30" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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">
|
||||
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
|
||||
</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
|
||||
</text><text x="105" y="70" fill="#50fa7b" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
green
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#93E0E3" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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">
|
||||
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
|
||||
</text><text x="175" y="30" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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">
|
||||
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
|
||||
</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
|
||||
</text><text x="105" y="70" fill="#50fa7b" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
green
|
||||
|
@ -20,13 +20,13 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#8be9fd" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="15" y="85" fill="#f8f8f2" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="105" y="85" fill="#50fa7b" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
green
|
||||
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#8be9fd" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -14,15 +14,15 @@ red
|
|||
green
|
||||
</text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
magenta
|
||||
</text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -38,9 +38,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#f52e4f" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -14,15 +14,15 @@ red
|
|||
green
|
||||
</text><text x="135" y="70" fill="#ffdb00" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="195" y="70" fill="#ff8ffd" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
magenta
|
||||
</text><text x="235" y="70" fill="#259386" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#1d1d1d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -38,9 +38,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#a16946" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#56c662" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#FF260E" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -20,7 +20,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#00DEEF" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="15" y="85" fill="#BFBFBF" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
bright:
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#EC0101" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="70" fill="#1F2229" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -20,9 +20,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#05A1F7" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#1F2229" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -38,9 +38,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#49AEE6" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#47D4B9" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#ff8182" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
executable
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</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
|
||||
</text><text x="175" y="30" fill="#aeafad" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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">
|
||||
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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</text><text x="15" y="85" fill="#aeafad" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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(
|
||||
</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
|
||||
</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>
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.1 KiB |
|
@ -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
|
||||
</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
|
||||
</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
|
||||
</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:
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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:
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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(
|
||||
</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
|
||||
</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 |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#fe0100" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</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
|
||||
</text><text x="85" y="70" fill="#fe0100" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="135" y="70" fill="#feff00" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</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
|
||||
</text><text x="260" y="70" fill="#d0d0d0" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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:
|
||||
</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
|
||||
</text><text x="85" y="85" fill="#fe0100" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="135" y="85" fill="#feff00" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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(
|
||||
</text><text x="85" y="110" fill="#feff00" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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 |
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#99faf2" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#00988e" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#b21818" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#54ffff" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</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
|
||||
</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
|
||||
</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:
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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:
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</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(
|
||||
</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
|
||||
</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 |
|
@ -20,7 +20,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#8EE478" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="15" y="85" fill="#F8F8F2" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
bright:
|
||||
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#8EE478" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#eb606b" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -20,7 +20,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#aeddff" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="15" y="85" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
bright:
|
||||
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#35434d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#eb606b" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -20,7 +20,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#aeddff" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="15" y="85" fill="#c4c7d1" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
bright:
|
||||
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#35434d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#c91b00" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#c91b00" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#fc618d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
executable
|
||||
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#fc618d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -20,7 +20,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#21c7a8" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="15" y="85" fill="#d6deeb" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
bright:
|
||||
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#7fdbca" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#ec5f67" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
executable
|
||||
|
@ -14,7 +14,7 @@ red
|
|||
green
|
||||
</text><text x="135" y="70" fill="#fac863" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="195" y="70" fill="#c594c5" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
magenta
|
||||
|
@ -32,7 +32,7 @@ red
|
|||
green
|
||||
</text><text x="135" y="85" fill="#fac863" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="195" y="85" fill="#c594c5" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
magenta
|
||||
|
@ -48,4 +48,4 @@ git(
|
|||
main
|
||||
</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 |
|
@ -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">
|
||||
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
|
||||
</text><text x="175" y="30" fill="#e1e1e6" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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">
|
||||
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
|
||||
</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
|
||||
</text><text x="105" y="70" fill="#50fa7b" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
green
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#56b6c2" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#a3f7ff" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#af0000" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
executable
|
||||
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#af0000" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -20,7 +20,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#005f87" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="15" y="85" fill="#878787" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
bright:
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#679DFF" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
executable
|
||||
|
@ -14,13 +14,13 @@ red
|
|||
green
|
||||
</text><text x="135" y="70" fill="#FAC2FF" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="195" y="70" fill="#C5E9FF" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="15" y="85" fill="#ACCDFF" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
bright:
|
||||
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#D7FFFF" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -26,7 +26,7 @@ white
|
|||
bright:
|
||||
</text><text x="55" y="85" fill="#373b41" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="105" y="85" fill="#b5bd68" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
green
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#ec3a37" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</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
|
||||
</text><text x="85" y="70" fill="#ec3a37" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -20,9 +20,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#80fcff" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#5c5c61" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -38,9 +38,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#80fcff" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#3ad900" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#ec3a37" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</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
|
||||
</text><text x="85" y="70" fill="#ec3a37" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -20,9 +20,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#80fcff" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#5c5c61" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -38,9 +38,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#80fcff" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#3ad900" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#ab4642" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="70" fill="#181818" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -22,7 +22,7 @@ magenta
|
|||
cyan
|
||||
</text><text x="260" y="70" fill="#d8d8d8" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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:
|
||||
</text><text x="55" y="85" fill="#585858" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -40,7 +40,7 @@ magenta
|
|||
cyan
|
||||
</text><text x="260" y="85" fill="#f8f8f8" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="65" y="110" fill="#a1b56c" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
@ -48,4 +48,4 @@ git(
|
|||
main
|
||||
</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 |
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#e33400" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -32,7 +32,7 @@ red
|
|||
green
|
||||
</text><text x="135" y="85" fill="#fff0b4" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="195" y="85" fill="#ffa8df" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
magenta
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#c0e9f8" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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">
|
||||
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
|
||||
</text><text x="175" y="30" fill="#d3d7cf" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
file
|
||||
|
@ -8,7 +8,7 @@ file
|
|||
normal:
|
||||
</text><text x="55" y="70" fill="#2e3436" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="105" y="70" fill="#4e9a06" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
green
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#f43753" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -20,9 +20,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#73cef4" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#4c4c4c" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -40,7 +40,7 @@ magenta
|
|||
cyan
|
||||
</text><text x="260" y="85" fill="#feffff" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="65" y="110" fill="#c9d05c" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</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
|
||||
</text><text x="175" y="30" fill="#b6b6b6" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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">
|
||||
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
|
||||
</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
|
||||
</text><text x="105" y="70" fill="#00a600" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="170" y="70" fill="#0000b2" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
blue
|
||||
|
@ -24,7 +24,7 @@ cyan
|
|||
white
|
||||
</text><text x="15" y="85" fill="#b6b6b6" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="85" y="85" fill="#e50000" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -32,7 +32,7 @@ red
|
|||
green
|
||||
</text><text x="135" y="85" fill="#e5e500" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="195" y="85" fill="#e500e5" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
magenta
|
||||
|
@ -44,7 +44,7 @@ white
|
|||
~/project
|
||||
</text><text x="65" y="110" fill="#00a600" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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 |
|
@ -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">
|
||||
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
|
||||
</text><text x="175" y="30" fill="#c5c8c6" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
file
|
||||
|
@ -8,7 +8,7 @@ file
|
|||
normal:
|
||||
</text><text x="55" y="70" fill="#1d1f21" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="105" y="70" fill="#b5bd68" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
green
|
||||
|
@ -24,7 +24,7 @@ cyan
|
|||
white
|
||||
</text><text x="15" y="85" fill="#c5c8c6" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="85" y="85" fill="#ff3334" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#d54e53" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
executable
|
||||
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#d54e53" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -24,7 +24,7 @@ cyan
|
|||
white
|
||||
</text><text x="15" y="85" fill="#eaeaea" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="85" y="85" fill="#ff3334" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#cb7676" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
executable
|
||||
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#cb7676" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -20,7 +20,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#5eaab5" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="15" y="85" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
bright:
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#cb7676" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -20,7 +20,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#5eaab5" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="15" y="85" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
bright:
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#cb7676" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -20,7 +20,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#5eaab5" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="15" y="85" fill="#dbd7ca" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
bright:
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#ab5959" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
executable
|
||||
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#ab5959" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -20,7 +20,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#2993a3" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="15" y="85" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
bright:
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#ab5959" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -20,7 +20,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#2993a3" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="15" y="85" fill="#393a34" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
bright:
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#ff5370" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</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
|
||||
</text><text x="85" y="70" fill="#ff5370" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -20,9 +20,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="70" fill="#89ddff" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#4a4a4a" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -38,9 +38,9 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#89ddff" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#c3e88d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#E84606" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</text><text x="55" y="70" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -16,13 +16,13 @@ green
|
|||
yellow
|
||||
</text><text x="170" y="70" fill="#8DC3F9" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</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
|
||||
</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:
|
||||
</text><text x="55" y="85" fill="#282828" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
black
|
||||
|
@ -34,13 +34,13 @@ green
|
|||
yellow
|
||||
</text><text x="170" y="85" fill="#8DC3F9" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#3D8BEB" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -6,7 +6,7 @@ executable
|
|||
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">
|
||||
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
|
||||
</text><text x="85" y="70" fill="#f7786d" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -38,7 +38,7 @@ blue
|
|||
magenta
|
||||
</text><text x="235" y="85" fill="#c2fefa" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -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
|
||||
</text><text x="65" y="30" fill="#cd0000" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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:
|
||||
</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
|
||||
</text><text x="85" y="70" fill="#cd0000" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
red
|
||||
|
@ -14,7 +14,7 @@ red
|
|||
green
|
||||
</text><text x="135" y="70" fill="#cdcd00" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</text><text x="195" y="70" fill="#cd00cd" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
magenta
|
||||
|
@ -22,25 +22,25 @@ magenta
|
|||
cyan
|
||||
</text><text x="260" y="70" fill="#e5e5e5" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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:
|
||||
</text><text x="55" y="85" fill="#7f7f7f" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</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
|
||||
</text><text x="170" y="85" fill="#5c5cff" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
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
|
||||
</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
|
||||
</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
|
||||
</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
|
||||
</text><text x="65" y="110" fill="#00cd00" class="Dynamic" font-family="monospace" font-size=".6em">
|
||||
git(
|
||||
|
@ -48,4 +48,4 @@ git(
|
|||
main
|
||||
</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 |
|
@ -4,20 +4,20 @@ details: darker
|
|||
foreground: "#ecf0c1"
|
||||
terminal_colors:
|
||||
bright:
|
||||
black: "#686f9a"
|
||||
red: "#e33400"
|
||||
green: "#5ccc96"
|
||||
yellow: "#b3a1e6"
|
||||
blue: "#00a3cc"
|
||||
black: "#686f9a"
|
||||
red: "#e33400"
|
||||
green: "#5ccc96"
|
||||
yellow: "#b3a1e6"
|
||||
blue: "#00a3cc"
|
||||
magenta: "#f2ce00"
|
||||
cyan: "#7a5ccc"
|
||||
white: "#f0f1ce"
|
||||
cyan: "#7a5ccc"
|
||||
white: "#f0f1ce"
|
||||
normal:
|
||||
black: "#000000"
|
||||
red: "#e33400"
|
||||
green: "#5ccc96"
|
||||
yellow: "#b3a1e6"
|
||||
blue: "#00a3cc"
|
||||
black: "#000000"
|
||||
red: "#e33400"
|
||||
green: "#5ccc96"
|
||||
yellow: "#b3a1e6"
|
||||
blue: "#00a3cc"
|
||||
magenta: "#f2ce00"
|
||||
cyan: "#7a5ccc"
|
||||
white: "#686f9a"
|
||||
cyan: "#7a5ccc"
|
||||
white: "#686f9a"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Synthwave '84
|
||||
accent:
|
||||
left: "#f92aad"
|
||||
right: "#848bbd"
|
||||
left: "#f92aad"
|
||||
right: "#848bbd"
|
||||
background:
|
||||
top: "#241b2f"
|
||||
bottom: "#191621"
|
||||
|
|