Skip to content

Commit

Permalink
Add base24 template and rename repo to tinted-termite
Browse files Browse the repository at this point in the history
  • Loading branch information
JamyGolden committed Sep 21, 2024
1 parent 14088a9 commit ce5b6ca
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 14 deletions.
24 changes: 15 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
# base16-termite
# tinted-termite

This repository is meant to work with
[tinted-theming/home](https://github.com/tinted-theming/home).
It provides a simple template that can be used with the base16 color schemes to
generate a functional config file for
[thestinger/termite](https://github.com/thestinger/termite),
a keyboard-centric VTE-based terminal.

A [Tinted Theming](https://github.com/tinted-theming/home). template repository for [Termite].

tinted-termite provides a simple template that can be used with the
base16 and base24 color schemes to generate a functional config file for
[thestinger/termite](https://github.com/thestinger/termite), a
keyboard-centric VTE-based terminal.

To use, you can copy one of the config files in themes/ or use curl:

```
```sh
mkdir -p ~/.config/termite
curl https://raw.githubusercontent.com/tinted-theming/base16-termite/master/themes/base16-default-dark.config >> ~/.config/termite/config
curl https://raw.githubusercontent.com/tinted-theming/tinted-termite/main/themes/base16-default-dark.config >> ~/.config/termite/config
```

[Tinted Theming]: https://github.com/tinted-theming/home
[Termite]: https://github.com/thestinger/termite
[base16]: https://github.com/tinted-theming/home
[base24]: https://github.com/tinted-theming/base24
5 changes: 1 addition & 4 deletions templates/default.mustache → templates/base16.mustache
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
[colors]
# {{scheme-system}} {{scheme-name}}
# Scheme author: {{scheme-author}}
# Template author: Tinted Theming (https://github.com/tinted-theming)
# Template author: Tinted Theming (https://github.com/tinted-theming/tinted-termite)

foreground = #{{base05-hex}}
foreground_bold = #{{base05-hex}}
cursor = #{{base05-hex}}
cursor_foreground = #{{base00-hex}}
background = #{{base00-hex}}

# 16 color space

# Black, Gray, Silver, White
color0 = #{{base00-hex}} # base00 - Black
color1 = #{{base08-hex}} # base08 - Red
color2 = #{{base0B-hex}} # base0B - Green
Expand Down
33 changes: 33 additions & 0 deletions templates/base24.mustache
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[colors]
# {{scheme-system}} {{scheme-name}}
# Scheme author: {{scheme-author}}
# Template author: Tinted Theming (https://github.com/tinted-theming/tinted-termite)

foreground = #{{base05-hex}}
foreground_bold = #{{base05-hex}}
cursor = #{{base05-hex}}
cursor_foreground = #{{base00-hex}}
background = #{{base00-hex}}

color0 = #{{base00-hex}} # base00 - Black
color1 = #{{base08-hex}} # base08 - Red
color2 = #{{base0B-hex}} # base0B - Green
color3 = #{{base0A-hex}} # base0A - Yellow
color4 = #{{base0D-hex}} # base0D - Blue
color5 = #{{base0E-hex}} # base0E - Magenta
color6 = #{{base0C-hex}} # base0C - Cyan
color7 = #{{base05-hex}} # base05 - White
color8 = #{{base02-hex}} # base02 - Bright Black
color9 = #{{base12-hex}} # base12 - Bright Red
color10 = #{{base14-hex}} # base14 - Bright Green
color11 = #{{base13-hex}} # base13 - Bright Yellow
color12 = #{{base16-hex}} # base16 - Bright Blue
color13 = #{{base17-hex}} # base17 - Bright Magenta
color14 = #{{base15-hex}} # base15 - Bright Cyan
color15 = #{{base07-hex}} # base07 - Bright White
color16 = #{{base09-hex}} # base09
color17 = #{{base0F-hex}} # base0F
color18 = #{{base01-hex}} # base01
color19 = #{{base02-hex}} # base02
color20 = #{{base04-hex}} # base04
color21 = #{{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]

0 comments on commit ce5b6ca

Please sign in to comment.