Skip to content
This repository has been archived by the owner on Jan 6, 2025. It is now read-only.

Commit

Permalink
Add base24 template and rename repo to tinted-kermit (#2)
Browse files Browse the repository at this point in the history
* Reorder properties alphabetically/numerically and change color8 to base02

* Build themes for previous commit

* Add base24 template support and rename repo to tinted-kermit-terminal

* Build themes for previous commit
  • Loading branch information
JamyGolden authored Sep 29, 2024
1 parent 33b24d6 commit fe9f506
Show file tree
Hide file tree
Showing 286 changed files with 7,586 additions and 10,281 deletions.
31 changes: 25 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,41 @@
# base16-kermit
# tinted-kermit-terminal

This repository provides themes for the VTE-based [kermit terminal] and
a simple template that can be used with the [tinted-theming] color
schemes to generate config files.

Have a look at the [Base16 Gallery] to see some examples of the
Have a look at the [Tinted Theming Gallery] to see some examples of the
supported themes.

## Usage

```shell
curl https://raw.githubusercontent.com/orhun/base16-kermit/master/themes/base16-default.config > ~/.config/kermit.conf
### Manual

```sh
curl https://raw.githubusercontent.com/tinted-theming/tinted-kermit-terminal/main/themes/base16-default-dark.config > ~/.config/kermit.conf
```

### Tinty

If you use [Tinty] to set your themes, complete the following steps to
update your theme when running `tinty apply base16-default-dark` (where
`base16-default-dark` is a placeholder scheme name):

```toml
[[items]]
path = "https://github.com/tinted-theming/tinted-kermit-terminal"
name = "tinted-kermit-terminal"
themes-dir = "themes"
hook = "cp -f %f ~/.config/kermit.conf"
supported-systems = ["base16", "base24"]
```

## License

[The MIT License](https://opensource.org/licenses/MIT)
[The MIT License]

[Tinty]: https://github.com/tinted-theming/tinty
[kermit terminal]: https://github.com/orhun/kermit
[tinted-theming]: https://github.com/tinted-theming/home
[Base16 Gallery]: https://tinted-theming.github.io/base16-gallery/
[Tinted Theming Gallery]: https://tinted-theming.github.io/base16-gallery/
[The MIT License]: https://opensource.org/licenses/MIT
40 changes: 40 additions & 0 deletions templates/base16.mustache
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Scheme name: {{scheme-name}}
# Scheme system: {{scheme-system}}
# Scheme author: {{scheme-author}}
# Template author: https://github.com/tinted-theming/tinted-kermit-terminal

# Foreground color
foreground 0x{{base05-hex}}
foreground_bold 0x{{base06-hex}}

# Cursor color
cursor 0x{{base06-hex}}
cursor_foreground 0x{{base00-hex}}

# Background color
background 0x{{base00-hex}}

color0 0x{{base00-hex}} # base00 - Black
color1 0x{{base08-hex}} # base08 - Red
color2 0x{{base0B-hex}} # base0B - Green
color3 0x{{base0A-hex}} # base0A - Yellow
color4 0x{{base0D-hex}} # base0D - Blue
color5 0x{{base0E-hex}} # base0E - Magenta
color6 0x{{base0C-hex}} # base0C - Cyan
color7 0x{{base05-hex}} # base05 - White
color8 0x{{base02-hex}} # base02 - Bright Black
color9 0x{{base08-hex}} # base08 - Bright Red
color10 0x{{base0B-hex}} # base0B - Bright Green
color11 0x{{base0A-hex}} # base0A - Bright Yellow
color12 0x{{base0D-hex}} # base0D - Bright Blue
color13 0x{{base0E-hex}} # base0E - Bright Magenta
color14 0x{{base0C-hex}} # base0C - Bright Cyan
color15 0x{{base07-hex}} # base07 - Bright White

## Extra colors
color16 0x{{base09-hex}} # base09
color17 0x{{base0F-hex}} # base0F
color18 0x{{base01-hex}} # base01
color19 0x{{base02-hex}} # base02
color20 0x{{base04-hex}} # base04
color21 0x{{base06-hex}} # base06
40 changes: 40 additions & 0 deletions templates/base24.mustache
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Scheme name: {{scheme-name}}
# Scheme system: {{scheme-system}}
# Scheme author: {{scheme-author}}
# Template author: https://github.com/tinted-theming/tinted-kermit-terminal

# Foreground color
foreground 0x{{base05-hex}}
foreground_bold 0x{{base06-hex}}

# Cursor color
cursor 0x{{base06-hex}}
cursor_foreground 0x{{base00-hex}}

# Background color
background 0x{{base00-hex}}

color0 0x{{base00-hex}} # base00 - Black
color1 0x{{base08-hex}} # base08 - Red
color2 0x{{base0B-hex}} # base0B - Green
color3 0x{{base0A-hex}} # base0A - Yellow
color4 0x{{base0D-hex}} # base0D - Blue
color5 0x{{base0E-hex}} # base0E - Magenta
color6 0x{{base0C-hex}} # base0C - Cyan
color7 0x{{base05-hex}} # base05 - White
color8 0x{{base02-hex}} # base02 - Bright Black
color9 0x{{base012-hex}} # base12 - Bright Red
color10 0x{{base14-hex}} # base14 - Bright Green
color11 0x{{base13-hex}} # base13 - Bright Yellow
color12 0x{{base16-hex}} # base16 - Bright Blue
color13 0x{{base17-hex}} # base17 - Bright Magenta
color14 0x{{base15-hex}} # base15 - Bright Cyan
color15 0x{{base07-hex}} # base07 - Bright White

## Extra colors
color16 0x{{base09-hex}} # base09
color17 0x{{base0F-hex}} # base0F
color18 0x{{base01-hex}} # base01
color19 0x{{base02-hex}} # base02
color20 0x{{base04-hex}} # base04
color21 0x{{base06-hex}} # base06
8 changes: 7 additions & 1 deletion templates/config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
default:
base16:
extension: .config
output: themes
supported-systems: [base16]

base24:
extension: .config
output: themes
supported-systems: [base24]
52 changes: 0 additions & 52 deletions templates/default.mustache

This file was deleted.

64 changes: 26 additions & 38 deletions themes/base16-3024.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Base16 3024 - kermit color config
# Author: Jan T. Sott (http://github.com/idleberg)
# Scheme name: 3024
# Scheme system: base16
# Scheme author: Jan T. Sott (http://github.com/idleberg)
# Template author: https://github.com/tinted-theming/tinted-kermit-terminal

# Foreground color
foreground 0xa5a2a2
Expand All @@ -12,41 +14,27 @@ cursor_foreground 0x090300
# Background color
background 0x090300

# Color palette (16)
## Black, Gray, Silver, White
color0 0x090300
color8 0x5c5855
color7 0xa5a2a2
color15 0xf7f7f7

## Red
color1 0xdb2d20
color9 0xdb2d20

## Green
color2 0x01a252
color10 0x01a252

## Yellow
color3 0xfded02
color11 0xfded02

## Blue
color4 0x01a0e4
color12 0x01a0e4

## Purple
color5 0xa16a94
color13 0xa16a94

## Teal
color6 0xb5e4f4
color14 0xb5e4f4
color0 0x090300 # base00 - Black
color1 0xdb2d20 # base08 - Red
color2 0x01a252 # base0B - Green
color3 0xfded02 # base0A - Yellow
color4 0x01a0e4 # base0D - Blue
color5 0xa16a94 # base0E - Magenta
color6 0xb5e4f4 # base0C - Cyan
color7 0xa5a2a2 # base05 - White
color8 0x4a4543 # base02 - Bright Black
color9 0xdb2d20 # base08 - Bright Red
color10 0x01a252 # base0B - Bright Green
color11 0xfded02 # base0A - Bright Yellow
color12 0x01a0e4 # base0D - Bright Blue
color13 0xa16a94 # base0E - Bright Magenta
color14 0xb5e4f4 # base0C - Bright Cyan
color15 0xf7f7f7 # base07 - Bright White

## Extra colors
color16 0xe8bbd0
color17 0xcdab53
color18 0x3a3432
color19 0x4a4543
color20 0x807d7c
color21 0xd6d5d4
color16 0xe8bbd0 # base09
color17 0xcdab53 # base0F
color18 0x3a3432 # base01
color19 0x4a4543 # base02
color20 0x807d7c # base04
color21 0xd6d5d4 # base06
64 changes: 26 additions & 38 deletions themes/base16-apathy.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Base16 Apathy - kermit color config
# Author: Jannik Siebert (https://github.com/janniks)
# Scheme name: Apathy
# Scheme system: base16
# Scheme author: Jannik Siebert (https://github.com/janniks)
# Template author: https://github.com/tinted-theming/tinted-kermit-terminal

# Foreground color
foreground 0x81b5ac
Expand All @@ -12,41 +14,27 @@ cursor_foreground 0x031a16
# Background color
background 0x031a16

# Color palette (16)
## Black, Gray, Silver, White
color0 0x031a16
color8 0x2b685e
color7 0x81b5ac
color15 0xd2e7e4

## Red
color1 0x3e9688
color9 0x3e9688

## Green
color2 0x883e96
color10 0x883e96

## Yellow
color3 0x3e4c96
color11 0x3e4c96

## Blue
color4 0x96883e
color12 0x96883e

## Purple
color5 0x4c963e
color13 0x4c963e

## Teal
color6 0x963e4c
color14 0x963e4c
color0 0x031a16 # base00 - Black
color1 0x3e9688 # base08 - Red
color2 0x883e96 # base0B - Green
color3 0x3e4c96 # base0A - Yellow
color4 0x96883e # base0D - Blue
color5 0x4c963e # base0E - Magenta
color6 0x963e4c # base0C - Cyan
color7 0x81b5ac # base05 - White
color8 0x184e45 # base02 - Bright Black
color9 0x3e9688 # base08 - Bright Red
color10 0x883e96 # base0B - Bright Green
color11 0x3e4c96 # base0A - Bright Yellow
color12 0x96883e # base0D - Bright Blue
color13 0x4c963e # base0E - Bright Magenta
color14 0x963e4c # base0C - Bright Cyan
color15 0xd2e7e4 # base07 - Bright White

## Extra colors
color16 0x3e7996
color17 0x3e965b
color18 0x0b342d
color19 0x184e45
color20 0x5f9c92
color21 0xa7cec8
color16 0x3e7996 # base09
color17 0x3e965b # base0F
color18 0x0b342d # base01
color19 0x184e45 # base02
color20 0x5f9c92 # base04
color21 0xa7cec8 # base06
Loading

0 comments on commit fe9f506

Please sign in to comment.