Compare commits

..

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

177 changed files with 81 additions and 1133 deletions

View file

@ -1,111 +0,0 @@
{
"files": [
"README.md"
],
"badgeTemplate": "[![All Contributors](https://img.shields.io/badge/all_contributors-<%= contributors.length %>-green.svg?style=for-the-badge)](#contributors)",
"contributorTemplate": "<a href=\"<%= contributor.profile %>\"><b><%= contributor.name %></b></a><br /><%= contributions %>",
"imageSize": 100,
"commit": false,
"contributors": [
{
"login": "scopatz",
"name": "Anthony Scopatz",
"avatar_url": "https://avatars2.githubusercontent.com/u/320553?v=4",
"profile": "http://www.scopatz.com",
"contributions": [
"doc"
]
},
{
"login": "orangecoloured",
"name": "RCKT",
"avatar_url": "https://avatars3.githubusercontent.com/u/3314891?v=4",
"profile": "https://rckt.cc",
"contributions": [
"theme"
]
},
{
"login": "varmanishant",
"name": "varmanishant",
"avatar_url": "https://avatars1.githubusercontent.com/u/4084912?v=4",
"profile": "https://github.com/varmanishant",
"contributions": [
"theme"
]
},
{
"login": "rlerdorf",
"name": "Rasmus Lerdorf",
"avatar_url": "https://avatars3.githubusercontent.com/u/54641?v=4",
"profile": "https://github.com/rlerdorf",
"contributions": [
"bug",
"ideas"
]
},
{
"login": "Luflosi",
"name": "Luflosi",
"avatar_url": "https://avatars1.githubusercontent.com/u/15217907?v=4",
"profile": "https://github.com/Luflosi",
"contributions": [
"fix",
"question",
"doc"
]
},
{
"login": "connorholyday",
"name": "Connor Holyday",
"avatar_url": "https://avatars1.githubusercontent.com/u/4559119?v=4",
"profile": "https://holyday.me",
"contributions": [
"fix"
]
},
{
"login": "BlueDrink9",
"name": "BlueDrink9",
"avatar_url": "https://avatars3.githubusercontent.com/u/26474254?v=4",
"profile": "https://github.com/BlueDrink9",
"contributions": [
"bug"
]
},
{
"login": "brujoand",
"name": "Anders Brujordet",
"avatar_url": "https://avatars1.githubusercontent.com/u/124421?v=4",
"profile": "https://github.com/brujoand",
"contributions": [
"theme"
]
},
{
"login": "rjshrjndrn",
"name": "Rajesh Rajendran",
"avatar_url": "https://avatars3.githubusercontent.com/u/2563385?v=4",
"profile": "http://www.hackouts.com",
"contributions": [
"fix"
]
}
],
"types": {
"theme": {
"symbol": "😻",
"description": "New theme added to the collection"
},
"fix": {
"symbol": "🛠️",
"description": "Fixed a theme"
}
},
"contributorsPerLine": 7,
"projectName": "kitty-themes",
"projectOwner": "dexpota",
"repoType": "github",
"repoHost": "https://github.com",
"commitConvention": "none"
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 153 KiB

After

Width:  |  Height:  |  Size: 79 KiB

View file

@ -1,30 +0,0 @@
import json
from jinja2 import FileSystemLoader, Environment
import sys
import os
def removeAlpha(value):
hex = value.lstrip("#")
return "#" + hex[0:6]
filename = sys.argv[1]
kitty_configuration = os.path.splitext(filename)[0] + ".conf"
with open(filename, "r") as configuration_file:
configuration = json.load(configuration_file)
loader = FileSystemLoader(".")
env = Environment(loader=loader)
env.filters['removeAlpha'] = removeAlpha
env.trim_blocks = True
template = env.get_template("template.conf.j2")
output = template.render(**configuration)
with open(kitty_configuration, "w") as fp:
fp.write(output)

View file

@ -1,5 +0,0 @@
#!/usr/bin/env bash
theme=$1
jq ".colors | to_entries | map(select(.key | match(\"terminal.*\"))) | map({(.key | gsub(\"\\\\.(?<a>.)\"; .a | ascii_upcase) | ltrimstr(\"terminal\") | sub(\"(?<a>.)\"; .a | ascii_downcase)):.value}) | add" < "$theme" > "terminal/${theme%.*}.json"

View file

@ -16,7 +16,7 @@ conf_filename=$(basename "$theme")
lockfile=$(mktemp)
kitty @ set-colors --match id:"$id" "$theme"
kitty @ send-text --match id:"$id" "clear && figlet -f digital -t \"$conf_filename\" && unbuffer ./color_table.sh && rm \"$lockfile\"\n"
kitty @ send-text --match id:"$id" "clear && figlet -f digital -t \"$conf_filename\" && unbuffer ./color_table.sh && rm \"$lockf\""
# simple sync mechanism, wait for the lockfile to be removed
( echo "$lockfile" | entr "false" 1>/dev/null 2>&1 ) || capture themes "$preview_filename"

View file

@ -3,8 +3,7 @@
root="$(git rev-parse --show-toplevel)"
tools="$root/.tools"
PATH=$tools:$PATH
themes="$root/themes"
# new kitty window, return its id
id=$(kitty @ new-window --title themes --window-type os --cwd "$tools")
@ -15,18 +14,18 @@ kitty @ set-font-size 24
# save all preview in this directory
previews="$root/_previews"
if [ ! -d "$previews" ]; then
mkdir "$previews"
mkdir "$previews"
fi
while read -r theme
do
echo "Genereting theme preview for $theme"
preview_directory=$previews/$(basename "${theme%.*}")
[ ! -d "$preview_directory" ] && mkdir "$preview_directory"
preview_filename=$previews/$(basename "${theme%.*}")/preview.png
generate_theme_preview.sh "$id" "$theme" "$preview_filename"
mogrify -resize 1024x\> "$preview_filename"
done < /dev/stdin
find "$themes" -name "*.conf" -print0 | while read -d $'\0' -r theme; do
echo "Genereting theme preview for $theme"
preview_directory=$previews/$(basename "${theme%.*}")
[ ! -d "$preview_directory" ] && mkdir "$preview_directory"
preview_filename=$previews/$(basename "${theme%.*}")/preview.png
./generate_theme_preview.sh "$id" "$theme" "$preview_filename"
mogrify -resize 1024x\> "$preview_filename"
done
kitty @ close-window --match id:"$id"
kitty @ set-font-size 16

View file

@ -1,91 +0,0 @@
from argparse import ArgumentParser
from svgwrite.shapes import Rect
import svgwrite
theme_keys = [
"foreground", "background", "background_opacity", "dynamic_background_opacity", "dim_opacity",
"selection_foreground", "selection_background", "color0", "color8", "color1", "color9", "color2", "color10",
"color3", "color11", "color4", "color12", "color5", "color13", "color6", "color14", "color7", "color15"
]
def is_valid(line):
"""
Returns true if a line inside a configuration file is a valid theme configuration pair: is not a comment, is not
empty and the key is correct.
:param line: a line inside the configuration file
:type line: str
:return: true if is valid, false otherwise
:rtype: bool
"""
return (not line.lstrip().startswith("#") # is not a comment
and len(line.strip()) != 0 # is not empty
and line.split(maxsplit=1)[0] in theme_keys) # key is a valid one
def extract_configuration_pair(line):
"""
Extract a configuration pair by splitting on spaces and taking the first couple of values.
:param line: a line inside the configuration file
:type line: str
:return: a key-value pair
:rtype: bool
"""
split = line.split(maxsplit=2)
return split[0], split[1]
def read_configuration(filename):
"""
Read a kitty configuration file and extract only theme related keys and values.
:param filename: path to the configuration file
:type filename: str
:return: a map with theme related configuration values
:rtype: dict[str, str]
"""
with open(filename, "r") as fp:
lines = fp.readlines()
print(filename)
theme_config = dict([extract_configuration_pair(line) for line in lines if is_valid(line)])
return theme_config
def draw_theme_palette(theme_configuration, start_point, size, displacement):
rects = []
for k, v in theme_configuration.items():
rgb = tuple(int(v[i + 1:i + 3], 16) for i in (0, 2, 4))
rects.append(Rect(start_point, size, fill=svgwrite.utils.rgb(rgb[0], rgb[1], rgb[2])))
start_point = (start_point[0] + displacement[0], start_point[1] + displacement[1])
return rects
def draw_all_palettes(themes):
dwg = svgwrite.Drawing('test.svg', profile='tiny')
y = 0
palettes = []
for theme in themes:
palettes += draw_theme_palette(theme, (0, y), (10, 10), (10, 0))
y += 10
for rect in palettes:
dwg.add(rect)
dwg.save()
def main():
parser = ArgumentParser()
parser.add_argument("theme", type=str, nargs="+")
ns = parser.parse_args()
theme_configurations = [read_configuration(theme) for theme in ns.theme]
draw_all_palettes(theme_configurations)
if __name__ == "__main__":
main()

View file

@ -1,136 +0,0 @@
import sys
import os
import sys
theme_keys = [
"cursor", "foreground", "background", "background_opacity", "dynamic_background_opacity", "dim_opacity",
"selection_foreground", "selection_background", "color0", "color8", "color1", "color9", "color2", "color10",
"color3", "color11", "color4", "color12", "color5", "color13", "color6", "color14", "color7", "color15"
]
def is_valid(line):
"""
Returns true if a line inside a configuration file is a valid theme configuration pair: is not a comment, is not
empty and the key is correct.
:param line: a line inside the configuration file
:type line: str
:return: true if is valid, false otherwise
:rtype: bool
"""
return (not line.lstrip().startswith("#") # is not a comment
and len(line.strip()) != 0 # is not empty
and line.split(maxsplit=1)[0] in theme_keys) # key is a valid one
def extract_configuration_pair(line):
"""
Extract a configuration pair by splitting on spaces and taking the first couple of values.
:param line: a line inside the configuration file
:type line: str
:return: a key-value pair
:rtype: bool
"""
split = line.split(maxsplit=2)
return split[0], split[1]
def read_configuration(filename):
"""
Read a kitty configuration file and extract only theme related keys and values.
:param filename: path to the configuration file
:type filename: str
:return: a map with theme related configuration values
:rtype: dict[str, str]
"""
with open(filename, "r") as fp:
lines = fp.readlines()
theme_config = dict([extract_configuration_pair(line) for line in lines if is_valid(line)])
return theme_config
def fg(color, text):
rgb = tuple(int(color[i + 1:i + 3], 16) for i in (0, 2, 4))
return ('\x1b[38;2;%s;%s;%sm' % rgb + text + '\x1b[0m')
def bg(color, text):
rgb = tuple(int(color[i + 1:i + 3], 16) for i in (0, 2, 4))
return ('\x1b[48;2;%s;%s;%sm' % rgb + text + '\x1b[0m')
def print_preview(filename, configuration):
cursor = configuration["cursor"]
background = configuration["background"]
foreground = configuration["foreground"]
theme = os.path.basename(filename)
size = len(theme) + (2 + 2 + 16 + 2 + 16 + 1 + 2)
print(bg(background, " " * size))
print(bg(background, " "), end="")
print(bg(background, fg(foreground, theme)), end="")
print(bg(background, " "), end="")
c='a'
for i in range(0, 16):
color = configuration["color%d" % i]
print(bg(background, fg(color, c)), end="")
c = chr(ord(c) + 1)
print(bg(background, " "), end="")
selection_background = configuration["selection_background"]
selection_foreground = configuration["selection_foreground"]
c='A'
for i in range(0, 16):
print(bg(selection_background, fg(selection_foreground, c)), end="")
c = chr(ord(c) + 1)
print(bg(cursor, " "), end="")
print(bg(background, " "))
print(bg(background, " " * size))
print(bg(background, " "), end="")
print(bg(configuration["color0"], " "), end="")
print(bg(configuration["color1"], " "), end="")
print(bg(configuration["color2"], " "), end="")
print(bg(configuration["color3"], " "), end="")
print(bg(configuration["color4"], " "), end="")
print(bg(configuration["color5"], " "), end="")
print(bg(configuration["color6"], " "), end="")
print(bg(configuration["color7"], " "), end="")
print(bg(background, " "), end="")
print(bg(configuration["color8"], " "), end="")
print(bg(configuration["color9"], " "), end="")
print(bg(configuration["color10"], " "), end="")
print(bg(configuration["color11"], " "), end="")
print(bg(configuration["color12"], " "), end="")
print(bg(configuration["color13"], " "), end="")
print(bg(configuration["color14"], " "), end="")
print(bg(configuration["color15"], " "), end="")
print(bg(background, " " * (size - 16 - 4)), end="")
print()
print(bg(background, " " * size))
print()
def main(directory):
for filename in os.listdir(directory):
try:
path = os.path.join(directory, filename)
configuration = read_configuration(path)
print_preview(path, configuration)
except Exception as e:
print(e, file=sys.stderr)
print("Error while processing %s" % filename, file=sys.stderr)
if __name__ == "__main__":
main(sys.argv[1])

View file

@ -1,91 +0,0 @@
{% if background is defined %}
background {{background}}
{% endif %}
{% if foreground is defined %}
foreground {{foreground}}
{% endif %}
{% if cursorForeground is defined %}
cursor {{cursorForeground}}
{% endif %}
{% if cursorBackground is defined %}
cursor_text_color {{cursorBackground | removeAlpha}}
{% endif %}
{% if background is defined %}
selection_foreground {{background | removeAlpha}}
{% endif %}
{% if selectionBackground is defined %}
selection_background {{selectionBackground | removeAlpha}}
{% endif %}
{% if ansiBlack is defined %}
# dull black
color0 {{ansiBlack}}
{% endif %}
{% if ansiBrightBlack is defined %}
# light black
color8 {{ansiBrightBlack}}
{% endif %}
{% if ansiRed is defined %}
# dull red
color1 {{ansiRed}}
{% endif %}
{% if ansiBrightRed %}
# light red
color9 {{ansiBrightRed}}
{% endif %}
{% if ansiGreen is defined %}
# dull green
color2 {{ansiGreen}}
{% endif %}
{% if ansiBrightGreen is defined %}
# light green
color10 {{ansiBrightGreen}}
{% endif %}
{% if ansiYellow is defined %}
# yellow
color3 {{ansiYellow}}
{% endif %}
{% if ansiBrightYellow is defined %}
# light yellow
color11 {{ansiBrightYellow}}
{% endif %}
{% if ansiBlue is defined %}
# blue
color4 {{ansiBlue}}
{% endif %}
{% if ansiBrightBlue %}
# light blue
color12 {{ansiBrightBlue}}
{% endif %}
{% if ansiMagenta is defined %}
# magenta
color5 {{ansiMagenta}}
{% endif %}
{% if ansiBrightMagenta is defined %}
# light magenta
color13 {{ansiBrightMagenta}}
{% endif %}
{% if ansiCyan is defined %}
# cyan
color6 {{ansiCyan}}
{% endif %}
{% if ansiBrightCyan is defined %}
# light cyan
color14 {{ansiBrightCyan}}
{% endif %}
{% if ansiWhite is defined %}
# dull white
color7 {{ansiWhite}}
{% endif %}
{% if ansiBrightWhite is defined %}
# bright white
color15 {{ansiBrightWhite}}
{% endif %}

View file

@ -1,46 +1,41 @@
[iterm2-themes]: https://github.com/mbadolato/iTerm2-Color-Schemes
[color-scripts]: https://github.com/stark/Color-Scripts/tree/master/color-scripts
[1]: https://github.com/mbadolato/iTerm2-Color-Schemes
[2]: https://github.com/stark/Color-Scripts/tree/master/color-scripts
[license]: https://opensource.org/licenses/MIT
[license-badge]: https://img.shields.io/github/license/dexpota/kitty-themes.svg?style=for-the-badge
[kitty-themes-previews]: https://github.com/dexpota/kitty-themes-website/tree/master/previews
![kitty-themes](./.github/kitty-themes.jpg)
# kitty-themes
> **Personalize** your *kitty* terminal and choose your theme from this awesome
> collection, for more information on the terminal visit
> https://github.com/kovidgoyal/kitty
[![License: MIT][license-badge]][license]
[![All Contributors](https://img.shields.io/badge/all_contributors-9-green.svg?style=for-the-badge)](#contributors)
- [About](#about)
- [Installation](#installation)
- [Source Code](#source-code)
- [Conda](#conda)
- [License](#license)
- [Bring me to the previews!](#previews)
- [Contributors](#contributors)
## About
![kitty-themes](./.github/kitty-themes.jpg)
In this repository you can find a set of themes to personalize your kitty
terminal, these have been ported from [iTerm2-Color-Schemes][iterm2-themes]. You can find
terminal, these have been ported from [iTerm2-Color-Schemes][1]. You can find
the previews for each theme in the [section](#previews) below or in this other
[repository](kitty-themes-previews).
## Installation
### Source Code
1. If you want to download and use one of these theme you have two options:
- clone the entire *kitty-themes* repository:
```bash
git clone --depth 1 https://github.com/dexpota/kitty-themes.git ~/.config/kitty/kitty-themes
git clone --depth 1 git@github.com:dexpota/kitty-themes.git ~/.config/kitty/kitty-themes
```
- or download just one theme:
```bash
THEME=https://raw.githubusercontent.com/dexpota/kitty-themes/master/themes/3024_Day.conf
wget "$THEME" -P ~/.config/kitty/kitty-themes/themes
wget "$THEME" -P ~/.config/kitty/kitty-themes
```
2. Choose a theme and create a symlink:
@ -56,15 +51,6 @@ the previews for each theme in the [section](#previews) below or in this other
include ./theme.conf
```
### Conda
If you using the ``conda`` package manager, you may also install these themes
with the following command:
```bash
conda install -c conda-forge kitty-themes
```
## License
All original content of this repository is licensed with the [MIT
@ -93,7 +79,7 @@ the entire repo, you have two options to try a theme:
### Bonus
Try your new theme with one of the scripts in [Color-scripts][color-scripts] with this
Try your new theme with one of the scripts in [Color-scripts][2] with this
one-liner (requires `jq`):
```bash
@ -113,8 +99,6 @@ wget -q -O - $(curl -s $COLOR_SCRIPT_REPO | jq '.[] | "\(.path) \(.download_url)
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/AlienBlood/preview.png)
### Alucard
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/Alucard/preview.png)
### Apprentice
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/Apprentice/preview.png)
### Argonaut
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/Argonaut/preview.png)
### Arthur
@ -279,16 +263,6 @@ wget -q -O - $(curl -s $COLOR_SCRIPT_REPO | jq '.[] | "\(.path) \(.download_url)
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/Molokai/preview.png)
### MonaLisa
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/MonaLisa/preview.png)
### Monokai Classic
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/Monokai_Classic/preview.png)
### Monokai Pro
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/Monokai_Pro/preview.png)
### Monokai Pro (Filter Machine)
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/Monokai_Pro_(Filter_Machine)/preview.png)
### Monokai Pro (Filter Octagon)
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/Monokai_Pro_(Filter_Octagon)/preview.png)
### Monokai Pro (Filter Ristretto)
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/Monokai_Pro_(Filter_Ristretto)/preview.png)
### Monokai Pro (Filter Spectrum)
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/Monokai_Pro_(Filter_Spectrum)/preview.png)
### Monokai Soda
@ -437,29 +411,3 @@ wget -q -O - $(curl -s $COLOR_SCRIPT_REPO | jq '.[] | "\(.path) \(.download_url)
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/Wryan/preview.png)
### Zenburn
![image](https://raw.githubusercontent.com/dexpota/kitty-themes-website/master/previews/Zenburn/preview.png)
## Contributors
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore -->
<table>
<tr>
<td align="center"><a href="http://www.scopatz.com"><b>Anthony Scopatz</b></a><br /><a href="https://github.com/dexpota/kitty-themes/commits?author=scopatz" title="Documentation">📖</a></td>
<td align="center"><a href="https://rckt.cc"><b>RCKT</b></a><br /><a href="#theme-orangecoloured" title="New theme added to the collection">😻</a></td>
<td align="center"><a href="https://github.com/varmanishant"><b>varmanishant</b></a><br /><a href="#theme-varmanishant" title="New theme added to the collection">😻</a></td>
<td align="center"><a href="https://github.com/rlerdorf"><b>Rasmus Lerdorf</b></a><br /><a href="https://github.com/dexpota/kitty-themes/issues?q=author%3Arlerdorf" title="Bug reports">🐛</a> <a href="#ideas-rlerdorf" title="Ideas, Planning, & Feedback">🤔</a></td>
<td align="center"><a href="https://github.com/Luflosi"><b>Luflosi</b></a><br /><a href="#fix-Luflosi" title="Fixed a theme">🛠️</a> <a href="#question-Luflosi" title="Answering Questions">💬</a> <a href="https://github.com/dexpota/kitty-themes/commits?author=Luflosi" title="Documentation">📖</a></td>
<td align="center"><a href="https://holyday.me"><b>Connor Holyday</b></a><br /><a href="#fix-connorholyday" title="Fixed a theme">🛠️</a></td>
<td align="center"><a href="https://github.com/BlueDrink9"><b>BlueDrink9</b></a><br /><a href="https://github.com/dexpota/kitty-themes/issues?q=author%3ABlueDrink9" title="Bug reports">🐛</a></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/brujoand"><b>Anders Brujordet</b></a><br /><a href="#theme-brujoand" title="New theme added to the collection">😻</a></td>
<td align="center"><a href="http://www.hackouts.com"><b>Rajesh Rajendran</b></a><br /><a href="#fix-rjshrjndrn" title="Fixed a theme">🛠️</a></td>
</tr>
</table>
<!-- ALL-CONTRIBUTORS-LIST:END -->
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!

View file

@ -18,4 +18,3 @@ color6 #b5e4f4
color14 #ccab53
color7 #a4a1a1
color15 #f7f7f7
selection_foreground #f7f7f7

View file

@ -18,4 +18,3 @@ color6 #b5e4f4
color14 #ccab53
color7 #a4a1a1
color15 #f7f7f7
selection_foreground #090200

View file

@ -18,4 +18,3 @@ color6 #6fa497
color14 #c8f9f3
color7 #f8dbc0
color15 #f5f4fb
selection_foreground #1e1c44

View file

@ -18,4 +18,3 @@ color6 #7dd5cf
color14 #7dd5cf
color7 #d0d0d0
color15 #f5f5f5
selection_foreground #202020

View file

@ -18,4 +18,3 @@ color6 #317f76
color14 #00dfc3
color7 #647d75
color15 #73f990
selection_foreground #0f160f

View file

@ -18,4 +18,3 @@ color6 #0037fc
color14 #8ae9fc
color7 #bbbbbb
color15 #ffffff
selection_foreground #222330

View file

@ -1,26 +0,0 @@
# Apprentice by Romain Lafourcade, https://github.com/romainl
# This work is licensed under the terms of the MIT license.
# For a copy, see https://opensource.org/licenses/MIT.
cursor #c7c7c7
cursor_text_color #feffff
selection_foreground #3e3e3e
selection_background #c1ddff
foreground #c8c8c8
background #323232
color0 #252525
color8 #555555
color1 #be7472
color9 #ff9900
color2 #709772
color10 #97bb98
color3 #989772
color11 #fefdbc
color4 #7199bc
color12 #9fbdde
color5 #727399
color13 #989abc
color6 #719899
color14 #6fbbbc
color7 #7f7f7f
color15 #feffff

View file

@ -18,4 +18,3 @@ color6 #00d7eb
color14 #67ffef
color7 #ffffff
color15 #ffffff
selection_foreground #0d0f18

View file

@ -18,4 +18,3 @@ color6 #b0c4de
color14 #b0c4de
color7 #bbaa99
color15 #ddccbb
selection_foreground #1c1c1c

View file

@ -18,4 +18,3 @@ color6 #21a1c8
color14 #9c6279
color7 #969cb3
color15 #f4f7ff
selection_foreground #202745

View file

@ -18,4 +18,3 @@ color6 #85befd
color14 #85befd
color7 #dfdfdf
color15 #dfdfdf
selection_foreground #161718

View file

@ -18,4 +18,3 @@ color6 #3e953a
color14 #3e953a
color7 #bbbbbb
color15 #ffffff
selection_foreground #f8f8f8

View file

@ -18,4 +18,3 @@ color6 #615f5e
color14 #a2a2a5
color7 #c5c5be
color15 #dadad5
selection_foreground #1b1d1e

View file

@ -18,4 +18,3 @@ color6 #98999c
color14 #98999c
color7 #958b83
color15 #d4ccb9
selection_foreground #d4ccb9

View file

@ -18,4 +18,3 @@ color6 #98999c
color14 #98999c
color7 #958b83
color15 #d4ccb9
selection_foreground #20111a

View file

@ -18,4 +18,3 @@ color6 #74a5ac
color14 #92ced6
color7 #dfdab7
color15 #fff9d4
selection_foreground #2a1e1d

View file

@ -17,5 +17,3 @@ color6 #79b8b8
color14 #bddada
color7 #d9d9d9
color15 #ffffff
selection_foreground #0d1925
selection_background #d9e6f2

View file

@ -18,4 +18,3 @@ color6 #c6c4fd
color14 #dfdffe
color7 #eeeeee
color15 #ffffff
selection_foreground #0000a3

View file

@ -18,4 +18,3 @@ color6 #6cbeb5
color14 #6cbeb5
color7 #c1c8d6
color15 #c1c8d6
selection_foreground #191919

View file

@ -18,4 +18,3 @@ color6 #6d9cbd
color14 #a0cef0
color7 #ffffff
color15 #ffffff
selection_foreground #2b2b2b

View file

@ -18,4 +18,3 @@ color6 #0f80d5
color14 #0f7cda
color7 #d6dae4
color15 #ffffff
selection_foreground #131313

View file

@ -18,4 +18,3 @@ color6 #67b6bd
color14 #67b6bd
color7 #ffffff
color15 #f7f7f7
selection_foreground #40318d

View file

@ -18,4 +18,3 @@ color6 #32c2c0
color14 #39d5ce
color7 #b2b2b2
color15 #ededec
selection_foreground #ffffff

View file

@ -18,4 +18,3 @@ color6 #44a799
color14 #52ccbd
color7 #d2d8d9
color15 #d2d8d9
selection_foreground #2b2c2e

View file

@ -18,4 +18,3 @@ color6 #72c2c3
color14 #aadadb
color7 #d9d9d9
color15 #ffffff
selection_foreground #29262f

View file

@ -18,4 +18,3 @@ color6 #5b4f4a
color14 #f3dab1
color7 #ada37e
color15 #f3f3f3
selection_foreground #181c27

View file

@ -18,4 +18,3 @@ color6 #00bbbb
color14 #6ae3f9
color7 #bbbbbb
color15 #ffffff
selection_foreground #122637

View file

@ -18,4 +18,3 @@ color6 #8ff586
color14 #6cbc67
color7 #ba45b1
color15 #8ff586
selection_foreground #142838

View file

@ -18,4 +18,3 @@ color6 #e8a766
color14 #ffceae
color7 #685259
color15 #af949d
selection_foreground #140607

View file

@ -18,4 +18,3 @@ color6 #55ffff
color14 #55ffff
color7 #bbbbbb
color15 #ffffff
selection_foreground #000000

View file

@ -18,4 +18,3 @@ color6 #1c98e8
color14 #3d96e2
color7 #b9b9b9
color15 #b9b9b9
selection_foreground #212324

View file

@ -18,4 +18,3 @@ color6 #ffa0a0
color14 #ffd700
color7 #f5deb3
color15 #ffffff
selection_foreground #333333

View file

@ -18,4 +18,3 @@ color6 #568ea3
color14 #2d6f6c
color7 #b8bcb9
color15 #fcffb8
selection_foreground #1e1e1e

View file

@ -18,4 +18,3 @@ color6 #8bd1ed
color14 #8bd1ed
color7 #ffffff
color15 #ffffff
selection_foreground #252b35

View file

@ -18,4 +18,3 @@ color6 #8ae9fc
color14 #8ae9fc
color7 #bbbbbb
color15 #ffffff
selection_foreground #1e1f28

View file

@ -18,4 +18,3 @@ color6 #008aff
color14 #25de50
color7 #850000
color15 #c9c9c9
selection_foreground #422553

View file

@ -18,4 +18,3 @@ color6 #2388ff
color14 #2388ff
color7 #b6a0ff
color15 #e9e4ff
selection_foreground #1f1c27

View file

@ -18,4 +18,3 @@ color6 #008b8b
color14 #00cdcd
color7 #bbbbbb
color15 #ffffff
selection_foreground #000000

View file

@ -18,4 +18,3 @@ color6 #4f9452
color14 #83ef88
color7 #e5c5a9
color15 #f6f6ec
selection_foreground #282420

View file

@ -18,4 +18,3 @@ color6 #387f58
color14 #58d598
color7 #807974
color15 #fff1e8
selection_foreground #21211c

View file

@ -1,27 +1,20 @@
# Theme ported from the Mac Terminal application.
background #323232
foreground #ffffff
cursor #d6d6d6
selection_background #5b5b5b
selection_foreground #323232
color0 #353535
color8 #535353
color1 #d25252
color9 #f00c0c
color2 #a4c161
color10 #c1df74
color3 #ffc56d
color11 #e1e48a
color4 #6c99ba
color12 #8ab6d9
color5 #d096d9
color13 #efb5f7
color6 #bdd6ff
color14 #dbf4ff
color7 #ededec
color15 #ffffff
active_tab_foreground #ffffff
active_tab_background #535353
inactive_tab_foreground #ffffff
inactive_tab_background #353535
background #323232
foreground #ffffff
cursor #d6d6d6
selection_background #5b5b5b
color0 #353535
color8 #535353
color1 #d25252
color9 #f00c0c
color2 #a4c161
color10 #c1df74
color3 #ffc56d
color11 #e1e48a
color4 #6c99ba
color12 #8ab6d9
color5 #d096d9
color13 #efb5f7
color6 #bdd6ff
color14 #dbf4ff
color7 #ededec
color15 #ffffff

View file

@ -18,4 +18,3 @@ color6 #05989a
color14 #34e2e2
color7 #d3d7cf
color15 #ededec
selection_foreground #2a211c

View file

@ -18,4 +18,3 @@ color6 #309185
color14 #81908f
color7 #e9e2cd
color15 #fcf4de
selection_foreground #282f32

View file

@ -18,4 +18,3 @@ color6 #968662
color14 #a4bc86
color7 #eceffc
color15 #f6ffec
selection_foreground #222436

View file

@ -18,4 +18,3 @@ color6 #2b9270
color14 #35b286
color7 #afb6b9
color15 #e6ecec
selection_foreground #002240

View file

@ -18,4 +18,3 @@ color6 #d53864
color14 #d53864
color7 #fefffe
color15 #fefffe
selection_foreground #1c1e20

View file

@ -18,4 +18,3 @@ color6 #42a38c
color14 #62caa8
color7 #f3e0b8
color15 #fff5db
selection_foreground #0e0c15

View file

@ -18,4 +18,3 @@ color6 #3ba0a5
color14 #4ebce5
color7 #acacac
color15 #8b735a
selection_foreground #1b1b1d

View file

@ -18,4 +18,3 @@ color6 #d98112
color14 #e6a96b
color7 #ddc165
color15 #ffe9a3
selection_foreground #241200

View file

@ -18,4 +18,3 @@ color6 #1e9ee6
color14 #3978bb
color7 #bbbbbb
color15 #ffffff
selection_foreground #1c2836

View file

@ -18,4 +18,3 @@ color6 #89d1ec
color14 #1cfafe
color7 #ffffff
color15 #ffffff
selection_foreground #f4f4f4

View file

@ -18,4 +18,3 @@ color6 #778397
color14 #a0b6d3
color7 #ffffff
color15 #ffffff
selection_foreground #0c1115

View file

@ -18,4 +18,3 @@ color6 #3affff
color14 #c8f9f3
color7 #000000
color15 #f5f4fb
selection_foreground #2f0033

View file

@ -18,4 +18,3 @@ color6 #3added
color14 #9ce3ea
color7 #9e9ea0
color15 #a188f7
selection_foreground #161423

View file

@ -1,5 +1,3 @@
# Theme ported from the Mac Terminal application.
background #12773d
foreground #fff0a4
cursor #8b2800
@ -20,4 +18,3 @@ color6 #00baba
color14 #54ffff
color7 #bababa
color15 #ffffff
selection_foreground #12773d

View file

@ -18,4 +18,3 @@ color6 #5e7175
color14 #a3babf
color7 #ccccc6
color15 #f8f8f2
selection_foreground #121212

View file

@ -18,4 +18,3 @@ color6 #f4bed6
color14 #f4bed6
color7 #a7a39c
color15 #fefbe9
selection_foreground #000000

View file

@ -18,4 +18,3 @@ color6 #384563
color14 #5c4f49
color7 #ededed
color15 #fefffe
selection_foreground #212224

View file

@ -18,4 +18,3 @@ color6 #00a6b2
color14 #00e5e5
color7 #bfbfbf
color15 #e5e5e5
selection_foreground #0f0a05

View file

@ -1,5 +1,3 @@
# Theme ported from the Mac Terminal application.
background #000000
foreground #00ff00
cursor #23ff18
@ -20,4 +18,3 @@ color6 #00a6b2
color14 #00e5e5
color7 #bebebe
color15 #e5e5e5
selection_foreground #000000

View file

@ -18,4 +18,3 @@ color6 #85e9fe
color14 #85e9fe
color7 #cbcbcb
color15 #dbdbdb
selection_foreground #000000

View file

@ -18,4 +18,3 @@ color6 #7fbeb3
color14 #4d7b73
color7 #b5b8b6
color15 #5a6169
selection_foreground #161718

View file

@ -18,4 +18,3 @@ color6 #2bb767
color14 #22ff71
color7 #dffeee
color15 #daeed0
selection_foreground #3a3c3e

View file

@ -18,4 +18,3 @@ color6 #f79400
color14 #c59752
color7 #ffc88a
color15 #f9f9fe
selection_foreground #262626

View file

@ -18,4 +18,3 @@ color6 #c6c4fd
color14 #dfdffd
color7 #eeedee
color15 #fefffe
selection_foreground #000000

View file

@ -18,4 +18,3 @@ color6 #00acee
color14 #00e5e5
color7 #bfbfbf
color15 #e5e5e5
selection_foreground #2c1c15

View file

@ -18,4 +18,3 @@ color6 #389aac
color14 #76bbca
color7 #f9faf6
color15 #b1b5ae
selection_foreground #1d1d1d

View file

@ -18,4 +18,3 @@ color6 #00988e
color14 #19b2a7
color7 #dedede
color15 #ffffff
selection_foreground #111111

View file

@ -18,4 +18,3 @@ color6 #33c2c1
color14 #60d3d1
color7 #adadad
color15 #eeeeee
selection_foreground #202020

View file

@ -18,4 +18,3 @@ color6 #0798ab
color14 #68f2e0
color7 #e2d1e3
color15 #ffffff
selection_foreground #0e100a

View file

@ -18,4 +18,3 @@ color6 #91beb6
color14 #5fbfad
color7 #3b3c3c
color15 #c0c2c2
selection_foreground #212121

View file

@ -18,4 +18,3 @@ color6 #57767f
color14 #9ad3df
color7 #736d7c
color15 #8b91fa
selection_foreground #050014

View file

@ -18,4 +18,3 @@ color6 #79c4cc
color14 #79c4cc
color7 #bccccc
color15 #bccccc
selection_foreground #2f2f2f

View file

@ -18,4 +18,3 @@ color6 #79c4cc
color14 #79c4cc
color7 #bccccc
color15 #bccccc
selection_foreground #000000

View file

@ -18,4 +18,3 @@ color6 #79c4cc
color14 #79c4cc
color7 #000000
color15 #000000
selection_foreground #000000

View file

@ -1,5 +1,3 @@
# Theme ported from the Mac Terminal application.
background #fef49c
foreground #000000
cursor #7f7f7f
@ -20,4 +18,3 @@ color6 #00a6b2
color14 #00e5e5
color7 #cccccc
color15 #e5e5e5
selection_foreground #fef49c

View file

@ -18,4 +18,3 @@ color6 #0e707c
color14 #26bad1
color7 #eeeeee
color15 #d8d8d8
selection_foreground #eaeaea

View file

@ -18,4 +18,3 @@ color6 #0e707c
color14 #26bad1
color7 #eeeeee
color15 #d8d8d8
selection_foreground #222221

View file

@ -18,4 +18,3 @@ color6 #67d9f0
color14 #55ffff
color7 #f2f2f2
color15 #ffffff
selection_foreground #000000

View file

@ -18,4 +18,3 @@ color6 #906b25
color14 #ffbb51
color7 #c9c199
color15 #fed597
selection_foreground #1d1808

View file

@ -18,4 +18,3 @@ color6 #23d6d6
color14 #00ece1
color7 #e1e1df
color15 #ffffff
selection_foreground #2d3743

View file

@ -18,4 +18,3 @@ color6 #42a7cf
color14 #50cdfe
color7 #bbbbbb
color15 #ffffff
selection_foreground #121212

View file

@ -18,4 +18,3 @@ color6 #588056
color14 #89cc8e
color7 #f6d75c
color15 #ffe597
selection_foreground #110b0d

View file

@ -1,41 +0,0 @@
# Monokai
background #272822
foreground #f8f8f2
cursor #f8f8f2
selection_background #f8f8f2
selection_foreground #272822
active_tab_background #75715e
active_tab_foreground #272822
active_border_color #75715e
inactive_tab_background #272822
inactive_tab_foreground #75715e
inactive_border_color #75715e
url_color #f8f8f2
# 16 Color Space
# black
color0 #272822
color8 #75715e
# red
color1 #f92672
color9 #f92672
# green
color2 #a6e22e
color10 #a6e22e
# yellow
color3 #e6db74
color11 #e6db74
# blue
color4 #66d9ef
color12 #66d9ef
# magenta
color5 #fd971f
color13 #fd971f
# cyan
color6 #ae81ff
color14 #ae81ff
# white
color7 #f8f8f2
color15 #f8f8f2

View file

@ -1,47 +0,0 @@
background #3b3c35
foreground #fdfff1
cursor #fdfff1
cursor_text_color #000000
selection_foreground #3b3c35
selection_background #fdfff1
# dull black
color0 #3b3c35
# light black
color8 #6e7066
# dull red
color1 #f82570
# light red
color9 #f82570
# dull green
color2 #a6e12d
# light green
color10 #a6e12d
# yellow
color3 #e4db73
# light yellow
color11 #e4db73
# blue
color4 #fc961f
# light blue
color12 #fc961f
# magenta
color5 #ae81ff
# light magenta
color13 #ae81ff
# cyan
color6 #66d9ee
# light cyan
color14 #66d9ee
# dull white
color7 #fdfff1
# bright white
color15 #fdfff1

View file

@ -1,47 +0,0 @@
background #403e41
foreground #fcfcfa
cursor #fcfcfa
cursor_text_color #000000
selection_foreground #403e41
selection_background #fcfcfa
# dull black
color0 #403e41
# light black
color8 #727072
# dull red
color1 #ff6188
# light red
color9 #ff6188
# dull green
color2 #a9dc76
# light green
color10 #a9dc76
# yellow
color3 #ffd866
# light yellow
color11 #ffd866
# blue
color4 #fc9867
# light blue
color12 #fc9867
# magenta
color5 #ab9df2
# light magenta
color13 #ab9df2
# cyan
color6 #78dce8
# light cyan
color14 #78dce8
# dull white
color7 #fcfcfa
# bright white
color15 #fcfcfa

View file

@ -1,47 +0,0 @@
background #3a4449
foreground #f2fffc
cursor #f2fffc
cursor_text_color #000000
selection_foreground #3a4449
selection_background #f2fffc
# dull black
color0 #3a4449
# light black
color8 #6b7678
# dull red
color1 #ff6d7e
# light red
color9 #ff6d7e
# dull green
color2 #a2e57b
# light green
color10 #a2e57b
# yellow
color3 #ffed72
# light yellow
color11 #ffed72
# blue
color4 #ffb270
# light blue
color12 #ffb270
# magenta
color5 #baa0f8
# light magenta
color13 #baa0f8
# cyan
color6 #7cd5f1
# light cyan
color14 #7cd5f1
# dull white
color7 #f2fffc
# bright white
color15 #f2fffc

View file

@ -1,47 +0,0 @@
background #3a3d4b
foreground #eaf2f1
cursor #eaf2f1
cursor_text_color #000000
selection_foreground #3a3d4b
selection_background #eaf2f1
# dull black
color0 #3a3d4b
# light black
color8 #696d77
# dull red
color1 #ff657a
# light red
color9 #ff657a
# dull green
color2 #bad761
# light green
color10 #bad761
# yellow
color3 #ffd76d
# light yellow
color11 #ffd76d
# blue
color4 #ff9b5e
# light blue
color12 #ff9b5e
# magenta
color5 #c39ac9
# light magenta
color13 #c39ac9
# cyan
color6 #9cd1bb
# light cyan
color14 #9cd1bb
# dull white
color7 #eaf2f1
# bright white
color15 #eaf2f1

View file

@ -1,47 +0,0 @@
background #403838
foreground #fff1f3
cursor #fff1f3
cursor_text_color #000000
selection_foreground #403838
selection_background #fff1f3
# dull black
color0 #403838
# light black
color8 #72696a
# dull red
color1 #fd6883
# light red
color9 #fd6883
# dull green
color2 #adda78
# light green
color10 #adda78
# yellow
color3 #f9cc6c
# light yellow
color11 #f9cc6c
# blue
color4 #f38d70
# light blue
color12 #f38d70
# magenta
color5 #a8a9eb
# light magenta
color13 #a8a9eb
# cyan
color6 #85dacc
# light cyan
color14 #85dacc
# dull white
color7 #fff1f3
# bright white
color15 #fff1f3

View file

@ -1,47 +1,19 @@
background #363537
foreground #f7f1ff
cursor #f7f1ff
cursor_text_color #000000
selection_foreground #363537
selection_background #f7f1ff
# dull black
color0 #363537
# light black
color8 #69676c
# dull red
color1 #fc618d
# light red
color9 #fc618d
# dull green
color2 #7bd88f
# light green
color10 #7bd88f
# yellow
color3 #fce566
# light yellow
color11 #fce566
# blue
color4 #fd9353
# light blue
color12 #fd9353
# magenta
color5 #948ae3
# light magenta
color13 #948ae3
# cyan
color6 #5ad4e6
# light cyan
color14 #5ad4e6
# dull white
color7 #f7f1ff
# bright white
color15 #f7f1ff
background #363536
foreground #f7f0ff
cursor #f7f0ff
selection_background #525053
color0 #363536
color8 #69666c
color1 #fb618d
color9 #fb618d
color2 #7bd78e
color10 #7bd78e
color3 #fbe566
color11 #fbe566
color4 #fc9253
color12 #fc9253
color5 #948ae2
color13 #948ae2
color6 #5ad3e5
color7 #f7f0ff
color15 #f7f0ff

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