-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add base24 template and rename repo to tinted-termite
- Loading branch information
1 parent
14088a9
commit ce5b6ca
Showing
4 changed files
with
56 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |