diff options
279 files changed, 9721 insertions, 0 deletions
@@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Aleksey Stepanov + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..b7a96b4 --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ +# base16-lazygit + +<!-- markdownlint-disable MD013 --> + +This repo provides templates for using [Base16](https://github.com/tinted-theming/home) color schemes with [lazygit](https://github.com/jesseduffield/lazygit), simple terminal UI for git commands. + +All files in `colors` directory generated by [lustache](https://luarocks.org/modules/olivine-labs/lustache) and [lustache-cli](https://github.com/djmattyg007/lustache-cli). + +## Examples + +### base16-onedark + + + +### base16-google-light + + + +## Usage + +You can find an example config in `examples/config.yml`. + +Place this file in: + +- Linux: `~/.config/lazygit/config.yml`. +- MacOS: `~/Library/Application\ Support/lazygit/config.yml`. +- Windows: `%LOCALAPPDATA%\lazygit\config.yml` (default location, but it will also be found in `%APPDATA%\lazygit\config.yml`. + +## License + +MIT diff --git a/builder.sh b/builder.sh new file mode 100755 index 0000000..5f944cb --- /dev/null +++ b/builder.sh @@ -0,0 +1,145 @@ +#!/bin/bash + +declare -g configFile="./templates/config.yaml" +declare -g fileName +declare -g headFileTemplate="./templates/head.mustache" +declare -g headJson +declare -g bodyFileTemplate="./templates/body.mustache" +declare -g bodyJson +declare -g tmpBodyJson + +declare -g schemesPath="$HOME/.local/share/tinted-theming/tinty/repos/schemes/base16/" +declare -g schemeSystem +declare -g schemeSlug +declare -g schemeSlugUnderscored +declare -g schemeName +declare -g schemeAuthor +declare -g schemeVariant + +declare -g tokenHex +declare -g tokenBgr +declare -g tokenHexR +declare -g tokenHexG +declare -g tokenHexB +declare -g tokenRgbR +declare -g tokenRgbG +declare -g tokenRgbB +declare -g tokenRgb16R +declare -g tokenRgb16G +declare -g tokenRgb16B +declare -g tokenDecR +declare -g tokenDecG +declare -g tokenDecB + +readarray -t schemesFiles < <(find "$schemesPath" -type f -iname '*.yaml') +readarray -t necessaryTokensPaletteList < <(grep -oP '\{\{\K[^}]+(?=\}\})' "$bodyFileTemplate" | awk -F'-' '{print $1}' | sort -u) + +function getProperty() { + yq -oy "$schemeFile" | yq -o=json -r ".$1" +} + +function createFile() { + # Extract filename entry from config + yq '.default.filename' "$configFile" >"/tmp/filename-base16-nwg-dock.txt" + + fileName=$(lustache-cli -i "/tmp/filename-base16-nwg-dock.txt" --json-data "$headJson") + + if [[ -e ./"$fileName" ]]; then + return + else + touch ./"$fileName" + fi +} + +for schemeFile in "${schemesFiles[@]}"; do + schemeName=$(getProperty "name") + schemeAuthor=$(getProperty "author") + schemeSlug=$(basename "$schemeFile" .yaml) + schemeSlugUnderscored="${schemeSlug//-/_}" + schemeSystem=$(yq '.default.supported-systems[0]' "$configFile") + schemeVariant=$(getProperty "variant") + + headJson=$( + jq \ + --null-input \ + --arg schemeName "$schemeName" \ + --arg schemeAuthor "$schemeAuthor" \ + --arg schemeSlug "$schemeSlug" \ + --arg schemeSlugUnderscored "$schemeSlugUnderscored" \ + --arg schemeSystem "$schemeSystem" \ + --arg schemeVariant "$schemeVariant" \ + '{ + "scheme-name": $schemeName, + "scheme-author": $schemeAuthor, + "scheme-slug": $schemeSlug, + "scheme-slug-underscored": $schemeSlugUnderscored, + "scheme-system": $schemeSystem, + "scheme-variant": $schemeVariant, + "hasVariant": (if $schemeVariant != "" then "true" else "false" end) + }' + ) + + for tokenName in "${necessaryTokensPaletteList[@]}"; do + tokenHex=$(yq -oy "$schemeFile" | yq -o=json -r ".palette.$tokenName") + tokenBgr=$(echo "$tokenHex" | rev) + tokenHexR=${tokenHex:0:2} + tokenHexG=${tokenHex:2:2} + tokenHexB=${tokenHex: -2} + tokenRgbR=$((16#$tokenHexR)) + tokenRgbG=$((16#$tokenHexG)) + tokenRgbB=$((16#$tokenHexB)) + tokenRgb16R=$(echo "($tokenRgbR / 255) * 65535" | bc -l | awk '{print int($1)}') + tokenRgb16G=$(echo "($tokenRgbG / 255) * 65535" | bc -l | awk '{print int($1)}') + tokenRgb16B=$(echo "($tokenRgbB / 255) * 65535" | bc -l | awk '{print int($1)}') + tokenDecR=$(echo "scale=4; $tokenRgbR / 255" | bc) + tokenDecG=$(echo "scale=4; $tokenRgbG / 255" | bc) + tokenDecB=$(echo "scale=4; $tokenRgbB / 255" | bc) + + tmpBodyJson=$( + jq \ + --null-input \ + --arg tokenName "$tokenName" \ + --arg tokenHex "$tokenHex" \ + --arg tokenBgr "$tokenBgr" \ + --arg tokenHexR "$tokenHexR" \ + --arg tokenHexG "$tokenHexG" \ + --arg tokenHexB "$tokenHexB" \ + --arg tokenRgbR "$tokenRgbR" \ + --arg tokenRgbG "$tokenRgbG" \ + --arg tokenRgbB "$tokenRgbB" \ + --arg tokenRgb16R "$tokenRgb16R" \ + --arg tokenRgb16G "$tokenRgb16G" \ + --arg tokenRgb16B "$tokenRgb16B" \ + --arg tokenDecR "$tokenDecR" \ + --arg tokenDecG "$tokenDecG" \ + --arg tokenDecB "$tokenDecB" \ + '{ + ($tokenName + "-hex"): $tokenHex, + ($tokenName + "-bgr"): $tokenBgr, + ($tokenName + "-hex-r"): $tokenHexR, + ($tokenName + "-hex-g"): $tokenHexG, + ($tokenName + "-hex-b"): $tokenHexB, + ($tokenName + "-rgb-r"): $tokenRgbR, + ($tokenName + "-rgb-g"): $tokenRgbG, + ($tokenName + "-rgb-b"): $tokenRgbB, + ($tokenName + "-rgb16-r"): $tokenRgb16R, + ($tokenName + "-rgb16-g"): $tokenRgb16G, + ($tokenName + "-rgb16-b"): $tokenRgb16B, + ($tokenName + "-dec-r"): $tokenDecR, + ($tokenName + "-dec-g"): $tokenDecG, + ($tokenName + "-dec-b"): $tokenDecB + }' + ) + + bodyJson=$(echo "$bodyJson" "$tmpBodyJson" | jq -s 'add') + done + + createFile + + lustache-cli -i "$headFileTemplate" --json-data "$headJson" >./"$fileName" + + echo >>./"$fileName" + + lustache-cli -i "$bodyFileTemplate" --json-data "$bodyJson" >>./"$fileName" + +done diff --git a/colors/base16-3024.yml b/colors/base16-3024.yml new file mode 100644 index 0000000..7701842 --- /dev/null +++ b/colors/base16-3024.yml @@ -0,0 +1,35 @@ +# +# +# name: 3024 +# author: Jan T. Sott (http://github.com/idleberg) +# slug: 3024 +# slug-underscored: 3024 +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#01a0e4' + - bold + inactiveBorderColor: + - '#5c5855' + searchingActiveBorderColor: + - '#e8bbd0' + optionsTextColor: + - '#01a0e4' + selectedLineBgColor: + - '#4a4543' + cherryPickedCommitBgColor: + - '#5c5855' + cherryPickedCommitFgColor: + - '#01a0e4' + markedBaseCommitFgColor: + - '#01a0e4' + unstagedChangesColor: + - '#db2d20' + defaultFgColor: + - '#a5a2a2' diff --git a/colors/base16-apathy.yml b/colors/base16-apathy.yml new file mode 100644 index 0000000..ec4aa6a --- /dev/null +++ b/colors/base16-apathy.yml @@ -0,0 +1,35 @@ +# +# +# name: Apathy +# author: Jannik Siebert (https://github.com/janniks) +# slug: apathy +# slug-underscored: apathy +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#96883E' + - bold + inactiveBorderColor: + - '#2B685E' + searchingActiveBorderColor: + - '#3E7996' + optionsTextColor: + - '#96883E' + selectedLineBgColor: + - '#184E45' + cherryPickedCommitBgColor: + - '#2B685E' + cherryPickedCommitFgColor: + - '#96883E' + markedBaseCommitFgColor: + - '#96883E' + unstagedChangesColor: + - '#3E9688' + defaultFgColor: + - '#81B5AC' diff --git a/colors/base16-apprentice.yml b/colors/base16-apprentice.yml new file mode 100644 index 0000000..1a14707 --- /dev/null +++ b/colors/base16-apprentice.yml @@ -0,0 +1,35 @@ +# +# +# name: Apprentice +# author: romainl +# slug: apprentice +# slug-underscored: apprentice +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#8787AF' + - bold + inactiveBorderColor: + - '#87875F' + searchingActiveBorderColor: + - '#FF8700' + optionsTextColor: + - '#8787AF' + selectedLineBgColor: + - '#5F875F' + cherryPickedCommitBgColor: + - '#87875F' + cherryPickedCommitFgColor: + - '#8787AF' + markedBaseCommitFgColor: + - '#8787AF' + unstagedChangesColor: + - '#444444' + defaultFgColor: + - '#5F5F87' diff --git a/colors/base16-ashes.yml b/colors/base16-ashes.yml new file mode 100644 index 0000000..3de9480 --- /dev/null +++ b/colors/base16-ashes.yml @@ -0,0 +1,35 @@ +# +# +# name: Ashes +# author: Jannik Siebert (https://github.com/janniks) +# slug: ashes +# slug-underscored: ashes +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#AE95C7' + - bold + inactiveBorderColor: + - '#747C84' + searchingActiveBorderColor: + - '#C7C795' + optionsTextColor: + - '#AE95C7' + selectedLineBgColor: + - '#565E65' + cherryPickedCommitBgColor: + - '#747C84' + cherryPickedCommitFgColor: + - '#AE95C7' + markedBaseCommitFgColor: + - '#AE95C7' + unstagedChangesColor: + - '#C7AE95' + defaultFgColor: + - '#C7CCD1' diff --git a/colors/base16-atelier-cave-light.yml b/colors/base16-atelier-cave-light.yml new file mode 100644 index 0000000..cba8ada --- /dev/null +++ b/colors/base16-atelier-cave-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Cave Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-cave-light +# slug-underscored: atelier_cave_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#576ddb' + - bold + inactiveBorderColor: + - '#7e7887' + searchingActiveBorderColor: + - '#aa573c' + optionsTextColor: + - '#576ddb' + selectedLineBgColor: + - '#8b8792' + cherryPickedCommitBgColor: + - '#7e7887' + cherryPickedCommitFgColor: + - '#576ddb' + markedBaseCommitFgColor: + - '#576ddb' + unstagedChangesColor: + - '#be4678' + defaultFgColor: + - '#585260' diff --git a/colors/base16-atelier-cave.yml b/colors/base16-atelier-cave.yml new file mode 100644 index 0000000..ca961a7 --- /dev/null +++ b/colors/base16-atelier-cave.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Cave +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-cave +# slug-underscored: atelier_cave +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#576ddb' + - bold + inactiveBorderColor: + - '#655f6d' + searchingActiveBorderColor: + - '#aa573c' + optionsTextColor: + - '#576ddb' + selectedLineBgColor: + - '#585260' + cherryPickedCommitBgColor: + - '#655f6d' + cherryPickedCommitFgColor: + - '#576ddb' + markedBaseCommitFgColor: + - '#576ddb' + unstagedChangesColor: + - '#be4678' + defaultFgColor: + - '#8b8792' diff --git a/colors/base16-atelier-dune-light.yml b/colors/base16-atelier-dune-light.yml new file mode 100644 index 0000000..d926841 --- /dev/null +++ b/colors/base16-atelier-dune-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Dune Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-dune-light +# slug-underscored: atelier_dune_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6684e1' + - bold + inactiveBorderColor: + - '#999580' + searchingActiveBorderColor: + - '#b65611' + optionsTextColor: + - '#6684e1' + selectedLineBgColor: + - '#a6a28c' + cherryPickedCommitBgColor: + - '#999580' + cherryPickedCommitFgColor: + - '#6684e1' + markedBaseCommitFgColor: + - '#6684e1' + unstagedChangesColor: + - '#d73737' + defaultFgColor: + - '#6e6b5e' diff --git a/colors/base16-atelier-dune.yml b/colors/base16-atelier-dune.yml new file mode 100644 index 0000000..9e462ef --- /dev/null +++ b/colors/base16-atelier-dune.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Dune +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-dune +# slug-underscored: atelier_dune +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6684e1' + - bold + inactiveBorderColor: + - '#7d7a68' + searchingActiveBorderColor: + - '#b65611' + optionsTextColor: + - '#6684e1' + selectedLineBgColor: + - '#6e6b5e' + cherryPickedCommitBgColor: + - '#7d7a68' + cherryPickedCommitFgColor: + - '#6684e1' + markedBaseCommitFgColor: + - '#6684e1' + unstagedChangesColor: + - '#d73737' + defaultFgColor: + - '#a6a28c' diff --git a/colors/base16-atelier-estuary-light.yml b/colors/base16-atelier-estuary-light.yml new file mode 100644 index 0000000..378301e --- /dev/null +++ b/colors/base16-atelier-estuary-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Estuary Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-estuary-light +# slug-underscored: atelier_estuary_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#36a166' + - bold + inactiveBorderColor: + - '#878573' + searchingActiveBorderColor: + - '#ae7313' + optionsTextColor: + - '#36a166' + selectedLineBgColor: + - '#929181' + cherryPickedCommitBgColor: + - '#878573' + cherryPickedCommitFgColor: + - '#36a166' + markedBaseCommitFgColor: + - '#36a166' + unstagedChangesColor: + - '#ba6236' + defaultFgColor: + - '#5f5e4e' diff --git a/colors/base16-atelier-estuary.yml b/colors/base16-atelier-estuary.yml new file mode 100644 index 0000000..7f8a5a1 --- /dev/null +++ b/colors/base16-atelier-estuary.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Estuary +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-estuary +# slug-underscored: atelier_estuary +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#36a166' + - bold + inactiveBorderColor: + - '#6c6b5a' + searchingActiveBorderColor: + - '#ae7313' + optionsTextColor: + - '#36a166' + selectedLineBgColor: + - '#5f5e4e' + cherryPickedCommitBgColor: + - '#6c6b5a' + cherryPickedCommitFgColor: + - '#36a166' + markedBaseCommitFgColor: + - '#36a166' + unstagedChangesColor: + - '#ba6236' + defaultFgColor: + - '#929181' diff --git a/colors/base16-atelier-forest-light.yml b/colors/base16-atelier-forest-light.yml new file mode 100644 index 0000000..aa2a225 --- /dev/null +++ b/colors/base16-atelier-forest-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Forest Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-forest-light +# slug-underscored: atelier_forest_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#407ee7' + - bold + inactiveBorderColor: + - '#9c9491' + searchingActiveBorderColor: + - '#df5320' + optionsTextColor: + - '#407ee7' + selectedLineBgColor: + - '#a8a19f' + cherryPickedCommitBgColor: + - '#9c9491' + cherryPickedCommitFgColor: + - '#407ee7' + markedBaseCommitFgColor: + - '#407ee7' + unstagedChangesColor: + - '#f22c40' + defaultFgColor: + - '#68615e' diff --git a/colors/base16-atelier-forest.yml b/colors/base16-atelier-forest.yml new file mode 100644 index 0000000..eac044d --- /dev/null +++ b/colors/base16-atelier-forest.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Forest +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-forest +# slug-underscored: atelier_forest +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#407ee7' + - bold + inactiveBorderColor: + - '#766e6b' + searchingActiveBorderColor: + - '#df5320' + optionsTextColor: + - '#407ee7' + selectedLineBgColor: + - '#68615e' + cherryPickedCommitBgColor: + - '#766e6b' + cherryPickedCommitFgColor: + - '#407ee7' + markedBaseCommitFgColor: + - '#407ee7' + unstagedChangesColor: + - '#f22c40' + defaultFgColor: + - '#a8a19f' diff --git a/colors/base16-atelier-heath-light.yml b/colors/base16-atelier-heath-light.yml new file mode 100644 index 0000000..f7873f1 --- /dev/null +++ b/colors/base16-atelier-heath-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Heath Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-heath-light +# slug-underscored: atelier_heath_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#516aec' + - bold + inactiveBorderColor: + - '#9e8f9e' + searchingActiveBorderColor: + - '#a65926' + optionsTextColor: + - '#516aec' + selectedLineBgColor: + - '#ab9bab' + cherryPickedCommitBgColor: + - '#9e8f9e' + cherryPickedCommitFgColor: + - '#516aec' + markedBaseCommitFgColor: + - '#516aec' + unstagedChangesColor: + - '#ca402b' + defaultFgColor: + - '#695d69' diff --git a/colors/base16-atelier-heath.yml b/colors/base16-atelier-heath.yml new file mode 100644 index 0000000..b9149fb --- /dev/null +++ b/colors/base16-atelier-heath.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Heath +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-heath +# slug-underscored: atelier_heath +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#516aec' + - bold + inactiveBorderColor: + - '#776977' + searchingActiveBorderColor: + - '#a65926' + optionsTextColor: + - '#516aec' + selectedLineBgColor: + - '#695d69' + cherryPickedCommitBgColor: + - '#776977' + cherryPickedCommitFgColor: + - '#516aec' + markedBaseCommitFgColor: + - '#516aec' + unstagedChangesColor: + - '#ca402b' + defaultFgColor: + - '#ab9bab' diff --git a/colors/base16-atelier-lakeside-light.yml b/colors/base16-atelier-lakeside-light.yml new file mode 100644 index 0000000..7d5c0a1 --- /dev/null +++ b/colors/base16-atelier-lakeside-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Lakeside Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-lakeside-light +# slug-underscored: atelier_lakeside_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#257fad' + - bold + inactiveBorderColor: + - '#7195a8' + searchingActiveBorderColor: + - '#935c25' + optionsTextColor: + - '#257fad' + selectedLineBgColor: + - '#7ea2b4' + cherryPickedCommitBgColor: + - '#7195a8' + cherryPickedCommitFgColor: + - '#257fad' + markedBaseCommitFgColor: + - '#257fad' + unstagedChangesColor: + - '#d22d72' + defaultFgColor: + - '#516d7b' diff --git a/colors/base16-atelier-lakeside.yml b/colors/base16-atelier-lakeside.yml new file mode 100644 index 0000000..648034f --- /dev/null +++ b/colors/base16-atelier-lakeside.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Lakeside +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-lakeside +# slug-underscored: atelier_lakeside +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#257fad' + - bold + inactiveBorderColor: + - '#5a7b8c' + searchingActiveBorderColor: + - '#935c25' + optionsTextColor: + - '#257fad' + selectedLineBgColor: + - '#516d7b' + cherryPickedCommitBgColor: + - '#5a7b8c' + cherryPickedCommitFgColor: + - '#257fad' + markedBaseCommitFgColor: + - '#257fad' + unstagedChangesColor: + - '#d22d72' + defaultFgColor: + - '#7ea2b4' diff --git a/colors/base16-atelier-plateau-light.yml b/colors/base16-atelier-plateau-light.yml new file mode 100644 index 0000000..1f0c523 --- /dev/null +++ b/colors/base16-atelier-plateau-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Plateau Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-plateau-light +# slug-underscored: atelier_plateau_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7272ca' + - bold + inactiveBorderColor: + - '#7e7777' + searchingActiveBorderColor: + - '#b45a3c' + optionsTextColor: + - '#7272ca' + selectedLineBgColor: + - '#8a8585' + cherryPickedCommitBgColor: + - '#7e7777' + cherryPickedCommitFgColor: + - '#7272ca' + markedBaseCommitFgColor: + - '#7272ca' + unstagedChangesColor: + - '#ca4949' + defaultFgColor: + - '#585050' diff --git a/colors/base16-atelier-plateau.yml b/colors/base16-atelier-plateau.yml new file mode 100644 index 0000000..207c687 --- /dev/null +++ b/colors/base16-atelier-plateau.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Plateau +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-plateau +# slug-underscored: atelier_plateau +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7272ca' + - bold + inactiveBorderColor: + - '#655d5d' + searchingActiveBorderColor: + - '#b45a3c' + optionsTextColor: + - '#7272ca' + selectedLineBgColor: + - '#585050' + cherryPickedCommitBgColor: + - '#655d5d' + cherryPickedCommitFgColor: + - '#7272ca' + markedBaseCommitFgColor: + - '#7272ca' + unstagedChangesColor: + - '#ca4949' + defaultFgColor: + - '#8a8585' diff --git a/colors/base16-atelier-savanna-light.yml b/colors/base16-atelier-savanna-light.yml new file mode 100644 index 0000000..f43eb8b --- /dev/null +++ b/colors/base16-atelier-savanna-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Savanna Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-savanna-light +# slug-underscored: atelier_savanna_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#478c90' + - bold + inactiveBorderColor: + - '#78877d' + searchingActiveBorderColor: + - '#9f713c' + optionsTextColor: + - '#478c90' + selectedLineBgColor: + - '#87928a' + cherryPickedCommitBgColor: + - '#78877d' + cherryPickedCommitFgColor: + - '#478c90' + markedBaseCommitFgColor: + - '#478c90' + unstagedChangesColor: + - '#b16139' + defaultFgColor: + - '#526057' diff --git a/colors/base16-atelier-savanna.yml b/colors/base16-atelier-savanna.yml new file mode 100644 index 0000000..d2d7fcb --- /dev/null +++ b/colors/base16-atelier-savanna.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Savanna +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-savanna +# slug-underscored: atelier_savanna +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#478c90' + - bold + inactiveBorderColor: + - '#5f6d64' + searchingActiveBorderColor: + - '#9f713c' + optionsTextColor: + - '#478c90' + selectedLineBgColor: + - '#526057' + cherryPickedCommitBgColor: + - '#5f6d64' + cherryPickedCommitFgColor: + - '#478c90' + markedBaseCommitFgColor: + - '#478c90' + unstagedChangesColor: + - '#b16139' + defaultFgColor: + - '#87928a' diff --git a/colors/base16-atelier-seaside-light.yml b/colors/base16-atelier-seaside-light.yml new file mode 100644 index 0000000..1e50076 --- /dev/null +++ b/colors/base16-atelier-seaside-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Seaside Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-seaside-light +# slug-underscored: atelier_seaside_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3d62f5' + - bold + inactiveBorderColor: + - '#809980' + searchingActiveBorderColor: + - '#87711d' + optionsTextColor: + - '#3d62f5' + selectedLineBgColor: + - '#8ca68c' + cherryPickedCommitBgColor: + - '#809980' + cherryPickedCommitFgColor: + - '#3d62f5' + markedBaseCommitFgColor: + - '#3d62f5' + unstagedChangesColor: + - '#e6193c' + defaultFgColor: + - '#5e6e5e' diff --git a/colors/base16-atelier-seaside.yml b/colors/base16-atelier-seaside.yml new file mode 100644 index 0000000..d6fb486 --- /dev/null +++ b/colors/base16-atelier-seaside.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Seaside +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-seaside +# slug-underscored: atelier_seaside +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3d62f5' + - bold + inactiveBorderColor: + - '#687d68' + searchingActiveBorderColor: + - '#87711d' + optionsTextColor: + - '#3d62f5' + selectedLineBgColor: + - '#5e6e5e' + cherryPickedCommitBgColor: + - '#687d68' + cherryPickedCommitFgColor: + - '#3d62f5' + markedBaseCommitFgColor: + - '#3d62f5' + unstagedChangesColor: + - '#e6193c' + defaultFgColor: + - '#8ca68c' diff --git a/colors/base16-atelier-sulphurpool-light.yml b/colors/base16-atelier-sulphurpool-light.yml new file mode 100644 index 0000000..e484f90 --- /dev/null +++ b/colors/base16-atelier-sulphurpool-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Sulphurpool Light +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-sulphurpool-light +# slug-underscored: atelier_sulphurpool_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3d8fd1' + - bold + inactiveBorderColor: + - '#898ea4' + searchingActiveBorderColor: + - '#c76b29' + optionsTextColor: + - '#3d8fd1' + selectedLineBgColor: + - '#979db4' + cherryPickedCommitBgColor: + - '#898ea4' + cherryPickedCommitFgColor: + - '#3d8fd1' + markedBaseCommitFgColor: + - '#3d8fd1' + unstagedChangesColor: + - '#c94922' + defaultFgColor: + - '#5e6687' diff --git a/colors/base16-atelier-sulphurpool.yml b/colors/base16-atelier-sulphurpool.yml new file mode 100644 index 0000000..a544a1c --- /dev/null +++ b/colors/base16-atelier-sulphurpool.yml @@ -0,0 +1,35 @@ +# +# +# name: Atelier Sulphurpool +# author: Bram de Haan (http://atelierbramdehaan.nl) +# slug: atelier-sulphurpool +# slug-underscored: atelier_sulphurpool +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3d8fd1' + - bold + inactiveBorderColor: + - '#6b7394' + searchingActiveBorderColor: + - '#c76b29' + optionsTextColor: + - '#3d8fd1' + selectedLineBgColor: + - '#5e6687' + cherryPickedCommitBgColor: + - '#6b7394' + cherryPickedCommitFgColor: + - '#3d8fd1' + markedBaseCommitFgColor: + - '#3d8fd1' + unstagedChangesColor: + - '#c94922' + defaultFgColor: + - '#979db4' diff --git a/colors/base16-atlas.yml b/colors/base16-atlas.yml new file mode 100644 index 0000000..7b95cae --- /dev/null +++ b/colors/base16-atlas.yml @@ -0,0 +1,35 @@ +# +# +# name: Atlas +# author: Alex Lende (https://ajlende.com) +# slug: atlas +# slug-underscored: atlas +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#14747e' + - bold + inactiveBorderColor: + - '#6C8B91' + searchingActiveBorderColor: + - '#f08e48' + optionsTextColor: + - '#14747e' + selectedLineBgColor: + - '#517F8D' + cherryPickedCommitBgColor: + - '#6C8B91' + cherryPickedCommitFgColor: + - '#14747e' + markedBaseCommitFgColor: + - '#14747e' + unstagedChangesColor: + - '#ff5a67' + defaultFgColor: + - '#a1a19a' diff --git a/colors/base16-ayu-dark.yml b/colors/base16-ayu-dark.yml new file mode 100644 index 0000000..14fd3cb --- /dev/null +++ b/colors/base16-ayu-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Ayu Dark +# author: Khue Nguyen <Z5483Y@gmail.com> +# slug: ayu-dark +# slug-underscored: ayu_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#59C2FF' + - bold + inactiveBorderColor: + - '#3E4B59' + searchingActiveBorderColor: + - '#FF8F40' + optionsTextColor: + - '#59C2FF' + selectedLineBgColor: + - '#272D38' + cherryPickedCommitBgColor: + - '#3E4B59' + cherryPickedCommitFgColor: + - '#59C2FF' + markedBaseCommitFgColor: + - '#59C2FF' + unstagedChangesColor: + - '#F07178' + defaultFgColor: + - '#E6E1CF' diff --git a/colors/base16-ayu-light.yml b/colors/base16-ayu-light.yml new file mode 100644 index 0000000..a95b237 --- /dev/null +++ b/colors/base16-ayu-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Ayu Light +# author: Khue Nguyen <Z5483Y@gmail.com> +# slug: ayu-light +# slug-underscored: ayu_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#36A3D9' + - bold + inactiveBorderColor: + - '#ABB0B6' + searchingActiveBorderColor: + - '#FA8D3E' + optionsTextColor: + - '#36A3D9' + selectedLineBgColor: + - '#F8F9FA' + cherryPickedCommitBgColor: + - '#ABB0B6' + cherryPickedCommitFgColor: + - '#36A3D9' + markedBaseCommitFgColor: + - '#36A3D9' + unstagedChangesColor: + - '#F07178' + defaultFgColor: + - '#5C6773' diff --git a/colors/base16-ayu-mirage.yml b/colors/base16-ayu-mirage.yml new file mode 100644 index 0000000..4a15c42 --- /dev/null +++ b/colors/base16-ayu-mirage.yml @@ -0,0 +1,35 @@ +# +# +# name: Ayu Mirage +# author: Khue Nguyen <Z5483Y@gmail.com> +# slug: ayu-mirage +# slug-underscored: ayu_mirage +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#5CCFE6' + - bold + inactiveBorderColor: + - '#707A8C' + searchingActiveBorderColor: + - '#FFAD66' + optionsTextColor: + - '#5CCFE6' + selectedLineBgColor: + - '#242936' + cherryPickedCommitBgColor: + - '#707A8C' + cherryPickedCommitFgColor: + - '#5CCFE6' + markedBaseCommitFgColor: + - '#5CCFE6' + unstagedChangesColor: + - '#F28779' + defaultFgColor: + - '#CCCAC2' diff --git a/colors/base16-aztec.yml b/colors/base16-aztec.yml new file mode 100644 index 0000000..978a687 --- /dev/null +++ b/colors/base16-aztec.yml @@ -0,0 +1,35 @@ +# +# +# name: Aztec +# author: TheNeverMan (github.com/TheNeverMan) +# slug: aztec +# slug-underscored: aztec +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#5B4A9F' + - bold + inactiveBorderColor: + - '#2E2E05' + searchingActiveBorderColor: + - '#EE8800' + optionsTextColor: + - '#5B4A9F' + selectedLineBgColor: + - '#242604' + cherryPickedCommitBgColor: + - '#2E2E05' + cherryPickedCommitFgColor: + - '#5B4A9F' + markedBaseCommitFgColor: + - '#5B4A9F' + unstagedChangesColor: + - '#EE2E00' + defaultFgColor: + - '#FFDA51' diff --git a/colors/base16-bespin.yml b/colors/base16-bespin.yml new file mode 100644 index 0000000..16b27c5 --- /dev/null +++ b/colors/base16-bespin.yml @@ -0,0 +1,35 @@ +# +# +# name: Bespin +# author: Jan T. Sott +# slug: bespin +# slug-underscored: bespin +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#5ea6ea' + - bold + inactiveBorderColor: + - '#666666' + searchingActiveBorderColor: + - '#cf7d34' + optionsTextColor: + - '#5ea6ea' + selectedLineBgColor: + - '#5e5d5c' + cherryPickedCommitBgColor: + - '#666666' + cherryPickedCommitFgColor: + - '#5ea6ea' + markedBaseCommitFgColor: + - '#5ea6ea' + unstagedChangesColor: + - '#cf6a4c' + defaultFgColor: + - '#8a8986' diff --git a/colors/base16-black-metal-bathory.yml b/colors/base16-black-metal-bathory.yml new file mode 100644 index 0000000..7ed21cf --- /dev/null +++ b/colors/base16-black-metal-bathory.yml @@ -0,0 +1,35 @@ +# +# +# name: Black Metal (Bathory) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-bathory +# slug-underscored: black_metal_bathory +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#888888' + - bold + inactiveBorderColor: + - '#333333' + searchingActiveBorderColor: + - '#aaaaaa' + optionsTextColor: + - '#888888' + selectedLineBgColor: + - '#222222' + cherryPickedCommitBgColor: + - '#333333' + cherryPickedCommitFgColor: + - '#888888' + markedBaseCommitFgColor: + - '#888888' + unstagedChangesColor: + - '#5f8787' + defaultFgColor: + - '#c1c1c1' diff --git a/colors/base16-black-metal-burzum.yml b/colors/base16-black-metal-burzum.yml new file mode 100644 index 0000000..3d1778e --- /dev/null +++ b/colors/base16-black-metal-burzum.yml @@ -0,0 +1,35 @@ +# +# +# name: Black Metal (Burzum) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-burzum +# slug-underscored: black_metal_burzum +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#888888' + - bold + inactiveBorderColor: + - '#333333' + searchingActiveBorderColor: + - '#aaaaaa' + optionsTextColor: + - '#888888' + selectedLineBgColor: + - '#222222' + cherryPickedCommitBgColor: + - '#333333' + cherryPickedCommitFgColor: + - '#888888' + markedBaseCommitFgColor: + - '#888888' + unstagedChangesColor: + - '#5f8787' + defaultFgColor: + - '#c1c1c1' diff --git a/colors/base16-black-metal-dark-funeral.yml b/colors/base16-black-metal-dark-funeral.yml new file mode 100644 index 0000000..832e239 --- /dev/null +++ b/colors/base16-black-metal-dark-funeral.yml @@ -0,0 +1,35 @@ +# +# +# name: Black Metal (Dark Funeral) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-dark-funeral +# slug-underscored: black_metal_dark_funeral +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#888888' + - bold + inactiveBorderColor: + - '#333333' + searchingActiveBorderColor: + - '#aaaaaa' + optionsTextColor: + - '#888888' + selectedLineBgColor: + - '#222222' + cherryPickedCommitBgColor: + - '#333333' + cherryPickedCommitFgColor: + - '#888888' + markedBaseCommitFgColor: + - '#888888' + unstagedChangesColor: + - '#5f8787' + defaultFgColor: + - '#c1c1c1' diff --git a/colors/base16-black-metal-gorgoroth.yml b/colors/base16-black-metal-gorgoroth.yml new file mode 100644 index 0000000..a4b2187 --- /dev/null +++ b/colors/base16-black-metal-gorgoroth.yml @@ -0,0 +1,35 @@ +# +# +# name: Black Metal (Gorgoroth) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-gorgoroth +# slug-underscored: black_metal_gorgoroth +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#888888' + - bold + inactiveBorderColor: + - '#333333' + searchingActiveBorderColor: + - '#aaaaaa' + optionsTextColor: + - '#888888' + selectedLineBgColor: + - '#222222' + cherryPickedCommitBgColor: + - '#333333' + cherryPickedCommitFgColor: + - '#888888' + markedBaseCommitFgColor: + - '#888888' + unstagedChangesColor: + - '#5f8787' + defaultFgColor: + - '#c1c1c1' diff --git a/colors/base16-black-metal-immortal.yml b/colors/base16-black-metal-immortal.yml new file mode 100644 index 0000000..f4fccce --- /dev/null +++ b/colors/base16-black-metal-immortal.yml @@ -0,0 +1,35 @@ +# +# +# name: Black Metal (Immortal) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-immortal +# slug-underscored: black_metal_immortal +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#888888' + - bold + inactiveBorderColor: + - '#333333' + searchingActiveBorderColor: + - '#aaaaaa' + optionsTextColor: + - '#888888' + selectedLineBgColor: + - '#222222' + cherryPickedCommitBgColor: + - '#333333' + cherryPickedCommitFgColor: + - '#888888' + markedBaseCommitFgColor: + - '#888888' + unstagedChangesColor: + - '#5f8787' + defaultFgColor: + - '#c1c1c1' diff --git a/colors/base16-black-metal-khold.yml b/colors/base16-black-metal-khold.yml new file mode 100644 index 0000000..8d54a0e --- /dev/null +++ b/colors/base16-black-metal-khold.yml @@ -0,0 +1,35 @@ +# +# +# name: Black Metal (Khold) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-khold +# slug-underscored: black_metal_khold +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#888888' + - bold + inactiveBorderColor: + - '#333333' + searchingActiveBorderColor: + - '#aaaaaa' + optionsTextColor: + - '#888888' + selectedLineBgColor: + - '#222222' + cherryPickedCommitBgColor: + - '#333333' + cherryPickedCommitFgColor: + - '#888888' + markedBaseCommitFgColor: + - '#888888' + unstagedChangesColor: + - '#5f8787' + defaultFgColor: + - '#c1c1c1' diff --git a/colors/base16-black-metal-marduk.yml b/colors/base16-black-metal-marduk.yml new file mode 100644 index 0000000..d4ca54a --- /dev/null +++ b/colors/base16-black-metal-marduk.yml @@ -0,0 +1,35 @@ +# +# +# name: Black Metal (Marduk) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-marduk +# slug-underscored: black_metal_marduk +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#888888' + - bold + inactiveBorderColor: + - '#333333' + searchingActiveBorderColor: + - '#aaaaaa' + optionsTextColor: + - '#888888' + selectedLineBgColor: + - '#222222' + cherryPickedCommitBgColor: + - '#333333' + cherryPickedCommitFgColor: + - '#888888' + markedBaseCommitFgColor: + - '#888888' + unstagedChangesColor: + - '#5f8787' + defaultFgColor: + - '#c1c1c1' diff --git a/colors/base16-black-metal-mayhem.yml b/colors/base16-black-metal-mayhem.yml new file mode 100644 index 0000000..8bf1d60 --- /dev/null +++ b/colors/base16-black-metal-mayhem.yml @@ -0,0 +1,35 @@ +# +# +# name: Black Metal (Mayhem) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-mayhem +# slug-underscored: black_metal_mayhem +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#888888' + - bold + inactiveBorderColor: + - '#333333' + searchingActiveBorderColor: + - '#aaaaaa' + optionsTextColor: + - '#888888' + selectedLineBgColor: + - '#222222' + cherryPickedCommitBgColor: + - '#333333' + cherryPickedCommitFgColor: + - '#888888' + markedBaseCommitFgColor: + - '#888888' + unstagedChangesColor: + - '#5f8787' + defaultFgColor: + - '#c1c1c1' diff --git a/colors/base16-black-metal-nile.yml b/colors/base16-black-metal-nile.yml new file mode 100644 index 0000000..bc46eae --- /dev/null +++ b/colors/base16-black-metal-nile.yml @@ -0,0 +1,35 @@ +# +# +# name: Black Metal (Nile) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-nile +# slug-underscored: black_metal_nile +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#888888' + - bold + inactiveBorderColor: + - '#333333' + searchingActiveBorderColor: + - '#aaaaaa' + optionsTextColor: + - '#888888' + selectedLineBgColor: + - '#222222' + cherryPickedCommitBgColor: + - '#333333' + cherryPickedCommitFgColor: + - '#888888' + markedBaseCommitFgColor: + - '#888888' + unstagedChangesColor: + - '#5f8787' + defaultFgColor: + - '#c1c1c1' diff --git a/colors/base16-black-metal-venom.yml b/colors/base16-black-metal-venom.yml new file mode 100644 index 0000000..d15fa56 --- /dev/null +++ b/colors/base16-black-metal-venom.yml @@ -0,0 +1,35 @@ +# +# +# name: Black Metal (Venom) +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal-venom +# slug-underscored: black_metal_venom +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#888888' + - bold + inactiveBorderColor: + - '#333333' + searchingActiveBorderColor: + - '#aaaaaa' + optionsTextColor: + - '#888888' + selectedLineBgColor: + - '#222222' + cherryPickedCommitBgColor: + - '#333333' + cherryPickedCommitFgColor: + - '#888888' + markedBaseCommitFgColor: + - '#888888' + unstagedChangesColor: + - '#5f8787' + defaultFgColor: + - '#c1c1c1' diff --git a/colors/base16-black-metal.yml b/colors/base16-black-metal.yml new file mode 100644 index 0000000..7da641e --- /dev/null +++ b/colors/base16-black-metal.yml @@ -0,0 +1,35 @@ +# +# +# name: Black Metal +# author: metalelf0 (https://github.com/metalelf0) +# slug: black-metal +# slug-underscored: black_metal +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#888888' + - bold + inactiveBorderColor: + - '#333333' + searchingActiveBorderColor: + - '#aaaaaa' + optionsTextColor: + - '#888888' + selectedLineBgColor: + - '#222222' + cherryPickedCommitBgColor: + - '#333333' + cherryPickedCommitFgColor: + - '#888888' + markedBaseCommitFgColor: + - '#888888' + unstagedChangesColor: + - '#5f8787' + defaultFgColor: + - '#c1c1c1' diff --git a/colors/base16-blueforest.yml b/colors/base16-blueforest.yml new file mode 100644 index 0000000..baf66a9 --- /dev/null +++ b/colors/base16-blueforest.yml @@ -0,0 +1,35 @@ +# +# +# name: Blue Forest +# author: alonsodomin (https://github.com/alonsodomin) +# slug: blueforest +# slug-underscored: blueforest +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#a2cff5' + - bold + inactiveBorderColor: + - '#a0ffa0' + searchingActiveBorderColor: + - '#FF8080' + optionsTextColor: + - '#a2cff5' + selectedLineBgColor: + - '#273e5c' + cherryPickedCommitBgColor: + - '#a0ffa0' + cherryPickedCommitFgColor: + - '#a2cff5' + markedBaseCommitFgColor: + - '#a2cff5' + unstagedChangesColor: + - '#fffab1' + defaultFgColor: + - '#FFCC33' diff --git a/colors/base16-blueish.yml b/colors/base16-blueish.yml new file mode 100644 index 0000000..af5c15f --- /dev/null +++ b/colors/base16-blueish.yml @@ -0,0 +1,35 @@ +# +# +# name: Blueish +# author: Ben Mayoras +# slug: blueish +# slug-underscored: blueish +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#82AAFF' + - bold + inactiveBorderColor: + - '#616D78' + searchingActiveBorderColor: + - '#F6A85C' + optionsTextColor: + - '#82AAFF' + selectedLineBgColor: + - '#46290A' + cherryPickedCommitBgColor: + - '#616D78' + cherryPickedCommitFgColor: + - '#82AAFF' + markedBaseCommitFgColor: + - '#82AAFF' + unstagedChangesColor: + - '#4CE587' + defaultFgColor: + - '#C8E1F8' diff --git a/colors/base16-brewer.yml b/colors/base16-brewer.yml new file mode 100644 index 0000000..d0e1fc1 --- /dev/null +++ b/colors/base16-brewer.yml @@ -0,0 +1,35 @@ +# +# +# name: Brewer +# author: Timothée Poisot (http://github.com/tpoisot) +# slug: brewer +# slug-underscored: brewer +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3182bd' + - bold + inactiveBorderColor: + - '#737475' + searchingActiveBorderColor: + - '#e6550d' + optionsTextColor: + - '#3182bd' + selectedLineBgColor: + - '#515253' + cherryPickedCommitBgColor: + - '#737475' + cherryPickedCommitFgColor: + - '#3182bd' + markedBaseCommitFgColor: + - '#3182bd' + unstagedChangesColor: + - '#e31a1c' + defaultFgColor: + - '#b7b8b9' diff --git a/colors/base16-bright.yml b/colors/base16-bright.yml new file mode 100644 index 0000000..80a9b8d --- /dev/null +++ b/colors/base16-bright.yml @@ -0,0 +1,35 @@ +# +# +# name: Bright +# author: Chris Kempson (http://chriskempson.com) +# slug: bright +# slug-underscored: bright +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6fb3d2' + - bold + inactiveBorderColor: + - '#b0b0b0' + searchingActiveBorderColor: + - '#fc6d24' + optionsTextColor: + - '#6fb3d2' + selectedLineBgColor: + - '#505050' + cherryPickedCommitBgColor: + - '#b0b0b0' + cherryPickedCommitFgColor: + - '#6fb3d2' + markedBaseCommitFgColor: + - '#6fb3d2' + unstagedChangesColor: + - '#fb0120' + defaultFgColor: + - '#e0e0e0' diff --git a/colors/base16-brogrammer.yml b/colors/base16-brogrammer.yml new file mode 100644 index 0000000..96a0301 --- /dev/null +++ b/colors/base16-brogrammer.yml @@ -0,0 +1,35 @@ +# +# +# name: Brogrammer +# author: Vik Ramanujam (http://github.com/piggyslasher) +# slug: brogrammer +# slug-underscored: brogrammer +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#5350b9' + - bold + inactiveBorderColor: + - '#ecba0f' + searchingActiveBorderColor: + - '#de352e' + optionsTextColor: + - '#5350b9' + selectedLineBgColor: + - '#2dc55e' + cherryPickedCommitBgColor: + - '#ecba0f' + cherryPickedCommitFgColor: + - '#5350b9' + markedBaseCommitFgColor: + - '#5350b9' + unstagedChangesColor: + - '#d6dbe5' + defaultFgColor: + - '#4e5ab7' diff --git a/colors/base16-brushtrees-dark.yml b/colors/base16-brushtrees-dark.yml new file mode 100644 index 0000000..ac58b37 --- /dev/null +++ b/colors/base16-brushtrees-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Brush Trees Dark +# author: Abraham White <abelincoln.white@gmail.com> +# slug: brushtrees-dark +# slug-underscored: brushtrees_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#868cb3' + - bold + inactiveBorderColor: + - '#8299A1' + searchingActiveBorderColor: + - '#d8bba2' + optionsTextColor: + - '#868cb3' + selectedLineBgColor: + - '#6D828E' + cherryPickedCommitBgColor: + - '#8299A1' + cherryPickedCommitFgColor: + - '#868cb3' + markedBaseCommitFgColor: + - '#868cb3' + unstagedChangesColor: + - '#b38686' + defaultFgColor: + - '#B0C5C8' diff --git a/colors/base16-brushtrees.yml b/colors/base16-brushtrees.yml new file mode 100644 index 0000000..0cfc5c1 --- /dev/null +++ b/colors/base16-brushtrees.yml @@ -0,0 +1,35 @@ +# +# +# name: Brush Trees +# author: Abraham White <abelincoln.white@gmail.com> +# slug: brushtrees +# slug-underscored: brushtrees +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#868cb3' + - bold + inactiveBorderColor: + - '#98AFB5' + searchingActiveBorderColor: + - '#d8bba2' + optionsTextColor: + - '#868cb3' + selectedLineBgColor: + - '#B0C5C8' + cherryPickedCommitBgColor: + - '#98AFB5' + cherryPickedCommitFgColor: + - '#868cb3' + markedBaseCommitFgColor: + - '#868cb3' + unstagedChangesColor: + - '#b38686' + defaultFgColor: + - '#6D828E' diff --git a/colors/base16-caroline.yml b/colors/base16-caroline.yml new file mode 100644 index 0000000..974d7c0 --- /dev/null +++ b/colors/base16-caroline.yml @@ -0,0 +1,35 @@ +# +# +# name: caroline +# author: ed (https://codeberg.org/ed) +# slug: caroline +# slug-underscored: caroline +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#684c59' + - bold + inactiveBorderColor: + - '#6d4745' + searchingActiveBorderColor: + - '#a63650' + optionsTextColor: + - '#684c59' + selectedLineBgColor: + - '#563837' + cherryPickedCommitBgColor: + - '#6d4745' + cherryPickedCommitFgColor: + - '#684c59' + markedBaseCommitFgColor: + - '#684c59' + unstagedChangesColor: + - '#c24f57' + defaultFgColor: + - '#a87569' diff --git a/colors/base16-catppuccin-frappe.yml b/colors/base16-catppuccin-frappe.yml new file mode 100644 index 0000000..1f71513 --- /dev/null +++ b/colors/base16-catppuccin-frappe.yml @@ -0,0 +1,35 @@ +# +# +# name: Catppuccin Frappe +# author: https://github.com/catppuccin/catppuccin +# slug: catppuccin-frappe +# slug-underscored: catppuccin_frappe +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#8caaee' + - bold + inactiveBorderColor: + - '#51576d' + searchingActiveBorderColor: + - '#ef9f76' + optionsTextColor: + - '#8caaee' + selectedLineBgColor: + - '#414559' + cherryPickedCommitBgColor: + - '#51576d' + cherryPickedCommitFgColor: + - '#8caaee' + markedBaseCommitFgColor: + - '#8caaee' + unstagedChangesColor: + - '#e78284' + defaultFgColor: + - '#c6d0f5' diff --git a/colors/base16-catppuccin-latte.yml b/colors/base16-catppuccin-latte.yml new file mode 100644 index 0000000..3a125e8 --- /dev/null +++ b/colors/base16-catppuccin-latte.yml @@ -0,0 +1,35 @@ +# +# +# name: Catppuccin Latte +# author: https://github.com/catppuccin/catppuccin +# slug: catppuccin-latte +# slug-underscored: catppuccin_latte +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#1e66f5' + - bold + inactiveBorderColor: + - '#bcc0cc' + searchingActiveBorderColor: + - '#fe640b' + optionsTextColor: + - '#1e66f5' + selectedLineBgColor: + - '#ccd0da' + cherryPickedCommitBgColor: + - '#bcc0cc' + cherryPickedCommitFgColor: + - '#1e66f5' + markedBaseCommitFgColor: + - '#1e66f5' + unstagedChangesColor: + - '#d20f39' + defaultFgColor: + - '#4c4f69' diff --git a/colors/base16-catppuccin-macchiato.yml b/colors/base16-catppuccin-macchiato.yml new file mode 100644 index 0000000..4ca5a13 --- /dev/null +++ b/colors/base16-catppuccin-macchiato.yml @@ -0,0 +1,35 @@ +# +# +# name: Catppuccin Macchiato +# author: https://github.com/catppuccin/catppuccin +# slug: catppuccin-macchiato +# slug-underscored: catppuccin_macchiato +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#8aadf4' + - bold + inactiveBorderColor: + - '#494d64' + searchingActiveBorderColor: + - '#f5a97f' + optionsTextColor: + - '#8aadf4' + selectedLineBgColor: + - '#363a4f' + cherryPickedCommitBgColor: + - '#494d64' + cherryPickedCommitFgColor: + - '#8aadf4' + markedBaseCommitFgColor: + - '#8aadf4' + unstagedChangesColor: + - '#ed8796' + defaultFgColor: + - '#cad3f5' diff --git a/colors/base16-catppuccin-mocha.yml b/colors/base16-catppuccin-mocha.yml new file mode 100644 index 0000000..bfd56b9 --- /dev/null +++ b/colors/base16-catppuccin-mocha.yml @@ -0,0 +1,35 @@ +# +# +# name: Catppuccin Mocha +# author: https://github.com/catppuccin/catppuccin +# slug: catppuccin-mocha +# slug-underscored: catppuccin_mocha +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#89b4fa' + - bold + inactiveBorderColor: + - '#45475a' + searchingActiveBorderColor: + - '#fab387' + optionsTextColor: + - '#89b4fa' + selectedLineBgColor: + - '#313244' + cherryPickedCommitBgColor: + - '#45475a' + cherryPickedCommitFgColor: + - '#89b4fa' + markedBaseCommitFgColor: + - '#89b4fa' + unstagedChangesColor: + - '#f38ba8' + defaultFgColor: + - '#cdd6f4' diff --git a/colors/base16-chalk.yml b/colors/base16-chalk.yml new file mode 100644 index 0000000..cffdac0 --- /dev/null +++ b/colors/base16-chalk.yml @@ -0,0 +1,35 @@ +# +# +# name: Chalk +# author: Chris Kempson (http://chriskempson.com) +# slug: chalk +# slug-underscored: chalk +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6fc2ef' + - bold + inactiveBorderColor: + - '#505050' + searchingActiveBorderColor: + - '#eda987' + optionsTextColor: + - '#6fc2ef' + selectedLineBgColor: + - '#303030' + cherryPickedCommitBgColor: + - '#505050' + cherryPickedCommitFgColor: + - '#6fc2ef' + markedBaseCommitFgColor: + - '#6fc2ef' + unstagedChangesColor: + - '#fb9fb1' + defaultFgColor: + - '#d0d0d0' diff --git a/colors/base16-circus.yml b/colors/base16-circus.yml new file mode 100644 index 0000000..42cf70b --- /dev/null +++ b/colors/base16-circus.yml @@ -0,0 +1,35 @@ +# +# +# name: Circus +# author: Stephan Boyer (https://github.com/stepchowfun) and Esther Wang (https://github.com/ewang12) +# slug: circus +# slug-underscored: circus +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#639ee4' + - bold + inactiveBorderColor: + - '#5f5a60' + searchingActiveBorderColor: + - '#4bb1a7' + optionsTextColor: + - '#639ee4' + selectedLineBgColor: + - '#303030' + cherryPickedCommitBgColor: + - '#5f5a60' + cherryPickedCommitFgColor: + - '#639ee4' + markedBaseCommitFgColor: + - '#639ee4' + unstagedChangesColor: + - '#dc657d' + defaultFgColor: + - '#a7a7a7' diff --git a/colors/base16-classic-dark.yml b/colors/base16-classic-dark.yml new file mode 100644 index 0000000..1bfbb85 --- /dev/null +++ b/colors/base16-classic-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Classic Dark +# author: Jason Heeris (http://heeris.id.au) +# slug: classic-dark +# slug-underscored: classic_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6A9FB5' + - bold + inactiveBorderColor: + - '#505050' + searchingActiveBorderColor: + - '#D28445' + optionsTextColor: + - '#6A9FB5' + selectedLineBgColor: + - '#303030' + cherryPickedCommitBgColor: + - '#505050' + cherryPickedCommitFgColor: + - '#6A9FB5' + markedBaseCommitFgColor: + - '#6A9FB5' + unstagedChangesColor: + - '#AC4142' + defaultFgColor: + - '#D0D0D0' diff --git a/colors/base16-classic-light.yml b/colors/base16-classic-light.yml new file mode 100644 index 0000000..a19795c --- /dev/null +++ b/colors/base16-classic-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Classic Light +# author: Jason Heeris (http://heeris.id.au) +# slug: classic-light +# slug-underscored: classic_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6A9FB5' + - bold + inactiveBorderColor: + - '#B0B0B0' + searchingActiveBorderColor: + - '#D28445' + optionsTextColor: + - '#6A9FB5' + selectedLineBgColor: + - '#D0D0D0' + cherryPickedCommitBgColor: + - '#B0B0B0' + cherryPickedCommitFgColor: + - '#6A9FB5' + markedBaseCommitFgColor: + - '#6A9FB5' + unstagedChangesColor: + - '#AC4142' + defaultFgColor: + - '#303030' diff --git a/colors/base16-codeschool.yml b/colors/base16-codeschool.yml new file mode 100644 index 0000000..d275fe5 --- /dev/null +++ b/colors/base16-codeschool.yml @@ -0,0 +1,35 @@ +# +# +# name: Codeschool +# author: blockloop +# slug: codeschool +# slug-underscored: codeschool +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#484d79' + - bold + inactiveBorderColor: + - '#3f4944' + searchingActiveBorderColor: + - '#43820d' + optionsTextColor: + - '#484d79' + selectedLineBgColor: + - '#2a343a' + cherryPickedCommitBgColor: + - '#3f4944' + cherryPickedCommitFgColor: + - '#484d79' + markedBaseCommitFgColor: + - '#484d79' + unstagedChangesColor: + - '#2a5491' + defaultFgColor: + - '#9ea7a6' diff --git a/colors/base16-colors.yml b/colors/base16-colors.yml new file mode 100644 index 0000000..6ac8afc --- /dev/null +++ b/colors/base16-colors.yml @@ -0,0 +1,35 @@ +# +# +# name: Colors +# author: mrmrs (http://clrs.cc) +# slug: colors +# slug-underscored: colors +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0074d9' + - bold + inactiveBorderColor: + - '#777777' + searchingActiveBorderColor: + - '#ff851b' + optionsTextColor: + - '#0074d9' + selectedLineBgColor: + - '#555555' + cherryPickedCommitBgColor: + - '#777777' + cherryPickedCommitFgColor: + - '#0074d9' + markedBaseCommitFgColor: + - '#0074d9' + unstagedChangesColor: + - '#ff4136' + defaultFgColor: + - '#bbbbbb' diff --git a/colors/base16-cupcake.yml b/colors/base16-cupcake.yml new file mode 100644 index 0000000..f863b6a --- /dev/null +++ b/colors/base16-cupcake.yml @@ -0,0 +1,35 @@ +# +# +# name: Cupcake +# author: Chris Kempson (http://chriskempson.com) +# slug: cupcake +# slug-underscored: cupcake +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7297B9' + - bold + inactiveBorderColor: + - '#bfb9c6' + searchingActiveBorderColor: + - '#EBB790' + optionsTextColor: + - '#7297B9' + selectedLineBgColor: + - '#d8d5dd' + cherryPickedCommitBgColor: + - '#bfb9c6' + cherryPickedCommitFgColor: + - '#7297B9' + markedBaseCommitFgColor: + - '#7297B9' + unstagedChangesColor: + - '#D57E85' + defaultFgColor: + - '#8b8198' diff --git a/colors/base16-cupertino.yml b/colors/base16-cupertino.yml new file mode 100644 index 0000000..29d5154 --- /dev/null +++ b/colors/base16-cupertino.yml @@ -0,0 +1,35 @@ +# +# +# name: Cupertino +# author: Defman21 +# slug: cupertino +# slug-underscored: cupertino +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0000ff' + - bold + inactiveBorderColor: + - '#808080' + searchingActiveBorderColor: + - '#eb8500' + optionsTextColor: + - '#0000ff' + selectedLineBgColor: + - '#c0c0c0' + cherryPickedCommitBgColor: + - '#808080' + cherryPickedCommitFgColor: + - '#0000ff' + markedBaseCommitFgColor: + - '#0000ff' + unstagedChangesColor: + - '#c41a15' + defaultFgColor: + - '#404040' diff --git a/colors/base16-da-one-black.yml b/colors/base16-da-one-black.yml new file mode 100644 index 0000000..d6ffcce --- /dev/null +++ b/colors/base16-da-one-black.yml @@ -0,0 +1,35 @@ +# +# +# name: Da One Black +# author: NNB (https://github.com/NNBnh) +# slug: da-one-black +# slug-underscored: da_one_black +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6bb8ff' + - bold + inactiveBorderColor: + - '#888888' + searchingActiveBorderColor: + - '#ffc387' + optionsTextColor: + - '#6bb8ff' + selectedLineBgColor: + - '#585858' + cherryPickedCommitBgColor: + - '#888888' + cherryPickedCommitFgColor: + - '#6bb8ff' + markedBaseCommitFgColor: + - '#6bb8ff' + unstagedChangesColor: + - '#fa7883' + defaultFgColor: + - '#ffffff' diff --git a/colors/base16-da-one-gray.yml b/colors/base16-da-one-gray.yml new file mode 100644 index 0000000..0ba432d --- /dev/null +++ b/colors/base16-da-one-gray.yml @@ -0,0 +1,35 @@ +# +# +# name: Da One Gray +# author: NNB (https://github.com/NNBnh) +# slug: da-one-gray +# slug-underscored: da_one_gray +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6bb8ff' + - bold + inactiveBorderColor: + - '#888888' + searchingActiveBorderColor: + - '#ffc387' + optionsTextColor: + - '#6bb8ff' + selectedLineBgColor: + - '#585858' + cherryPickedCommitBgColor: + - '#888888' + cherryPickedCommitFgColor: + - '#6bb8ff' + markedBaseCommitFgColor: + - '#6bb8ff' + unstagedChangesColor: + - '#fa7883' + defaultFgColor: + - '#ffffff' diff --git a/colors/base16-da-one-ocean.yml b/colors/base16-da-one-ocean.yml new file mode 100644 index 0000000..7287540 --- /dev/null +++ b/colors/base16-da-one-ocean.yml @@ -0,0 +1,35 @@ +# +# +# name: Da One Ocean +# author: NNB (https://github.com/NNBnh) +# slug: da-one-ocean +# slug-underscored: da_one_ocean +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6bb8ff' + - bold + inactiveBorderColor: + - '#878d96' + searchingActiveBorderColor: + - '#ffc387' + optionsTextColor: + - '#6bb8ff' + selectedLineBgColor: + - '#525866' + cherryPickedCommitBgColor: + - '#878d96' + cherryPickedCommitFgColor: + - '#6bb8ff' + markedBaseCommitFgColor: + - '#6bb8ff' + unstagedChangesColor: + - '#fa7883' + defaultFgColor: + - '#ffffff' diff --git a/colors/base16-da-one-paper.yml b/colors/base16-da-one-paper.yml new file mode 100644 index 0000000..1b4433f --- /dev/null +++ b/colors/base16-da-one-paper.yml @@ -0,0 +1,35 @@ +# +# +# name: Da One Paper +# author: NNB (https://github.com/NNBnh) +# slug: da-one-paper +# slug-underscored: da_one_paper +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#5890f8' + - bold + inactiveBorderColor: + - '#585858' + searchingActiveBorderColor: + - '#ff9470' + optionsTextColor: + - '#5890f8' + selectedLineBgColor: + - '#888888' + cherryPickedCommitBgColor: + - '#585858' + cherryPickedCommitFgColor: + - '#5890f8' + markedBaseCommitFgColor: + - '#5890f8' + unstagedChangesColor: + - '#de5d6e' + defaultFgColor: + - '#181818' diff --git a/colors/base16-da-one-sea.yml b/colors/base16-da-one-sea.yml new file mode 100644 index 0000000..91652db --- /dev/null +++ b/colors/base16-da-one-sea.yml @@ -0,0 +1,35 @@ +# +# +# name: Da One Sea +# author: NNB (https://github.com/NNBnh) +# slug: da-one-sea +# slug-underscored: da_one_sea +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6bb8ff' + - bold + inactiveBorderColor: + - '#878d96' + searchingActiveBorderColor: + - '#ffc387' + optionsTextColor: + - '#6bb8ff' + selectedLineBgColor: + - '#525866' + cherryPickedCommitBgColor: + - '#878d96' + cherryPickedCommitFgColor: + - '#6bb8ff' + markedBaseCommitFgColor: + - '#6bb8ff' + unstagedChangesColor: + - '#fa7883' + defaultFgColor: + - '#ffffff' diff --git a/colors/base16-da-one-white.yml b/colors/base16-da-one-white.yml new file mode 100644 index 0000000..ddc4c32 --- /dev/null +++ b/colors/base16-da-one-white.yml @@ -0,0 +1,35 @@ +# +# +# name: Da One White +# author: NNB (https://github.com/NNBnh) +# slug: da-one-white +# slug-underscored: da_one_white +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#5890f8' + - bold + inactiveBorderColor: + - '#585858' + searchingActiveBorderColor: + - '#ff9470' + optionsTextColor: + - '#5890f8' + selectedLineBgColor: + - '#888888' + cherryPickedCommitBgColor: + - '#585858' + cherryPickedCommitFgColor: + - '#5890f8' + markedBaseCommitFgColor: + - '#5890f8' + unstagedChangesColor: + - '#de5d6e' + defaultFgColor: + - '#181818' diff --git a/colors/base16-danqing-light.yml b/colors/base16-danqing-light.yml new file mode 100644 index 0000000..c4e1979 --- /dev/null +++ b/colors/base16-danqing-light.yml @@ -0,0 +1,35 @@ +# +# +# name: DanQing Light +# author: Wenhan Zhu (Cosmos) (zhuwenhan950913@gmail.com) +# slug: danqing-light +# slug-underscored: danqing_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#B0A4E3' + - bold + inactiveBorderColor: + - '#cad8d2' + searchingActiveBorderColor: + - '#B38A61' + optionsTextColor: + - '#B0A4E3' + selectedLineBgColor: + - '#e0f0eF' + cherryPickedCommitBgColor: + - '#cad8d2' + cherryPickedCommitFgColor: + - '#B0A4E3' + markedBaseCommitFgColor: + - '#B0A4E3' + unstagedChangesColor: + - '#F9906F' + defaultFgColor: + - '#5a605d' diff --git a/colors/base16-danqing.yml b/colors/base16-danqing.yml new file mode 100644 index 0000000..a9856da --- /dev/null +++ b/colors/base16-danqing.yml @@ -0,0 +1,35 @@ +# +# +# name: DanQing +# author: Wenhan Zhu (Cosmos) (zhuwenhan950913@gmail.com) +# slug: danqing +# slug-underscored: danqing +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#B0A4E3' + - bold + inactiveBorderColor: + - '#9da8a3' + searchingActiveBorderColor: + - '#B38A61' + optionsTextColor: + - '#B0A4E3' + selectedLineBgColor: + - '#5a605d' + cherryPickedCommitBgColor: + - '#9da8a3' + cherryPickedCommitFgColor: + - '#B0A4E3' + markedBaseCommitFgColor: + - '#B0A4E3' + unstagedChangesColor: + - '#F9906F' + defaultFgColor: + - '#e0f0eF' diff --git a/colors/base16-darcula.yml b/colors/base16-darcula.yml new file mode 100644 index 0000000..19ab759 --- /dev/null +++ b/colors/base16-darcula.yml @@ -0,0 +1,35 @@ +# +# +# name: Darcula +# author: jetbrains +# slug: darcula +# slug-underscored: darcula +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#9876aa' + - bold + inactiveBorderColor: + - '#606366' + searchingActiveBorderColor: + - '#689757' + optionsTextColor: + - '#9876aa' + selectedLineBgColor: + - '#323232' + cherryPickedCommitBgColor: + - '#606366' + cherryPickedCommitFgColor: + - '#9876aa' + markedBaseCommitFgColor: + - '#9876aa' + unstagedChangesColor: + - '#4eade5' + defaultFgColor: + - '#a9b7c6' diff --git a/colors/base16-darkmoss.yml b/colors/base16-darkmoss.yml new file mode 100644 index 0000000..b362d32 --- /dev/null +++ b/colors/base16-darkmoss.yml @@ -0,0 +1,35 @@ +# +# +# name: darkmoss +# author: Gabriel Avanzi (https://github.com/avanzzzi) +# slug: darkmoss +# slug-underscored: darkmoss +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#498091' + - bold + inactiveBorderColor: + - '#555e5f' + searchingActiveBorderColor: + - '#e6db74' + optionsTextColor: + - '#498091' + selectedLineBgColor: + - '#373c3d' + cherryPickedCommitBgColor: + - '#555e5f' + cherryPickedCommitFgColor: + - '#498091' + markedBaseCommitFgColor: + - '#498091' + unstagedChangesColor: + - '#ff4658' + defaultFgColor: + - '#c7c7a5' diff --git a/colors/base16-darktooth.yml b/colors/base16-darktooth.yml new file mode 100644 index 0000000..9c1daa5 --- /dev/null +++ b/colors/base16-darktooth.yml @@ -0,0 +1,35 @@ +# +# +# name: Darktooth +# author: Jason Milkins (https://github.com/jasonm23) +# slug: darktooth +# slug-underscored: darktooth +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0D6678' + - bold + inactiveBorderColor: + - '#665C54' + searchingActiveBorderColor: + - '#FE8625' + optionsTextColor: + - '#0D6678' + selectedLineBgColor: + - '#504945' + cherryPickedCommitBgColor: + - '#665C54' + cherryPickedCommitFgColor: + - '#0D6678' + markedBaseCommitFgColor: + - '#0D6678' + unstagedChangesColor: + - '#FB543F' + defaultFgColor: + - '#A89984' diff --git a/colors/base16-darkviolet.yml b/colors/base16-darkviolet.yml new file mode 100644 index 0000000..c3e1e31 --- /dev/null +++ b/colors/base16-darkviolet.yml @@ -0,0 +1,35 @@ +# +# +# name: Dark Violet +# author: ruler501 (https://github.com/ruler501/base16-darkviolet) +# slug: darkviolet +# slug-underscored: darkviolet +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#4136d9' + - bold + inactiveBorderColor: + - '#593380' + searchingActiveBorderColor: + - '#bb66cc' + optionsTextColor: + - '#4136d9' + selectedLineBgColor: + - '#432d59' + cherryPickedCommitBgColor: + - '#593380' + cherryPickedCommitFgColor: + - '#4136d9' + markedBaseCommitFgColor: + - '#4136d9' + unstagedChangesColor: + - '#a82ee6' + defaultFgColor: + - '#b08ae6' diff --git a/colors/base16-decaf.yml b/colors/base16-decaf.yml new file mode 100644 index 0000000..c9372c8 --- /dev/null +++ b/colors/base16-decaf.yml @@ -0,0 +1,35 @@ +# +# +# name: Decaf +# author: Alex Mirrington (https://github.com/alexmirrington) +# slug: decaf +# slug-underscored: decaf +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#90bee1' + - bold + inactiveBorderColor: + - '#777777' + searchingActiveBorderColor: + - '#ffbf70' + optionsTextColor: + - '#90bee1' + selectedLineBgColor: + - '#515151' + cherryPickedCommitBgColor: + - '#777777' + cherryPickedCommitFgColor: + - '#90bee1' + markedBaseCommitFgColor: + - '#90bee1' + unstagedChangesColor: + - '#ff7f7b' + defaultFgColor: + - '#cccccc' diff --git a/colors/base16-deep-oceanic-next.yml b/colors/base16-deep-oceanic-next.yml new file mode 100644 index 0000000..89208c7 --- /dev/null +++ b/colors/base16-deep-oceanic-next.yml @@ -0,0 +1,35 @@ +# +# +# name: Deep Oceanic Next +# author: spearkkk (https://github.com/spearkkk/deep-oceanic-next) +# slug: deep-oceanic-next +# slug-underscored: deep_oceanic_next +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3a82e6' + - bold + inactiveBorderColor: + - '#007a8a' + searchingActiveBorderColor: + - '#ff6a4b' + optionsTextColor: + - '#3a82e6' + selectedLineBgColor: + - '#006374' + cherryPickedCommitBgColor: + - '#007a8a' + cherryPickedCommitFgColor: + - '#3a82e6' + markedBaseCommitFgColor: + - '#3a82e6' + unstagedChangesColor: + - '#e6454b' + defaultFgColor: + - '#dce3e8' diff --git a/colors/base16-default-dark.yml b/colors/base16-default-dark.yml new file mode 100644 index 0000000..3b5acc7 --- /dev/null +++ b/colors/base16-default-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Default Dark +# author: Chris Kempson (http://chriskempson.com) +# slug: default-dark +# slug-underscored: default_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7cafc2' + - bold + inactiveBorderColor: + - '#585858' + searchingActiveBorderColor: + - '#dc9656' + optionsTextColor: + - '#7cafc2' + selectedLineBgColor: + - '#383838' + cherryPickedCommitBgColor: + - '#585858' + cherryPickedCommitFgColor: + - '#7cafc2' + markedBaseCommitFgColor: + - '#7cafc2' + unstagedChangesColor: + - '#ab4642' + defaultFgColor: + - '#d8d8d8' diff --git a/colors/base16-default-light.yml b/colors/base16-default-light.yml new file mode 100644 index 0000000..6a69790 --- /dev/null +++ b/colors/base16-default-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Default Light +# author: Chris Kempson (http://chriskempson.com) +# slug: default-light +# slug-underscored: default_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7cafc2' + - bold + inactiveBorderColor: + - '#b8b8b8' + searchingActiveBorderColor: + - '#dc9656' + optionsTextColor: + - '#7cafc2' + selectedLineBgColor: + - '#d8d8d8' + cherryPickedCommitBgColor: + - '#b8b8b8' + cherryPickedCommitFgColor: + - '#7cafc2' + markedBaseCommitFgColor: + - '#7cafc2' + unstagedChangesColor: + - '#ab4642' + defaultFgColor: + - '#383838' diff --git a/colors/base16-dirtysea.yml b/colors/base16-dirtysea.yml new file mode 100644 index 0000000..5ffe681 --- /dev/null +++ b/colors/base16-dirtysea.yml @@ -0,0 +1,35 @@ +# +# +# name: dirtysea +# author: Kahlil (Kal) Hodgson +# slug: dirtysea +# slug-underscored: dirtysea +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#007300' + - bold + inactiveBorderColor: + - '#707070' + searchingActiveBorderColor: + - '#006565' + optionsTextColor: + - '#007300' + selectedLineBgColor: + - '#d0d0d0' + cherryPickedCommitBgColor: + - '#707070' + cherryPickedCommitFgColor: + - '#007300' + markedBaseCommitFgColor: + - '#007300' + unstagedChangesColor: + - '#840000' + defaultFgColor: + - '#000000' diff --git a/colors/base16-dracula.yml b/colors/base16-dracula.yml new file mode 100644 index 0000000..65ebd17 --- /dev/null +++ b/colors/base16-dracula.yml @@ -0,0 +1,35 @@ +# +# +# name: Dracula +# author: Jamy Golden (http://github.com/JamyGolden), based on Dracula Theme (http://github.com/dracula) +# slug: dracula +# slug-underscored: dracula +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#80bfff' + - bold + inactiveBorderColor: + - '#6272a4' + searchingActiveBorderColor: + - '#ffb86c' + optionsTextColor: + - '#80bfff' + selectedLineBgColor: + - '#44475a' + cherryPickedCommitBgColor: + - '#6272a4' + cherryPickedCommitFgColor: + - '#80bfff' + markedBaseCommitFgColor: + - '#80bfff' + unstagedChangesColor: + - '#ff5555' + defaultFgColor: + - '#f8f8f2' diff --git a/colors/base16-edge-dark.yml b/colors/base16-edge-dark.yml new file mode 100644 index 0000000..47e1c46 --- /dev/null +++ b/colors/base16-edge-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Edge Dark +# author: cjayross (https://github.com/cjayross) +# slug: edge-dark +# slug-underscored: edge_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#73b3e7' + - bold + inactiveBorderColor: + - '#3e4249' + searchingActiveBorderColor: + - '#e77171' + optionsTextColor: + - '#73b3e7' + selectedLineBgColor: + - '#b7bec9' + cherryPickedCommitBgColor: + - '#3e4249' + cherryPickedCommitFgColor: + - '#73b3e7' + markedBaseCommitFgColor: + - '#73b3e7' + unstagedChangesColor: + - '#e77171' + defaultFgColor: + - '#b7bec9' diff --git a/colors/base16-edge-light.yml b/colors/base16-edge-light.yml new file mode 100644 index 0000000..1b94441 --- /dev/null +++ b/colors/base16-edge-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Edge Light +# author: cjayross (https://github.com/cjayross) +# slug: edge-light +# slug-underscored: edge_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6587bf' + - bold + inactiveBorderColor: + - '#5e646f' + searchingActiveBorderColor: + - '#db7070' + optionsTextColor: + - '#6587bf' + selectedLineBgColor: + - '#d69822' + cherryPickedCommitBgColor: + - '#5e646f' + cherryPickedCommitFgColor: + - '#6587bf' + markedBaseCommitFgColor: + - '#6587bf' + unstagedChangesColor: + - '#db7070' + defaultFgColor: + - '#5e646f' diff --git a/colors/base16-eighties.yml b/colors/base16-eighties.yml new file mode 100644 index 0000000..8f93460 --- /dev/null +++ b/colors/base16-eighties.yml @@ -0,0 +1,35 @@ +# +# +# name: Eighties +# author: Chris Kempson (http://chriskempson.com) +# slug: eighties +# slug-underscored: eighties +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6699cc' + - bold + inactiveBorderColor: + - '#747369' + searchingActiveBorderColor: + - '#f99157' + optionsTextColor: + - '#6699cc' + selectedLineBgColor: + - '#515151' + cherryPickedCommitBgColor: + - '#747369' + cherryPickedCommitFgColor: + - '#6699cc' + markedBaseCommitFgColor: + - '#6699cc' + unstagedChangesColor: + - '#f2777a' + defaultFgColor: + - '#d3d0c8' diff --git a/colors/base16-embers-light.yml b/colors/base16-embers-light.yml new file mode 100644 index 0000000..39ac0b9 --- /dev/null +++ b/colors/base16-embers-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Embers Light +# author: Jannik Siebert (https://github.com/janniks) +# slug: embers-light +# slug-underscored: embers_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#82576d' + - bold + inactiveBorderColor: + - '#75808a' + searchingActiveBorderColor: + - '#578282' + optionsTextColor: + - '#82576d' + selectedLineBgColor: + - '#909aa3' + cherryPickedCommitBgColor: + - '#75808a' + cherryPickedCommitFgColor: + - '#82576d' + markedBaseCommitFgColor: + - '#82576d' + unstagedChangesColor: + - '#576d82' + defaultFgColor: + - '#323b43' diff --git a/colors/base16-embers.yml b/colors/base16-embers.yml new file mode 100644 index 0000000..6dab652 --- /dev/null +++ b/colors/base16-embers.yml @@ -0,0 +1,35 @@ +# +# +# name: Embers +# author: Jannik Siebert (https://github.com/janniks) +# slug: embers +# slug-underscored: embers +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6D5782' + - bold + inactiveBorderColor: + - '#5A5047' + searchingActiveBorderColor: + - '#828257' + optionsTextColor: + - '#6D5782' + selectedLineBgColor: + - '#433B32' + cherryPickedCommitBgColor: + - '#5A5047' + cherryPickedCommitFgColor: + - '#6D5782' + markedBaseCommitFgColor: + - '#6D5782' + unstagedChangesColor: + - '#826D57' + defaultFgColor: + - '#A39A90' diff --git a/colors/base16-emil.yml b/colors/base16-emil.yml new file mode 100644 index 0000000..12497b8 --- /dev/null +++ b/colors/base16-emil.yml @@ -0,0 +1,35 @@ +# +# +# name: emil +# author: limelier +# slug: emil +# slug-underscored: emil +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#471397' + - bold + inactiveBorderColor: + - '#7c7c98' + searchingActiveBorderColor: + - '#d22a8b' + optionsTextColor: + - '#471397' + selectedLineBgColor: + - '#9e9eaf' + cherryPickedCommitBgColor: + - '#7c7c98' + cherryPickedCommitFgColor: + - '#471397' + markedBaseCommitFgColor: + - '#471397' + unstagedChangesColor: + - '#f43979' + defaultFgColor: + - '#313145' diff --git a/colors/base16-equilibrium-dark.yml b/colors/base16-equilibrium-dark.yml new file mode 100644 index 0000000..ab8967a --- /dev/null +++ b/colors/base16-equilibrium-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Equilibrium Dark +# author: Carlo Abelli +# slug: equilibrium-dark +# slug-underscored: equilibrium_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#008dd1' + - bold + inactiveBorderColor: + - '#7b776e' + searchingActiveBorderColor: + - '#df5923' + optionsTextColor: + - '#008dd1' + selectedLineBgColor: + - '#22262d' + cherryPickedCommitBgColor: + - '#7b776e' + cherryPickedCommitFgColor: + - '#008dd1' + markedBaseCommitFgColor: + - '#008dd1' + unstagedChangesColor: + - '#f04339' + defaultFgColor: + - '#afaba2' diff --git a/colors/base16-equilibrium-gray-dark.yml b/colors/base16-equilibrium-gray-dark.yml new file mode 100644 index 0000000..3769148 --- /dev/null +++ b/colors/base16-equilibrium-gray-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Equilibrium Gray Dark +# author: Carlo Abelli +# slug: equilibrium-gray-dark +# slug-underscored: equilibrium_gray_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#008dd1' + - bold + inactiveBorderColor: + - '#777777' + searchingActiveBorderColor: + - '#df5923' + optionsTextColor: + - '#008dd1' + selectedLineBgColor: + - '#262626' + cherryPickedCommitBgColor: + - '#777777' + cherryPickedCommitFgColor: + - '#008dd1' + markedBaseCommitFgColor: + - '#008dd1' + unstagedChangesColor: + - '#f04339' + defaultFgColor: + - '#ababab' diff --git a/colors/base16-equilibrium-gray-light.yml b/colors/base16-equilibrium-gray-light.yml new file mode 100644 index 0000000..f240467 --- /dev/null +++ b/colors/base16-equilibrium-gray-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Equilibrium Gray Light +# author: Carlo Abelli +# slug: equilibrium-gray-light +# slug-underscored: equilibrium_gray_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0073b5' + - bold + inactiveBorderColor: + - '#777777' + searchingActiveBorderColor: + - '#bf3e05' + optionsTextColor: + - '#0073b5' + selectedLineBgColor: + - '#d4d4d4' + cherryPickedCommitBgColor: + - '#777777' + cherryPickedCommitFgColor: + - '#0073b5' + markedBaseCommitFgColor: + - '#0073b5' + unstagedChangesColor: + - '#d02023' + defaultFgColor: + - '#474747' diff --git a/colors/base16-equilibrium-light.yml b/colors/base16-equilibrium-light.yml new file mode 100644 index 0000000..35fd2be --- /dev/null +++ b/colors/base16-equilibrium-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Equilibrium Light +# author: Carlo Abelli +# slug: equilibrium-light +# slug-underscored: equilibrium_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0073b5' + - bold + inactiveBorderColor: + - '#73777f' + searchingActiveBorderColor: + - '#bf3e05' + optionsTextColor: + - '#0073b5' + selectedLineBgColor: + - '#d8d4cb' + cherryPickedCommitBgColor: + - '#73777f' + cherryPickedCommitFgColor: + - '#0073b5' + markedBaseCommitFgColor: + - '#0073b5' + unstagedChangesColor: + - '#d02023' + defaultFgColor: + - '#43474e' diff --git a/colors/base16-eris.yml b/colors/base16-eris.yml new file mode 100644 index 0000000..618d62c --- /dev/null +++ b/colors/base16-eris.yml @@ -0,0 +1,35 @@ +# +# +# name: eris +# author: ed (https://codeberg.org/ed) +# slug: eris +# slug-underscored: eris +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#258fc4' + - bold + inactiveBorderColor: + - '#333773' + searchingActiveBorderColor: + - '#f768a3' + optionsTextColor: + - '#258fc4' + selectedLineBgColor: + - '#23255a' + cherryPickedCommitBgColor: + - '#333773' + cherryPickedCommitFgColor: + - '#258fc4' + markedBaseCommitFgColor: + - '#258fc4' + unstagedChangesColor: + - '#f768a3' + defaultFgColor: + - '#606bac' diff --git a/colors/base16-espresso.yml b/colors/base16-espresso.yml new file mode 100644 index 0000000..52bffc4 --- /dev/null +++ b/colors/base16-espresso.yml @@ -0,0 +1,35 @@ +# +# +# name: Espresso +# author: Unknown. Maintained by Alex Mirrington (https://github.com/alexmirrington) +# slug: espresso +# slug-underscored: espresso +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6c99bb' + - bold + inactiveBorderColor: + - '#777777' + searchingActiveBorderColor: + - '#f9a959' + optionsTextColor: + - '#6c99bb' + selectedLineBgColor: + - '#515151' + cherryPickedCommitBgColor: + - '#777777' + cherryPickedCommitFgColor: + - '#6c99bb' + markedBaseCommitFgColor: + - '#6c99bb' + unstagedChangesColor: + - '#d25252' + defaultFgColor: + - '#cccccc' diff --git a/colors/base16-eva-dim.yml b/colors/base16-eva-dim.yml new file mode 100644 index 0000000..d708368 --- /dev/null +++ b/colors/base16-eva-dim.yml @@ -0,0 +1,35 @@ +# +# +# name: Eva Dim +# author: kjakapat (https://github.com/kjakapat) +# slug: eva-dim +# slug-underscored: eva_dim +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#1ae1dc' + - bold + inactiveBorderColor: + - '#55799c' + searchingActiveBorderColor: + - '#ff9966' + optionsTextColor: + - '#1ae1dc' + selectedLineBgColor: + - '#4b6988' + cherryPickedCommitBgColor: + - '#55799c' + cherryPickedCommitFgColor: + - '#1ae1dc' + markedBaseCommitFgColor: + - '#1ae1dc' + unstagedChangesColor: + - '#c4676c' + defaultFgColor: + - '#9fa2a6' diff --git a/colors/base16-eva.yml b/colors/base16-eva.yml new file mode 100644 index 0000000..6b33bd4 --- /dev/null +++ b/colors/base16-eva.yml @@ -0,0 +1,35 @@ +# +# +# name: Eva +# author: kjakapat (https://github.com/kjakapat) +# slug: eva +# slug-underscored: eva +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#15f4ee' + - bold + inactiveBorderColor: + - '#55799c' + searchingActiveBorderColor: + - '#ff9966' + optionsTextColor: + - '#15f4ee' + selectedLineBgColor: + - '#4b6988' + cherryPickedCommitBgColor: + - '#55799c' + cherryPickedCommitFgColor: + - '#15f4ee' + markedBaseCommitFgColor: + - '#15f4ee' + unstagedChangesColor: + - '#c4676c' + defaultFgColor: + - '#9fa2a6' diff --git a/colors/base16-evenok-dark.yml b/colors/base16-evenok-dark.yml new file mode 100644 index 0000000..d727b3b --- /dev/null +++ b/colors/base16-evenok-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Evenok Dark +# author: Mekeor Melire +# slug: evenok-dark +# slug-underscored: evenok_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#00aff2' + - bold + inactiveBorderColor: + - '#505050' + searchingActiveBorderColor: + - '#ee8122' + optionsTextColor: + - '#00aff2' + selectedLineBgColor: + - '#303030' + cherryPickedCommitBgColor: + - '#505050' + cherryPickedCommitFgColor: + - '#00aff2' + markedBaseCommitFgColor: + - '#00aff2' + unstagedChangesColor: + - '#f5708a' + defaultFgColor: + - '#d0d0d0' diff --git a/colors/base16-everforest-dark-hard.yml b/colors/base16-everforest-dark-hard.yml new file mode 100644 index 0000000..ccadf8e --- /dev/null +++ b/colors/base16-everforest-dark-hard.yml @@ -0,0 +1,35 @@ +# +# +# name: Everforest Dark Hard +# author: Sainnhe Park (https://github.com/sainnhe) +# slug: everforest-dark-hard +# slug-underscored: everforest_dark_hard +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7fbbb3' + - bold + inactiveBorderColor: + - '#859289' + searchingActiveBorderColor: + - '#e69875' + optionsTextColor: + - '#7fbbb3' + selectedLineBgColor: + - '#414b50' + cherryPickedCommitBgColor: + - '#859289' + cherryPickedCommitFgColor: + - '#7fbbb3' + markedBaseCommitFgColor: + - '#7fbbb3' + unstagedChangesColor: + - '#e67e80' + defaultFgColor: + - '#d3c6aa' diff --git a/colors/base16-everforest.yml b/colors/base16-everforest.yml new file mode 100644 index 0000000..eca49dd --- /dev/null +++ b/colors/base16-everforest.yml @@ -0,0 +1,35 @@ +# +# +# name: Everforest +# author: Sainnhe Park (https://github.com/sainnhe) +# slug: everforest +# slug-underscored: everforest +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7fbbb3' + - bold + inactiveBorderColor: + - '#859289' + searchingActiveBorderColor: + - '#e69875' + optionsTextColor: + - '#7fbbb3' + selectedLineBgColor: + - '#475258' + cherryPickedCommitBgColor: + - '#859289' + cherryPickedCommitFgColor: + - '#7fbbb3' + markedBaseCommitFgColor: + - '#7fbbb3' + unstagedChangesColor: + - '#e67e80' + defaultFgColor: + - '#d3c6aa' diff --git a/colors/base16-flat.yml b/colors/base16-flat.yml new file mode 100644 index 0000000..ebe33d1 --- /dev/null +++ b/colors/base16-flat.yml @@ -0,0 +1,35 @@ +# +# +# name: Flat +# author: Chris Kempson (http://chriskempson.com) +# slug: flat +# slug-underscored: flat +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3498DB' + - bold + inactiveBorderColor: + - '#95A5A6' + searchingActiveBorderColor: + - '#E67E22' + optionsTextColor: + - '#3498DB' + selectedLineBgColor: + - '#7F8C8D' + cherryPickedCommitBgColor: + - '#95A5A6' + cherryPickedCommitFgColor: + - '#3498DB' + markedBaseCommitFgColor: + - '#3498DB' + unstagedChangesColor: + - '#E74C3C' + defaultFgColor: + - '#e0e0e0' diff --git a/colors/base16-framer.yml b/colors/base16-framer.yml new file mode 100644 index 0000000..1a41779 --- /dev/null +++ b/colors/base16-framer.yml @@ -0,0 +1,35 @@ +# +# +# name: Framer +# author: Framer (Maintained by Jesse Hoyos) +# slug: framer +# slug-underscored: framer +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#20BCFC' + - bold + inactiveBorderColor: + - '#747474' + searchingActiveBorderColor: + - '#FC4769' + optionsTextColor: + - '#20BCFC' + selectedLineBgColor: + - '#464646' + cherryPickedCommitBgColor: + - '#747474' + cherryPickedCommitFgColor: + - '#20BCFC' + markedBaseCommitFgColor: + - '#20BCFC' + unstagedChangesColor: + - '#FD886B' + defaultFgColor: + - '#D0D0D0' diff --git a/colors/base16-fruit-soda.yml b/colors/base16-fruit-soda.yml new file mode 100644 index 0000000..82b4970 --- /dev/null +++ b/colors/base16-fruit-soda.yml @@ -0,0 +1,35 @@ +# +# +# name: Fruit Soda +# author: jozip +# slug: fruit-soda +# slug-underscored: fruit_soda +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#2931df' + - bold + inactiveBorderColor: + - '#b5b4b6' + searchingActiveBorderColor: + - '#fe6d08' + optionsTextColor: + - '#2931df' + selectedLineBgColor: + - '#d8d5d5' + cherryPickedCommitBgColor: + - '#b5b4b6' + cherryPickedCommitFgColor: + - '#2931df' + markedBaseCommitFgColor: + - '#2931df' + unstagedChangesColor: + - '#fe3e31' + defaultFgColor: + - '#515151' diff --git a/colors/base16-gigavolt.yml b/colors/base16-gigavolt.yml new file mode 100644 index 0000000..0834bae --- /dev/null +++ b/colors/base16-gigavolt.yml @@ -0,0 +1,35 @@ +# +# +# name: Gigavolt +# author: Aidan Swope (http://github.com/Whillikers) +# slug: gigavolt +# slug-underscored: gigavolt +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#40bfff' + - bold + inactiveBorderColor: + - '#a1d2e6' + searchingActiveBorderColor: + - '#19f988' + optionsTextColor: + - '#40bfff' + selectedLineBgColor: + - '#5a576e' + cherryPickedCommitBgColor: + - '#a1d2e6' + cherryPickedCommitFgColor: + - '#40bfff' + markedBaseCommitFgColor: + - '#40bfff' + unstagedChangesColor: + - '#ff661a' + defaultFgColor: + - '#e9e7e1' diff --git a/colors/base16-github.yml b/colors/base16-github.yml new file mode 100644 index 0000000..9c16f3f --- /dev/null +++ b/colors/base16-github.yml @@ -0,0 +1,35 @@ +# +# +# name: Github +# author: Defman21 +# slug: github +# slug-underscored: github +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#795da3' + - bold + inactiveBorderColor: + - '#969896' + searchingActiveBorderColor: + - '#0086b3' + optionsTextColor: + - '#795da3' + selectedLineBgColor: + - '#c8c8fa' + cherryPickedCommitBgColor: + - '#969896' + cherryPickedCommitFgColor: + - '#795da3' + markedBaseCommitFgColor: + - '#795da3' + unstagedChangesColor: + - '#ed6a43' + defaultFgColor: + - '#333333' diff --git a/colors/base16-google-dark.yml b/colors/base16-google-dark.yml new file mode 100644 index 0000000..323a101 --- /dev/null +++ b/colors/base16-google-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Google Dark +# author: Seth Wright (http://sethawright.com) +# slug: google-dark +# slug-underscored: google_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3971ED' + - bold + inactiveBorderColor: + - '#969896' + searchingActiveBorderColor: + - '#F96A38' + optionsTextColor: + - '#3971ED' + selectedLineBgColor: + - '#373b41' + cherryPickedCommitBgColor: + - '#969896' + cherryPickedCommitFgColor: + - '#3971ED' + markedBaseCommitFgColor: + - '#3971ED' + unstagedChangesColor: + - '#CC342B' + defaultFgColor: + - '#c5c8c6' diff --git a/colors/base16-google-light.yml b/colors/base16-google-light.yml new file mode 100644 index 0000000..b0af8f5 --- /dev/null +++ b/colors/base16-google-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Google Light +# author: Seth Wright (http://sethawright.com) +# slug: google-light +# slug-underscored: google_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3971ED' + - bold + inactiveBorderColor: + - '#b4b7b4' + searchingActiveBorderColor: + - '#F96A38' + optionsTextColor: + - '#3971ED' + selectedLineBgColor: + - '#c5c8c6' + cherryPickedCommitBgColor: + - '#b4b7b4' + cherryPickedCommitFgColor: + - '#3971ED' + markedBaseCommitFgColor: + - '#3971ED' + unstagedChangesColor: + - '#CC342B' + defaultFgColor: + - '#373b41' diff --git a/colors/base16-gotham.yml b/colors/base16-gotham.yml new file mode 100644 index 0000000..8b5f43e --- /dev/null +++ b/colors/base16-gotham.yml @@ -0,0 +1,35 @@ +# +# +# name: Gotham +# author: Andrea Leopardi (arranged by Brett Jones) +# slug: gotham +# slug-underscored: gotham +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#195466' + - bold + inactiveBorderColor: + - '#0a3749' + searchingActiveBorderColor: + - '#d26937' + optionsTextColor: + - '#195466' + selectedLineBgColor: + - '#091f2e' + cherryPickedCommitBgColor: + - '#0a3749' + cherryPickedCommitFgColor: + - '#195466' + markedBaseCommitFgColor: + - '#195466' + unstagedChangesColor: + - '#c23127' + defaultFgColor: + - '#599cab' diff --git a/colors/base16-grayscale-dark.yml b/colors/base16-grayscale-dark.yml new file mode 100644 index 0000000..aa0f31d --- /dev/null +++ b/colors/base16-grayscale-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Grayscale Dark +# author: Alexandre Gavioli (https://github.com/Alexx2/) +# slug: grayscale-dark +# slug-underscored: grayscale_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#686868' + - bold + inactiveBorderColor: + - '#525252' + searchingActiveBorderColor: + - '#999999' + optionsTextColor: + - '#686868' + selectedLineBgColor: + - '#464646' + cherryPickedCommitBgColor: + - '#525252' + cherryPickedCommitFgColor: + - '#686868' + markedBaseCommitFgColor: + - '#686868' + unstagedChangesColor: + - '#7c7c7c' + defaultFgColor: + - '#b9b9b9' diff --git a/colors/base16-grayscale-light.yml b/colors/base16-grayscale-light.yml new file mode 100644 index 0000000..0e8b863 --- /dev/null +++ b/colors/base16-grayscale-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Grayscale Light +# author: Alexandre Gavioli (https://github.com/Alexx2/) +# slug: grayscale-light +# slug-underscored: grayscale_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#686868' + - bold + inactiveBorderColor: + - '#ababab' + searchingActiveBorderColor: + - '#999999' + optionsTextColor: + - '#686868' + selectedLineBgColor: + - '#b9b9b9' + cherryPickedCommitBgColor: + - '#ababab' + cherryPickedCommitFgColor: + - '#686868' + markedBaseCommitFgColor: + - '#686868' + unstagedChangesColor: + - '#7c7c7c' + defaultFgColor: + - '#464646' diff --git a/colors/base16-greenscreen.yml b/colors/base16-greenscreen.yml new file mode 100644 index 0000000..960990b --- /dev/null +++ b/colors/base16-greenscreen.yml @@ -0,0 +1,35 @@ +# +# +# name: Green Screen +# author: Chris Kempson (http://chriskempson.com) +# slug: greenscreen +# slug-underscored: greenscreen +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#009900' + - bold + inactiveBorderColor: + - '#007700' + searchingActiveBorderColor: + - '#009900' + optionsTextColor: + - '#009900' + selectedLineBgColor: + - '#005500' + cherryPickedCommitBgColor: + - '#007700' + cherryPickedCommitFgColor: + - '#009900' + markedBaseCommitFgColor: + - '#009900' + unstagedChangesColor: + - '#007700' + defaultFgColor: + - '#00bb00' diff --git a/colors/base16-gruber.yml b/colors/base16-gruber.yml new file mode 100644 index 0000000..9f38585 --- /dev/null +++ b/colors/base16-gruber.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruber +# author: Patel, Nimai <nimai.m.patel@gmail.com>, colors from www.github.com/rexim/gruber-darker-theme +# slug: gruber +# slug-underscored: gruber +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#96a6c8' + - bold + inactiveBorderColor: + - '#52494e' + searchingActiveBorderColor: + - '#c73c3f' + optionsTextColor: + - '#96a6c8' + selectedLineBgColor: + - '#484848' + cherryPickedCommitBgColor: + - '#52494e' + cherryPickedCommitFgColor: + - '#96a6c8' + markedBaseCommitFgColor: + - '#96a6c8' + unstagedChangesColor: + - '#f43841' + defaultFgColor: + - '#f4f4ff' diff --git a/colors/base16-gruvbox-dark-hard.yml b/colors/base16-gruvbox-dark-hard.yml new file mode 100644 index 0000000..b30a7a5 --- /dev/null +++ b/colors/base16-gruvbox-dark-hard.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruvbox dark, hard +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-dark-hard +# slug-underscored: gruvbox_dark_hard +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#83a598' + - bold + inactiveBorderColor: + - '#665c54' + searchingActiveBorderColor: + - '#fe8019' + optionsTextColor: + - '#83a598' + selectedLineBgColor: + - '#504945' + cherryPickedCommitBgColor: + - '#665c54' + cherryPickedCommitFgColor: + - '#83a598' + markedBaseCommitFgColor: + - '#83a598' + unstagedChangesColor: + - '#fb4934' + defaultFgColor: + - '#d5c4a1' diff --git a/colors/base16-gruvbox-dark-medium.yml b/colors/base16-gruvbox-dark-medium.yml new file mode 100644 index 0000000..e181e4a --- /dev/null +++ b/colors/base16-gruvbox-dark-medium.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruvbox dark, medium +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-dark-medium +# slug-underscored: gruvbox_dark_medium +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#83a598' + - bold + inactiveBorderColor: + - '#665c54' + searchingActiveBorderColor: + - '#fe8019' + optionsTextColor: + - '#83a598' + selectedLineBgColor: + - '#504945' + cherryPickedCommitBgColor: + - '#665c54' + cherryPickedCommitFgColor: + - '#83a598' + markedBaseCommitFgColor: + - '#83a598' + unstagedChangesColor: + - '#fb4934' + defaultFgColor: + - '#d5c4a1' diff --git a/colors/base16-gruvbox-dark-pale.yml b/colors/base16-gruvbox-dark-pale.yml new file mode 100644 index 0000000..0100e89 --- /dev/null +++ b/colors/base16-gruvbox-dark-pale.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruvbox dark, pale +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-dark-pale +# slug-underscored: gruvbox_dark_pale +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#83adad' + - bold + inactiveBorderColor: + - '#8a8a8a' + searchingActiveBorderColor: + - '#ff8700' + optionsTextColor: + - '#83adad' + selectedLineBgColor: + - '#4e4e4e' + cherryPickedCommitBgColor: + - '#8a8a8a' + cherryPickedCommitFgColor: + - '#83adad' + markedBaseCommitFgColor: + - '#83adad' + unstagedChangesColor: + - '#d75f5f' + defaultFgColor: + - '#dab997' diff --git a/colors/base16-gruvbox-dark-soft.yml b/colors/base16-gruvbox-dark-soft.yml new file mode 100644 index 0000000..107f0a4 --- /dev/null +++ b/colors/base16-gruvbox-dark-soft.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruvbox dark, soft +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-dark-soft +# slug-underscored: gruvbox_dark_soft +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#83a598' + - bold + inactiveBorderColor: + - '#665c54' + searchingActiveBorderColor: + - '#fe8019' + optionsTextColor: + - '#83a598' + selectedLineBgColor: + - '#504945' + cherryPickedCommitBgColor: + - '#665c54' + cherryPickedCommitFgColor: + - '#83a598' + markedBaseCommitFgColor: + - '#83a598' + unstagedChangesColor: + - '#fb4934' + defaultFgColor: + - '#d5c4a1' diff --git a/colors/base16-gruvbox-light-hard.yml b/colors/base16-gruvbox-light-hard.yml new file mode 100644 index 0000000..70eb929 --- /dev/null +++ b/colors/base16-gruvbox-light-hard.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruvbox light, hard +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-light-hard +# slug-underscored: gruvbox_light_hard +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#076678' + - bold + inactiveBorderColor: + - '#bdae93' + searchingActiveBorderColor: + - '#af3a03' + optionsTextColor: + - '#076678' + selectedLineBgColor: + - '#d5c4a1' + cherryPickedCommitBgColor: + - '#bdae93' + cherryPickedCommitFgColor: + - '#076678' + markedBaseCommitFgColor: + - '#076678' + unstagedChangesColor: + - '#9d0006' + defaultFgColor: + - '#504945' diff --git a/colors/base16-gruvbox-light-medium.yml b/colors/base16-gruvbox-light-medium.yml new file mode 100644 index 0000000..a87a11c --- /dev/null +++ b/colors/base16-gruvbox-light-medium.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruvbox light, medium +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-light-medium +# slug-underscored: gruvbox_light_medium +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#076678' + - bold + inactiveBorderColor: + - '#bdae93' + searchingActiveBorderColor: + - '#af3a03' + optionsTextColor: + - '#076678' + selectedLineBgColor: + - '#d5c4a1' + cherryPickedCommitBgColor: + - '#bdae93' + cherryPickedCommitFgColor: + - '#076678' + markedBaseCommitFgColor: + - '#076678' + unstagedChangesColor: + - '#9d0006' + defaultFgColor: + - '#504945' diff --git a/colors/base16-gruvbox-light-soft.yml b/colors/base16-gruvbox-light-soft.yml new file mode 100644 index 0000000..b35f26c --- /dev/null +++ b/colors/base16-gruvbox-light-soft.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruvbox light, soft +# author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) +# slug: gruvbox-light-soft +# slug-underscored: gruvbox_light_soft +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#076678' + - bold + inactiveBorderColor: + - '#bdae93' + searchingActiveBorderColor: + - '#af3a03' + optionsTextColor: + - '#076678' + selectedLineBgColor: + - '#d5c4a1' + cherryPickedCommitBgColor: + - '#bdae93' + cherryPickedCommitFgColor: + - '#076678' + markedBaseCommitFgColor: + - '#076678' + unstagedChangesColor: + - '#9d0006' + defaultFgColor: + - '#504945' diff --git a/colors/base16-gruvbox-material-dark-hard.yml b/colors/base16-gruvbox-material-dark-hard.yml new file mode 100644 index 0000000..fcefbf6 --- /dev/null +++ b/colors/base16-gruvbox-material-dark-hard.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruvbox Material Dark, Hard +# author: Mayush Kumar (https://github.com/MayushKumar), sainnhe (https://github.com/sainnhe/gruvbox-material-vscode) +# slug: gruvbox-material-dark-hard +# slug-underscored: gruvbox_material_dark_hard +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7daea3' + - bold + inactiveBorderColor: + - '#5a524c' + searchingActiveBorderColor: + - '#e78a4e' + optionsTextColor: + - '#7daea3' + selectedLineBgColor: + - '#504945' + cherryPickedCommitBgColor: + - '#5a524c' + cherryPickedCommitFgColor: + - '#7daea3' + markedBaseCommitFgColor: + - '#7daea3' + unstagedChangesColor: + - '#ea6962' + defaultFgColor: + - '#ddc7a1' diff --git a/colors/base16-gruvbox-material-dark-medium.yml b/colors/base16-gruvbox-material-dark-medium.yml new file mode 100644 index 0000000..4402f18 --- /dev/null +++ b/colors/base16-gruvbox-material-dark-medium.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruvbox Material Dark, Medium +# author: Mayush Kumar (https://github.com/MayushKumar), sainnhe (https://github.com/sainnhe/gruvbox-material-vscode) +# slug: gruvbox-material-dark-medium +# slug-underscored: gruvbox_material_dark_medium +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7daea3' + - bold + inactiveBorderColor: + - '#665c54' + searchingActiveBorderColor: + - '#e78a4e' + optionsTextColor: + - '#7daea3' + selectedLineBgColor: + - '#504945' + cherryPickedCommitBgColor: + - '#665c54' + cherryPickedCommitFgColor: + - '#7daea3' + markedBaseCommitFgColor: + - '#7daea3' + unstagedChangesColor: + - '#ea6962' + defaultFgColor: + - '#ddc7a1' diff --git a/colors/base16-gruvbox-material-dark-soft.yml b/colors/base16-gruvbox-material-dark-soft.yml new file mode 100644 index 0000000..facd59e --- /dev/null +++ b/colors/base16-gruvbox-material-dark-soft.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruvbox Material Dark, Soft +# author: Mayush Kumar (https://github.com/MayushKumar), sainnhe (https://github.com/sainnhe/gruvbox-material-vscode) +# slug: gruvbox-material-dark-soft +# slug-underscored: gruvbox_material_dark_soft +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7daea3' + - bold + inactiveBorderColor: + - '#7c6f64' + searchingActiveBorderColor: + - '#e78a4e' + optionsTextColor: + - '#7daea3' + selectedLineBgColor: + - '#5a524c' + cherryPickedCommitBgColor: + - '#7c6f64' + cherryPickedCommitFgColor: + - '#7daea3' + markedBaseCommitFgColor: + - '#7daea3' + unstagedChangesColor: + - '#ea6962' + defaultFgColor: + - '#ddc7a1' diff --git a/colors/base16-gruvbox-material-light-hard.yml b/colors/base16-gruvbox-material-light-hard.yml new file mode 100644 index 0000000..efbe7fe --- /dev/null +++ b/colors/base16-gruvbox-material-light-hard.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruvbox Material Light, Hard +# author: Mayush Kumar (https://github.com/MayushKumar), sainnhe (https://github.com/sainnhe/gruvbox-material-vscode) +# slug: gruvbox-material-light-hard +# slug-underscored: gruvbox_material_light_hard +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#45707a' + - bold + inactiveBorderColor: + - '#a89984' + searchingActiveBorderColor: + - '#c35e0a' + optionsTextColor: + - '#45707a' + selectedLineBgColor: + - '#e0cfa9' + cherryPickedCommitBgColor: + - '#a89984' + cherryPickedCommitFgColor: + - '#45707a' + markedBaseCommitFgColor: + - '#45707a' + unstagedChangesColor: + - '#c14a4a' + defaultFgColor: + - '#654735' diff --git a/colors/base16-gruvbox-material-light-medium.yml b/colors/base16-gruvbox-material-light-medium.yml new file mode 100644 index 0000000..24c2f7e --- /dev/null +++ b/colors/base16-gruvbox-material-light-medium.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruvbox Material Light, Medium +# author: Mayush Kumar (https://github.com/MayushKumar), sainnhe (https://github.com/sainnhe/gruvbox-material-vscode) +# slug: gruvbox-material-light-medium +# slug-underscored: gruvbox_material_light_medium +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#45707a' + - bold + inactiveBorderColor: + - '#bdae93' + searchingActiveBorderColor: + - '#c35e0a' + optionsTextColor: + - '#45707a' + selectedLineBgColor: + - '#d5c4a1' + cherryPickedCommitBgColor: + - '#bdae93' + cherryPickedCommitFgColor: + - '#45707a' + markedBaseCommitFgColor: + - '#45707a' + unstagedChangesColor: + - '#c14a4a' + defaultFgColor: + - '#654735' diff --git a/colors/base16-gruvbox-material-light-soft.yml b/colors/base16-gruvbox-material-light-soft.yml new file mode 100644 index 0000000..1b1e091 --- /dev/null +++ b/colors/base16-gruvbox-material-light-soft.yml @@ -0,0 +1,35 @@ +# +# +# name: Gruvbox Material Light, Soft +# author: Mayush Kumar (https://github.com/MayushKumar), sainnhe (https://github.com/sainnhe/gruvbox-material-vscode) +# slug: gruvbox-material-light-soft +# slug-underscored: gruvbox_material_light_soft +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#45707a' + - bold + inactiveBorderColor: + - '#a89984' + searchingActiveBorderColor: + - '#c35e0a' + optionsTextColor: + - '#45707a' + selectedLineBgColor: + - '#c9b99a' + cherryPickedCommitBgColor: + - '#a89984' + cherryPickedCommitFgColor: + - '#45707a' + markedBaseCommitFgColor: + - '#45707a' + unstagedChangesColor: + - '#c14a4a' + defaultFgColor: + - '#654735' diff --git a/colors/base16-hardcore.yml b/colors/base16-hardcore.yml new file mode 100644 index 0000000..b754e70 --- /dev/null +++ b/colors/base16-hardcore.yml @@ -0,0 +1,35 @@ +# +# +# name: Hardcore +# author: Chris Caller +# slug: hardcore +# slug-underscored: hardcore +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#66d9ef' + - bold + inactiveBorderColor: + - '#4A4A4A' + searchingActiveBorderColor: + - '#fd971f' + optionsTextColor: + - '#66d9ef' + selectedLineBgColor: + - '#353535' + cherryPickedCommitBgColor: + - '#4A4A4A' + cherryPickedCommitFgColor: + - '#66d9ef' + markedBaseCommitFgColor: + - '#66d9ef' + unstagedChangesColor: + - '#f92672' + defaultFgColor: + - '#cdcdcd' diff --git a/colors/base16-harmonic16-dark.yml b/colors/base16-harmonic16-dark.yml new file mode 100644 index 0000000..b581a17 --- /dev/null +++ b/colors/base16-harmonic16-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Harmonic16 Dark +# author: Jannik Siebert (https://github.com/janniks) +# slug: harmonic16-dark +# slug-underscored: harmonic16_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#8b56bf' + - bold + inactiveBorderColor: + - '#627e99' + searchingActiveBorderColor: + - '#bfbf56' + optionsTextColor: + - '#8b56bf' + selectedLineBgColor: + - '#405c79' + cherryPickedCommitBgColor: + - '#627e99' + cherryPickedCommitFgColor: + - '#8b56bf' + markedBaseCommitFgColor: + - '#8b56bf' + unstagedChangesColor: + - '#bf8b56' + defaultFgColor: + - '#cbd6e2' diff --git a/colors/base16-harmonic16-light.yml b/colors/base16-harmonic16-light.yml new file mode 100644 index 0000000..cfce141 --- /dev/null +++ b/colors/base16-harmonic16-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Harmonic16 Light +# author: Jannik Siebert (https://github.com/janniks) +# slug: harmonic16-light +# slug-underscored: harmonic16_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#8b56bf' + - bold + inactiveBorderColor: + - '#aabcce' + searchingActiveBorderColor: + - '#bfbf56' + optionsTextColor: + - '#8b56bf' + selectedLineBgColor: + - '#cbd6e2' + cherryPickedCommitBgColor: + - '#aabcce' + cherryPickedCommitFgColor: + - '#8b56bf' + markedBaseCommitFgColor: + - '#8b56bf' + unstagedChangesColor: + - '#bf8b56' + defaultFgColor: + - '#405c79' diff --git a/colors/base16-heetch-light.yml b/colors/base16-heetch-light.yml new file mode 100644 index 0000000..7c8da11 --- /dev/null +++ b/colors/base16-heetch-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Heetch Light +# author: Geoffrey Teale (tealeg@gmail.com) +# slug: heetch-light +# slug-underscored: heetch_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#47f9f5' + - bold + inactiveBorderColor: + - '#9c92a8' + searchingActiveBorderColor: + - '#bdb6c5' + optionsTextColor: + - '#47f9f5' + selectedLineBgColor: + - '#7b6d8b' + cherryPickedCommitBgColor: + - '#9c92a8' + cherryPickedCommitFgColor: + - '#47f9f5' + markedBaseCommitFgColor: + - '#47f9f5' + unstagedChangesColor: + - '#27d9d5' + defaultFgColor: + - '#5a496e' diff --git a/colors/base16-heetch.yml b/colors/base16-heetch.yml new file mode 100644 index 0000000..aecf9d5 --- /dev/null +++ b/colors/base16-heetch.yml @@ -0,0 +1,35 @@ +# +# +# name: Heetch Dark +# author: Geoffrey Teale (tealeg@gmail.com) +# slug: heetch +# slug-underscored: heetch +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#BD0152' + - bold + inactiveBorderColor: + - '#7B6D8B' + searchingActiveBorderColor: + - '#5BA2B6' + optionsTextColor: + - '#BD0152' + selectedLineBgColor: + - '#5A496E' + cherryPickedCommitBgColor: + - '#7B6D8B' + cherryPickedCommitFgColor: + - '#BD0152' + markedBaseCommitFgColor: + - '#BD0152' + unstagedChangesColor: + - '#27D9D5' + defaultFgColor: + - '#BDB6C5' diff --git a/colors/base16-helios.yml b/colors/base16-helios.yml new file mode 100644 index 0000000..0bab1ed --- /dev/null +++ b/colors/base16-helios.yml @@ -0,0 +1,35 @@ +# +# +# name: Helios +# author: Alex Meyer (https://github.com/reyemxela) +# slug: helios +# slug-underscored: helios +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#1e8bac' + - bold + inactiveBorderColor: + - '#6f7579' + searchingActiveBorderColor: + - '#eb8413' + optionsTextColor: + - '#1e8bac' + selectedLineBgColor: + - '#53585b' + cherryPickedCommitBgColor: + - '#6f7579' + cherryPickedCommitFgColor: + - '#1e8bac' + markedBaseCommitFgColor: + - '#1e8bac' + unstagedChangesColor: + - '#d72638' + defaultFgColor: + - '#d5d5d5' diff --git a/colors/base16-hopscotch.yml b/colors/base16-hopscotch.yml new file mode 100644 index 0000000..04c8ae2 --- /dev/null +++ b/colors/base16-hopscotch.yml @@ -0,0 +1,35 @@ +# +# +# name: Hopscotch +# author: Jan T. Sott +# slug: hopscotch +# slug-underscored: hopscotch +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#1290bf' + - bold + inactiveBorderColor: + - '#797379' + searchingActiveBorderColor: + - '#fd8b19' + optionsTextColor: + - '#1290bf' + selectedLineBgColor: + - '#5c545b' + cherryPickedCommitBgColor: + - '#797379' + cherryPickedCommitFgColor: + - '#1290bf' + markedBaseCommitFgColor: + - '#1290bf' + unstagedChangesColor: + - '#dd464c' + defaultFgColor: + - '#b9b5b8' diff --git a/colors/base16-horizon-dark.yml b/colors/base16-horizon-dark.yml new file mode 100644 index 0000000..d58da91 --- /dev/null +++ b/colors/base16-horizon-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Horizon Dark +# author: Michaël Ball (http://github.com/michael-ball/) +# slug: horizon-dark +# slug-underscored: horizon_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#DF5273' + - bold + inactiveBorderColor: + - '#6F6F70' + searchingActiveBorderColor: + - '#E58D7D' + optionsTextColor: + - '#DF5273' + selectedLineBgColor: + - '#2E303E' + cherryPickedCommitBgColor: + - '#6F6F70' + cherryPickedCommitFgColor: + - '#DF5273' + markedBaseCommitFgColor: + - '#DF5273' + unstagedChangesColor: + - '#E93C58' + defaultFgColor: + - '#CBCED0' diff --git a/colors/base16-horizon-light.yml b/colors/base16-horizon-light.yml new file mode 100644 index 0000000..f27194d --- /dev/null +++ b/colors/base16-horizon-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Horizon Light +# author: Michaël Ball (http://github.com/michael-ball/) +# slug: horizon-light +# slug-underscored: horizon_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#DA103F' + - bold + inactiveBorderColor: + - '#BDB3B1' + searchingActiveBorderColor: + - '#F6661E' + optionsTextColor: + - '#DA103F' + selectedLineBgColor: + - '#F9CBBE' + cherryPickedCommitBgColor: + - '#BDB3B1' + cherryPickedCommitFgColor: + - '#DA103F' + markedBaseCommitFgColor: + - '#DA103F' + unstagedChangesColor: + - '#F7939B' + defaultFgColor: + - '#403C3D' diff --git a/colors/base16-horizon-terminal-dark.yml b/colors/base16-horizon-terminal-dark.yml new file mode 100644 index 0000000..9df2075 --- /dev/null +++ b/colors/base16-horizon-terminal-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Horizon Terminal Dark +# author: Michaël Ball (http://github.com/michael-ball/) +# slug: horizon-terminal-dark +# slug-underscored: horizon_terminal_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#26BBD9' + - bold + inactiveBorderColor: + - '#6F6F70' + searchingActiveBorderColor: + - '#FAB795' + optionsTextColor: + - '#26BBD9' + selectedLineBgColor: + - '#2E303E' + cherryPickedCommitBgColor: + - '#6F6F70' + cherryPickedCommitFgColor: + - '#26BBD9' + markedBaseCommitFgColor: + - '#26BBD9' + unstagedChangesColor: + - '#E95678' + defaultFgColor: + - '#CBCED0' diff --git a/colors/base16-horizon-terminal-light.yml b/colors/base16-horizon-terminal-light.yml new file mode 100644 index 0000000..94f89c8 --- /dev/null +++ b/colors/base16-horizon-terminal-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Horizon Terminal Light +# author: Michaël Ball (http://github.com/michael-ball/) +# slug: horizon-terminal-light +# slug-underscored: horizon_terminal_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#26BBD9' + - bold + inactiveBorderColor: + - '#BDB3B1' + searchingActiveBorderColor: + - '#F9CEC3' + optionsTextColor: + - '#26BBD9' + selectedLineBgColor: + - '#F9CBBE' + cherryPickedCommitBgColor: + - '#BDB3B1' + cherryPickedCommitFgColor: + - '#26BBD9' + markedBaseCommitFgColor: + - '#26BBD9' + unstagedChangesColor: + - '#E95678' + defaultFgColor: + - '#403C3D' diff --git a/colors/base16-humanoid-dark.yml b/colors/base16-humanoid-dark.yml new file mode 100644 index 0000000..5ba2f83 --- /dev/null +++ b/colors/base16-humanoid-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Humanoid dark +# author: Thomas (tasmo) Friese +# slug: humanoid-dark +# slug-underscored: humanoid_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#00a6fb' + - bold + inactiveBorderColor: + - '#60615d' + searchingActiveBorderColor: + - '#ff9505' + optionsTextColor: + - '#00a6fb' + selectedLineBgColor: + - '#484e54' + cherryPickedCommitBgColor: + - '#60615d' + cherryPickedCommitFgColor: + - '#00a6fb' + markedBaseCommitFgColor: + - '#00a6fb' + unstagedChangesColor: + - '#f11235' + defaultFgColor: + - '#f8f8f2' diff --git a/colors/base16-humanoid-light.yml b/colors/base16-humanoid-light.yml new file mode 100644 index 0000000..4733f60 --- /dev/null +++ b/colors/base16-humanoid-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Humanoid light +# author: Thomas (tasmo) Friese +# slug: humanoid-light +# slug-underscored: humanoid_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0082c9' + - bold + inactiveBorderColor: + - '#c0c0bd' + searchingActiveBorderColor: + - '#ff3d00' + optionsTextColor: + - '#0082c9' + selectedLineBgColor: + - '#deded8' + cherryPickedCommitBgColor: + - '#c0c0bd' + cherryPickedCommitFgColor: + - '#0082c9' + markedBaseCommitFgColor: + - '#0082c9' + unstagedChangesColor: + - '#b0151a' + defaultFgColor: + - '#232629' diff --git a/colors/base16-ia-dark.yml b/colors/base16-ia-dark.yml new file mode 100644 index 0000000..aecb4da --- /dev/null +++ b/colors/base16-ia-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: iA Dark +# author: iA Inc. (modified by aramisgithub) +# slug: ia-dark +# slug-underscored: ia_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#8eccdd' + - bold + inactiveBorderColor: + - '#767676' + searchingActiveBorderColor: + - '#d86868' + optionsTextColor: + - '#8eccdd' + selectedLineBgColor: + - '#1d414d' + cherryPickedCommitBgColor: + - '#767676' + cherryPickedCommitFgColor: + - '#8eccdd' + markedBaseCommitFgColor: + - '#8eccdd' + unstagedChangesColor: + - '#d88568' + defaultFgColor: + - '#cccccc' diff --git a/colors/base16-ia-light.yml b/colors/base16-ia-light.yml new file mode 100644 index 0000000..d2d24ba --- /dev/null +++ b/colors/base16-ia-light.yml @@ -0,0 +1,35 @@ +# +# +# name: iA Light +# author: iA Inc. (modified by aramisgithub) +# slug: ia-light +# slug-underscored: ia_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#48bac2' + - bold + inactiveBorderColor: + - '#898989' + searchingActiveBorderColor: + - '#c43e18' + optionsTextColor: + - '#48bac2' + selectedLineBgColor: + - '#bde5f2' + cherryPickedCommitBgColor: + - '#898989' + cherryPickedCommitFgColor: + - '#48bac2' + markedBaseCommitFgColor: + - '#48bac2' + unstagedChangesColor: + - '#9c5a02' + defaultFgColor: + - '#181818' diff --git a/colors/base16-icy.yml b/colors/base16-icy.yml new file mode 100644 index 0000000..c200820 --- /dev/null +++ b/colors/base16-icy.yml @@ -0,0 +1,35 @@ +# +# +# name: Icy Dark +# author: icyphox (https://icyphox.ga) +# slug: icy +# slug-underscored: icy +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#00bcd4' + - bold + inactiveBorderColor: + - '#052e34' + searchingActiveBorderColor: + - '#b3ebf2' + optionsTextColor: + - '#00bcd4' + selectedLineBgColor: + - '#041f23' + cherryPickedCommitBgColor: + - '#052e34' + cherryPickedCommitFgColor: + - '#00bcd4' + markedBaseCommitFgColor: + - '#00bcd4' + unstagedChangesColor: + - '#16c1d9' + defaultFgColor: + - '#095b67' diff --git a/colors/base16-irblack.yml b/colors/base16-irblack.yml new file mode 100644 index 0000000..c80bd53 --- /dev/null +++ b/colors/base16-irblack.yml @@ -0,0 +1,35 @@ +# +# +# name: IR Black +# author: Timothée Poisot (http://timotheepoisot.fr) +# slug: irblack +# slug-underscored: irblack +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#96cbfe' + - bold + inactiveBorderColor: + - '#6c6c66' + searchingActiveBorderColor: + - '#e9c062' + optionsTextColor: + - '#96cbfe' + selectedLineBgColor: + - '#484844' + cherryPickedCommitBgColor: + - '#6c6c66' + cherryPickedCommitFgColor: + - '#96cbfe' + markedBaseCommitFgColor: + - '#96cbfe' + unstagedChangesColor: + - '#ff6c60' + defaultFgColor: + - '#b5b3aa' diff --git a/colors/base16-isotope.yml b/colors/base16-isotope.yml new file mode 100644 index 0000000..41eb11a --- /dev/null +++ b/colors/base16-isotope.yml @@ -0,0 +1,35 @@ +# +# +# name: Isotope +# author: Jan T. Sott +# slug: isotope +# slug-underscored: isotope +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0066ff' + - bold + inactiveBorderColor: + - '#808080' + searchingActiveBorderColor: + - '#ff9900' + optionsTextColor: + - '#0066ff' + selectedLineBgColor: + - '#606060' + cherryPickedCommitBgColor: + - '#808080' + cherryPickedCommitFgColor: + - '#0066ff' + markedBaseCommitFgColor: + - '#0066ff' + unstagedChangesColor: + - '#ff0000' + defaultFgColor: + - '#d0d0d0' diff --git a/colors/base16-jabuti.yml b/colors/base16-jabuti.yml new file mode 100644 index 0000000..f70b16d --- /dev/null +++ b/colors/base16-jabuti.yml @@ -0,0 +1,35 @@ +# +# +# name: Jabuti +# author: https://github.com/notusknot +# slug: jabuti +# slug-underscored: jabuti +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3FC6DE' + - bold + inactiveBorderColor: + - '#45475d' + searchingActiveBorderColor: + - '#efb993' + optionsTextColor: + - '#3FC6DE' + selectedLineBgColor: + - '#3c3e51' + cherryPickedCommitBgColor: + - '#45475d' + cherryPickedCommitFgColor: + - '#3FC6DE' + markedBaseCommitFgColor: + - '#3FC6DE' + unstagedChangesColor: + - '#ec6a88' + defaultFgColor: + - '#c0cbe3' diff --git a/colors/base16-kanagawa.yml b/colors/base16-kanagawa.yml new file mode 100644 index 0000000..8ddb273 --- /dev/null +++ b/colors/base16-kanagawa.yml @@ -0,0 +1,35 @@ +# +# +# name: Kanagawa +# author: Tommaso Laurenzi (https://github.com/rebelot) +# slug: kanagawa +# slug-underscored: kanagawa +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7E9CD8' + - bold + inactiveBorderColor: + - '#54546D' + searchingActiveBorderColor: + - '#FFA066' + optionsTextColor: + - '#7E9CD8' + selectedLineBgColor: + - '#223249' + cherryPickedCommitBgColor: + - '#54546D' + cherryPickedCommitFgColor: + - '#7E9CD8' + markedBaseCommitFgColor: + - '#7E9CD8' + unstagedChangesColor: + - '#C34043' + defaultFgColor: + - '#DCD7BA' diff --git a/colors/base16-katy.yml b/colors/base16-katy.yml new file mode 100644 index 0000000..8411be9 --- /dev/null +++ b/colors/base16-katy.yml @@ -0,0 +1,35 @@ +# +# +# name: Katy +# author: George Essig (https://github.com/gessig) +# slug: katy +# slug-underscored: katy +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#82aaff' + - bold + inactiveBorderColor: + - '#676e95' + searchingActiveBorderColor: + - '#f78c6c' + optionsTextColor: + - '#82aaff' + selectedLineBgColor: + - '#5c598b' + cherryPickedCommitBgColor: + - '#676e95' + cherryPickedCommitFgColor: + - '#82aaff' + markedBaseCommitFgColor: + - '#82aaff' + unstagedChangesColor: + - '#6e98e1' + defaultFgColor: + - '#959dcb' diff --git a/colors/base16-kimber.yml b/colors/base16-kimber.yml new file mode 100644 index 0000000..fbf6c4a --- /dev/null +++ b/colors/base16-kimber.yml @@ -0,0 +1,35 @@ +# +# +# name: Kimber +# author: Mishka Nguyen (https://github.com/akhsiM) +# slug: kimber +# slug-underscored: kimber +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#537C9C' + - bold + inactiveBorderColor: + - '#644646' + searchingActiveBorderColor: + - '#476C88' + optionsTextColor: + - '#537C9C' + selectedLineBgColor: + - '#555D55' + cherryPickedCommitBgColor: + - '#644646' + cherryPickedCommitFgColor: + - '#537C9C' + markedBaseCommitFgColor: + - '#537C9C' + unstagedChangesColor: + - '#C88C8C' + defaultFgColor: + - '#DEDEE7' diff --git a/colors/base16-lime.yml b/colors/base16-lime.yml new file mode 100644 index 0000000..b703b21 --- /dev/null +++ b/colors/base16-lime.yml @@ -0,0 +1,35 @@ +# +# +# name: lime +# author: limelier +# slug: lime +# slug-underscored: lime +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#2b926f' + - bold + inactiveBorderColor: + - '#313140' + searchingActiveBorderColor: + - '#ff773a' + optionsTextColor: + - '#2b926f' + selectedLineBgColor: + - '#2a2a3f' + cherryPickedCommitBgColor: + - '#313140' + cherryPickedCommitFgColor: + - '#2b926f' + markedBaseCommitFgColor: + - '#2b926f' + unstagedChangesColor: + - '#ff662a' + defaultFgColor: + - '#818175' diff --git a/colors/base16-macintosh.yml b/colors/base16-macintosh.yml new file mode 100644 index 0000000..39df16a --- /dev/null +++ b/colors/base16-macintosh.yml @@ -0,0 +1,35 @@ +# +# +# name: Macintosh +# author: Rebecca Bettencourt (http://www.kreativekorp.com) +# slug: macintosh +# slug-underscored: macintosh +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0000d3' + - bold + inactiveBorderColor: + - '#808080' + searchingActiveBorderColor: + - '#ff6403' + optionsTextColor: + - '#0000d3' + selectedLineBgColor: + - '#404040' + cherryPickedCommitBgColor: + - '#808080' + cherryPickedCommitFgColor: + - '#0000d3' + markedBaseCommitFgColor: + - '#0000d3' + unstagedChangesColor: + - '#dd0907' + defaultFgColor: + - '#c0c0c0' diff --git a/colors/base16-marrakesh.yml b/colors/base16-marrakesh.yml new file mode 100644 index 0000000..1c0dde3 --- /dev/null +++ b/colors/base16-marrakesh.yml @@ -0,0 +1,35 @@ +# +# +# name: Marrakesh +# author: Alexandre Gavioli (http://github.com/Alexx2/) +# slug: marrakesh +# slug-underscored: marrakesh +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#477ca1' + - bold + inactiveBorderColor: + - '#6c6823' + searchingActiveBorderColor: + - '#b36144' + optionsTextColor: + - '#477ca1' + selectedLineBgColor: + - '#5f5b17' + cherryPickedCommitBgColor: + - '#6c6823' + cherryPickedCommitFgColor: + - '#477ca1' + markedBaseCommitFgColor: + - '#477ca1' + unstagedChangesColor: + - '#c35359' + defaultFgColor: + - '#948e48' diff --git a/colors/base16-materia.yml b/colors/base16-materia.yml new file mode 100644 index 0000000..f7c357b --- /dev/null +++ b/colors/base16-materia.yml @@ -0,0 +1,35 @@ +# +# +# name: Materia +# author: Defman21 +# slug: materia +# slug-underscored: materia +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#89DDFF' + - bold + inactiveBorderColor: + - '#707880' + searchingActiveBorderColor: + - '#EA9560' + optionsTextColor: + - '#89DDFF' + selectedLineBgColor: + - '#37474F' + cherryPickedCommitBgColor: + - '#707880' + cherryPickedCommitFgColor: + - '#89DDFF' + markedBaseCommitFgColor: + - '#89DDFF' + unstagedChangesColor: + - '#EC5F67' + defaultFgColor: + - '#CDD3DE' diff --git a/colors/base16-material-darker.yml b/colors/base16-material-darker.yml new file mode 100644 index 0000000..4c88a59 --- /dev/null +++ b/colors/base16-material-darker.yml @@ -0,0 +1,35 @@ +# +# +# name: Material Darker +# author: Nate Peterson +# slug: material-darker +# slug-underscored: material_darker +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#82AAFF' + - bold + inactiveBorderColor: + - '#4A4A4A' + searchingActiveBorderColor: + - '#F78C6C' + optionsTextColor: + - '#82AAFF' + selectedLineBgColor: + - '#353535' + cherryPickedCommitBgColor: + - '#4A4A4A' + cherryPickedCommitFgColor: + - '#82AAFF' + markedBaseCommitFgColor: + - '#82AAFF' + unstagedChangesColor: + - '#F07178' + defaultFgColor: + - '#EEFFFF' diff --git a/colors/base16-material-lighter.yml b/colors/base16-material-lighter.yml new file mode 100644 index 0000000..5692bbd --- /dev/null +++ b/colors/base16-material-lighter.yml @@ -0,0 +1,35 @@ +# +# +# name: Material Lighter +# author: Nate Peterson +# slug: material-lighter +# slug-underscored: material_lighter +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6182B8' + - bold + inactiveBorderColor: + - '#CCD7DA' + searchingActiveBorderColor: + - '#F76D47' + optionsTextColor: + - '#6182B8' + selectedLineBgColor: + - '#CCEAE7' + cherryPickedCommitBgColor: + - '#CCD7DA' + cherryPickedCommitFgColor: + - '#6182B8' + markedBaseCommitFgColor: + - '#6182B8' + unstagedChangesColor: + - '#FF5370' + defaultFgColor: + - '#80CBC4' diff --git a/colors/base16-material-palenight.yml b/colors/base16-material-palenight.yml new file mode 100644 index 0000000..3cad689 --- /dev/null +++ b/colors/base16-material-palenight.yml @@ -0,0 +1,35 @@ +# +# +# name: Material Palenight +# author: Nate Peterson +# slug: material-palenight +# slug-underscored: material_palenight +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#82AAFF' + - bold + inactiveBorderColor: + - '#676E95' + searchingActiveBorderColor: + - '#F78C6C' + optionsTextColor: + - '#82AAFF' + selectedLineBgColor: + - '#32374D' + cherryPickedCommitBgColor: + - '#676E95' + cherryPickedCommitFgColor: + - '#82AAFF' + markedBaseCommitFgColor: + - '#82AAFF' + unstagedChangesColor: + - '#F07178' + defaultFgColor: + - '#959DCB' diff --git a/colors/base16-material-vivid.yml b/colors/base16-material-vivid.yml new file mode 100644 index 0000000..2ac0bed --- /dev/null +++ b/colors/base16-material-vivid.yml @@ -0,0 +1,35 @@ +# +# +# name: Material Vivid +# author: joshyrobot +# slug: material-vivid +# slug-underscored: material_vivid +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#2196f3' + - bold + inactiveBorderColor: + - '#44464d' + searchingActiveBorderColor: + - '#ff9800' + optionsTextColor: + - '#2196f3' + selectedLineBgColor: + - '#323639' + cherryPickedCommitBgColor: + - '#44464d' + cherryPickedCommitFgColor: + - '#2196f3' + markedBaseCommitFgColor: + - '#2196f3' + unstagedChangesColor: + - '#f44336' + defaultFgColor: + - '#80868b' diff --git a/colors/base16-material.yml b/colors/base16-material.yml new file mode 100644 index 0000000..af98ec5 --- /dev/null +++ b/colors/base16-material.yml @@ -0,0 +1,35 @@ +# +# +# name: Material +# author: Nate Peterson +# slug: material +# slug-underscored: material +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#82AAFF' + - bold + inactiveBorderColor: + - '#546E7A' + searchingActiveBorderColor: + - '#F78C6C' + optionsTextColor: + - '#82AAFF' + selectedLineBgColor: + - '#314549' + cherryPickedCommitBgColor: + - '#546E7A' + cherryPickedCommitFgColor: + - '#82AAFF' + markedBaseCommitFgColor: + - '#82AAFF' + unstagedChangesColor: + - '#F07178' + defaultFgColor: + - '#EEFFFF' diff --git a/colors/base16-measured-dark.yml b/colors/base16-measured-dark.yml new file mode 100644 index 0000000..a8a99db --- /dev/null +++ b/colors/base16-measured-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Measured Dark +# author: Measured (https://measured.co) +# slug: measured-dark +# slug-underscored: measured_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#88b0da' + - bold + inactiveBorderColor: + - '#ababab' + searchingActiveBorderColor: + - '#dca37c' + optionsTextColor: + - '#88b0da' + selectedLineBgColor: + - '#005453' + cherryPickedCommitBgColor: + - '#ababab' + cherryPickedCommitFgColor: + - '#88b0da' + markedBaseCommitFgColor: + - '#88b0da' + unstagedChangesColor: + - '#ce7e8e' + defaultFgColor: + - '#dcdcdc' diff --git a/colors/base16-measured-light.yml b/colors/base16-measured-light.yml new file mode 100644 index 0000000..3e0bcdd --- /dev/null +++ b/colors/base16-measured-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Measured Light +# author: Measured (https://measured.co) +# slug: measured-light +# slug-underscored: measured_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0158ad' + - bold + inactiveBorderColor: + - '#5a5a5a' + searchingActiveBorderColor: + - '#ad5601' + optionsTextColor: + - '#0158ad' + selectedLineBgColor: + - '#ffeada' + cherryPickedCommitBgColor: + - '#5a5a5a' + cherryPickedCommitFgColor: + - '#0158ad' + markedBaseCommitFgColor: + - '#0158ad' + unstagedChangesColor: + - '#ac1f35' + defaultFgColor: + - '#292929' diff --git a/colors/base16-mellow-purple.yml b/colors/base16-mellow-purple.yml new file mode 100644 index 0000000..1feb2ba --- /dev/null +++ b/colors/base16-mellow-purple.yml @@ -0,0 +1,35 @@ +# +# +# name: Mellow Purple +# author: gidsi +# slug: mellow-purple +# slug-underscored: mellow_purple +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#550068' + - bold + inactiveBorderColor: + - '#320f55' + searchingActiveBorderColor: + - '#aa00a3' + optionsTextColor: + - '#550068' + selectedLineBgColor: + - '#331354' + cherryPickedCommitBgColor: + - '#320f55' + cherryPickedCommitFgColor: + - '#550068' + markedBaseCommitFgColor: + - '#550068' + unstagedChangesColor: + - '#00d9e9' + defaultFgColor: + - '#ffeeff' diff --git a/colors/base16-mexico-light.yml b/colors/base16-mexico-light.yml new file mode 100644 index 0000000..f4c988f --- /dev/null +++ b/colors/base16-mexico-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Mexico Light +# author: Sheldon Johnson +# slug: mexico-light +# slug-underscored: mexico_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7cafc2' + - bold + inactiveBorderColor: + - '#b8b8b8' + searchingActiveBorderColor: + - '#dc9656' + optionsTextColor: + - '#7cafc2' + selectedLineBgColor: + - '#d8d8d8' + cherryPickedCommitBgColor: + - '#b8b8b8' + cherryPickedCommitFgColor: + - '#7cafc2' + markedBaseCommitFgColor: + - '#7cafc2' + unstagedChangesColor: + - '#ab4642' + defaultFgColor: + - '#383838' diff --git a/colors/base16-mocha.yml b/colors/base16-mocha.yml new file mode 100644 index 0000000..2d32260 --- /dev/null +++ b/colors/base16-mocha.yml @@ -0,0 +1,35 @@ +# +# +# name: Mocha +# author: Chris Kempson (http://chriskempson.com) +# slug: mocha +# slug-underscored: mocha +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#8ab3b5' + - bold + inactiveBorderColor: + - '#7e705a' + searchingActiveBorderColor: + - '#d28b71' + optionsTextColor: + - '#8ab3b5' + selectedLineBgColor: + - '#645240' + cherryPickedCommitBgColor: + - '#7e705a' + cherryPickedCommitFgColor: + - '#8ab3b5' + markedBaseCommitFgColor: + - '#8ab3b5' + unstagedChangesColor: + - '#cb6077' + defaultFgColor: + - '#d0c8c6' diff --git a/colors/base16-monokai.yml b/colors/base16-monokai.yml new file mode 100644 index 0000000..78ac160 --- /dev/null +++ b/colors/base16-monokai.yml @@ -0,0 +1,35 @@ +# +# +# name: Monokai +# author: Wimer Hazenberg (http://www.monokai.nl) +# slug: monokai +# slug-underscored: monokai +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#66d9ef' + - bold + inactiveBorderColor: + - '#75715e' + searchingActiveBorderColor: + - '#fd971f' + optionsTextColor: + - '#66d9ef' + selectedLineBgColor: + - '#49483e' + cherryPickedCommitBgColor: + - '#75715e' + cherryPickedCommitFgColor: + - '#66d9ef' + markedBaseCommitFgColor: + - '#66d9ef' + unstagedChangesColor: + - '#f92672' + defaultFgColor: + - '#f8f8f2' diff --git a/colors/base16-moonlight.yml b/colors/base16-moonlight.yml new file mode 100644 index 0000000..4b8b21d --- /dev/null +++ b/colors/base16-moonlight.yml @@ -0,0 +1,35 @@ +# +# +# name: Moonlight +# author: Jeremy Swinarton (https://github.com/jswinarton) +# slug: moonlight +# slug-underscored: moonlight +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#40ffff' + - bold + inactiveBorderColor: + - '#748cd6' + searchingActiveBorderColor: + - '#f67f81' + optionsTextColor: + - '#40ffff' + selectedLineBgColor: + - '#596399' + cherryPickedCommitBgColor: + - '#748cd6' + cherryPickedCommitFgColor: + - '#40ffff' + markedBaseCommitFgColor: + - '#40ffff' + unstagedChangesColor: + - '#ff5370' + defaultFgColor: + - '#a3ace1' diff --git a/colors/base16-mountain.yml b/colors/base16-mountain.yml new file mode 100644 index 0000000..189faa4 --- /dev/null +++ b/colors/base16-mountain.yml @@ -0,0 +1,35 @@ +# +# +# name: Mountain +# author: gnsfujiwara (https://github.com/gnsfujiwara) +# slug: mountain +# slug-underscored: mountain +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#8f8aac' + - bold + inactiveBorderColor: + - '#4c4c4c' + searchingActiveBorderColor: + - '#ceb188' + optionsTextColor: + - '#8f8aac' + selectedLineBgColor: + - '#262626' + cherryPickedCommitBgColor: + - '#4c4c4c' + cherryPickedCommitFgColor: + - '#8f8aac' + markedBaseCommitFgColor: + - '#8f8aac' + unstagedChangesColor: + - '#ac8a8c' + defaultFgColor: + - '#cacaca' diff --git a/colors/base16-nebula.yml b/colors/base16-nebula.yml new file mode 100644 index 0000000..b3b3116 --- /dev/null +++ b/colors/base16-nebula.yml @@ -0,0 +1,35 @@ +# +# +# name: Nebula +# author: Gabriel Fontes (https://github.com/Misterio77) +# slug: nebula +# slug-underscored: nebula +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#4d6bb6' + - bold + inactiveBorderColor: + - '#6e6f72' + searchingActiveBorderColor: + - '#94929e' + optionsTextColor: + - '#4d6bb6' + selectedLineBgColor: + - '#5a8380' + cherryPickedCommitBgColor: + - '#6e6f72' + cherryPickedCommitFgColor: + - '#4d6bb6' + markedBaseCommitFgColor: + - '#4d6bb6' + unstagedChangesColor: + - '#777abc' + defaultFgColor: + - '#a4a6a9' diff --git a/colors/base16-nord-light.yml b/colors/base16-nord-light.yml new file mode 100644 index 0000000..d3bfa44 --- /dev/null +++ b/colors/base16-nord-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Nord Light +# author: threddast, based on fuxialexander's doom-nord-light-theme (Doom Emacs) +# slug: nord-light +# slug-underscored: nord_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3b6ea8' + - bold + inactiveBorderColor: + - '#aebacf' + searchingActiveBorderColor: + - '#ac4426' + optionsTextColor: + - '#3b6ea8' + selectedLineBgColor: + - '#b8c5db' + cherryPickedCommitBgColor: + - '#aebacf' + cherryPickedCommitFgColor: + - '#3b6ea8' + markedBaseCommitFgColor: + - '#3b6ea8' + unstagedChangesColor: + - '#99324b' + defaultFgColor: + - '#2e3440' diff --git a/colors/base16-nord.yml b/colors/base16-nord.yml new file mode 100644 index 0000000..e7b3622 --- /dev/null +++ b/colors/base16-nord.yml @@ -0,0 +1,35 @@ +# +# +# name: Nord +# author: arcticicestudio +# slug: nord +# slug-underscored: nord +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#81A1C1' + - bold + inactiveBorderColor: + - '#4C566A' + searchingActiveBorderColor: + - '#D08770' + optionsTextColor: + - '#81A1C1' + selectedLineBgColor: + - '#434C5E' + cherryPickedCommitBgColor: + - '#4C566A' + cherryPickedCommitFgColor: + - '#81A1C1' + markedBaseCommitFgColor: + - '#81A1C1' + unstagedChangesColor: + - '#BF616A' + defaultFgColor: + - '#E5E9F0' diff --git a/colors/base16-nova.yml b/colors/base16-nova.yml new file mode 100644 index 0000000..fb32212 --- /dev/null +++ b/colors/base16-nova.yml @@ -0,0 +1,35 @@ +# +# +# name: Nova +# author: George Essig (https://github.com/gessig), Trevor D. Miller (https://trevordmiller.com) +# slug: nova +# slug-underscored: nova +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#83AFE5' + - bold + inactiveBorderColor: + - '#899BA6' + searchingActiveBorderColor: + - '#7FC1CA' + optionsTextColor: + - '#83AFE5' + selectedLineBgColor: + - '#6A7D89' + cherryPickedCommitBgColor: + - '#899BA6' + cherryPickedCommitFgColor: + - '#83AFE5' + markedBaseCommitFgColor: + - '#83AFE5' + unstagedChangesColor: + - '#83AFE5' + defaultFgColor: + - '#C5D4DD' diff --git a/colors/base16-ocean.yml b/colors/base16-ocean.yml new file mode 100644 index 0000000..966a3ce --- /dev/null +++ b/colors/base16-ocean.yml @@ -0,0 +1,35 @@ +# +# +# name: Ocean +# author: Chris Kempson (http://chriskempson.com) +# slug: ocean +# slug-underscored: ocean +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#8fa1b3' + - bold + inactiveBorderColor: + - '#65737e' + searchingActiveBorderColor: + - '#d08770' + optionsTextColor: + - '#8fa1b3' + selectedLineBgColor: + - '#4f5b66' + cherryPickedCommitBgColor: + - '#65737e' + cherryPickedCommitFgColor: + - '#8fa1b3' + markedBaseCommitFgColor: + - '#8fa1b3' + unstagedChangesColor: + - '#bf616a' + defaultFgColor: + - '#c0c5ce' diff --git a/colors/base16-oceanicnext.yml b/colors/base16-oceanicnext.yml new file mode 100644 index 0000000..0e43a99 --- /dev/null +++ b/colors/base16-oceanicnext.yml @@ -0,0 +1,35 @@ +# +# +# name: OceanicNext +# author: https://github.com/voronianski/oceanic-next-color-scheme +# slug: oceanicnext +# slug-underscored: oceanicnext +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6699CC' + - bold + inactiveBorderColor: + - '#65737E' + searchingActiveBorderColor: + - '#F99157' + optionsTextColor: + - '#6699CC' + selectedLineBgColor: + - '#4F5B66' + cherryPickedCommitBgColor: + - '#65737E' + cherryPickedCommitFgColor: + - '#6699CC' + markedBaseCommitFgColor: + - '#6699CC' + unstagedChangesColor: + - '#EC5f67' + defaultFgColor: + - '#C0C5CE' diff --git a/colors/base16-one-light.yml b/colors/base16-one-light.yml new file mode 100644 index 0000000..d925c77 --- /dev/null +++ b/colors/base16-one-light.yml @@ -0,0 +1,35 @@ +# +# +# name: One Light +# author: Daniel Pfeifer (http://github.com/purpleKarrot) +# slug: one-light +# slug-underscored: one_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#4078f2' + - bold + inactiveBorderColor: + - '#a0a1a7' + searchingActiveBorderColor: + - '#d75f00' + optionsTextColor: + - '#4078f2' + selectedLineBgColor: + - '#e5e5e6' + cherryPickedCommitBgColor: + - '#a0a1a7' + cherryPickedCommitFgColor: + - '#4078f2' + markedBaseCommitFgColor: + - '#4078f2' + unstagedChangesColor: + - '#ca1243' + defaultFgColor: + - '#383a42' diff --git a/colors/base16-onedark-dark.yml b/colors/base16-onedark-dark.yml new file mode 100644 index 0000000..278b9b0 --- /dev/null +++ b/colors/base16-onedark-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: OneDark Dark +# author: olimorris (https://github.com/olimorris) +# slug: onedark-dark +# slug-underscored: onedark_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#61afef' + - bold + inactiveBorderColor: + - '#434852' + searchingActiveBorderColor: + - '#d19a66' + optionsTextColor: + - '#61afef' + selectedLineBgColor: + - '#2c313a' + cherryPickedCommitBgColor: + - '#434852' + cherryPickedCommitFgColor: + - '#61afef' + markedBaseCommitFgColor: + - '#61afef' + unstagedChangesColor: + - '#ef596f' + defaultFgColor: + - '#abb2bf' diff --git a/colors/base16-onedark.yml b/colors/base16-onedark.yml new file mode 100644 index 0000000..7a1933a --- /dev/null +++ b/colors/base16-onedark.yml @@ -0,0 +1,35 @@ +# +# +# name: OneDark +# author: Lalit Magant (http://github.com/tilal6991) +# slug: onedark +# slug-underscored: onedark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#61afef' + - bold + inactiveBorderColor: + - '#545862' + searchingActiveBorderColor: + - '#d19a66' + optionsTextColor: + - '#61afef' + selectedLineBgColor: + - '#3e4451' + cherryPickedCommitBgColor: + - '#545862' + cherryPickedCommitFgColor: + - '#61afef' + markedBaseCommitFgColor: + - '#61afef' + unstagedChangesColor: + - '#e06c75' + defaultFgColor: + - '#abb2bf' diff --git a/colors/base16-outrun-dark.yml b/colors/base16-outrun-dark.yml new file mode 100644 index 0000000..1f55b26 --- /dev/null +++ b/colors/base16-outrun-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Outrun Dark +# author: Hugo Delahousse (http://github.com/hugodelahousse/) +# slug: outrun-dark +# slug-underscored: outrun_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#66B0FF' + - bold + inactiveBorderColor: + - '#50507A' + searchingActiveBorderColor: + - '#FC8D28' + optionsTextColor: + - '#66B0FF' + selectedLineBgColor: + - '#30305A' + cherryPickedCommitBgColor: + - '#50507A' + cherryPickedCommitFgColor: + - '#66B0FF' + markedBaseCommitFgColor: + - '#66B0FF' + unstagedChangesColor: + - '#FF4242' + defaultFgColor: + - '#D0D0FA' diff --git a/colors/base16-oxocarbon-dark.yml b/colors/base16-oxocarbon-dark.yml new file mode 100644 index 0000000..a7511a9 --- /dev/null +++ b/colors/base16-oxocarbon-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Oxocarbon Dark +# author: shaunsingh/IBM +# slug: oxocarbon-dark +# slug-underscored: oxocarbon_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#42be65' + - bold + inactiveBorderColor: + - '#525252' + searchingActiveBorderColor: + - '#78a9ff' + optionsTextColor: + - '#42be65' + selectedLineBgColor: + - '#393939' + cherryPickedCommitBgColor: + - '#525252' + cherryPickedCommitFgColor: + - '#42be65' + markedBaseCommitFgColor: + - '#42be65' + unstagedChangesColor: + - '#3ddbd9' + defaultFgColor: + - '#f2f4f8' diff --git a/colors/base16-oxocarbon-light.yml b/colors/base16-oxocarbon-light.yml new file mode 100644 index 0000000..bdbff58 --- /dev/null +++ b/colors/base16-oxocarbon-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Oxocarbon Light +# author: shaunsingh/IBM +# slug: oxocarbon-light +# slug-underscored: oxocarbon_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#42be65' + - bold + inactiveBorderColor: + - '#161616' + searchingActiveBorderColor: + - '#ee5396' + optionsTextColor: + - '#42be65' + selectedLineBgColor: + - '#525252' + cherryPickedCommitBgColor: + - '#161616' + cherryPickedCommitFgColor: + - '#42be65' + markedBaseCommitFgColor: + - '#42be65' + unstagedChangesColor: + - '#ff7eb6' + defaultFgColor: + - '#393939' diff --git a/colors/base16-pandora.yml b/colors/base16-pandora.yml new file mode 100644 index 0000000..8a5189e --- /dev/null +++ b/colors/base16-pandora.yml @@ -0,0 +1,35 @@ +# +# +# name: pandora +# author: Cassandra Fox +# slug: pandora +# slug-underscored: pandora +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#008080' + - bold + inactiveBorderColor: + - '#ffbee3' + searchingActiveBorderColor: + - '#ff9153' + optionsTextColor: + - '#008080' + selectedLineBgColor: + - '#472234' + cherryPickedCommitBgColor: + - '#ffbee3' + cherryPickedCommitFgColor: + - '#008080' + markedBaseCommitFgColor: + - '#008080' + unstagedChangesColor: + - '#b00b69' + defaultFgColor: + - '#f15c99' diff --git a/colors/base16-papercolor-dark.yml b/colors/base16-papercolor-dark.yml new file mode 100644 index 0000000..d045155 --- /dev/null +++ b/colors/base16-papercolor-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: PaperColor Dark +# author: Jon Leopard (http://github.com/jonleopard), based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) +# slug: papercolor-dark +# slug-underscored: papercolor_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#ff5faf' + - bold + inactiveBorderColor: + - '#d7af5f' + searchingActiveBorderColor: + - '#5faf5f' + optionsTextColor: + - '#ff5faf' + selectedLineBgColor: + - '#5faf00' + cherryPickedCommitBgColor: + - '#d7af5f' + cherryPickedCommitFgColor: + - '#ff5faf' + markedBaseCommitFgColor: + - '#ff5faf' + unstagedChangesColor: + - '#585858' + defaultFgColor: + - '#808080' diff --git a/colors/base16-papercolor-light.yml b/colors/base16-papercolor-light.yml new file mode 100644 index 0000000..2d884a5 --- /dev/null +++ b/colors/base16-papercolor-light.yml @@ -0,0 +1,35 @@ +# +# +# name: PaperColor Light +# author: Jon Leopard (http://github.com/jonleopard), based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) +# slug: papercolor-light +# slug-underscored: papercolor_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#d75f00' + - bold + inactiveBorderColor: + - '#5f8700' + searchingActiveBorderColor: + - '#d70000' + optionsTextColor: + - '#d75f00' + selectedLineBgColor: + - '#008700' + cherryPickedCommitBgColor: + - '#5f8700' + cherryPickedCommitFgColor: + - '#d75f00' + markedBaseCommitFgColor: + - '#d75f00' + unstagedChangesColor: + - '#bcbcbc' + defaultFgColor: + - '#444444' diff --git a/colors/base16-paraiso.yml b/colors/base16-paraiso.yml new file mode 100644 index 0000000..dd2fce7 --- /dev/null +++ b/colors/base16-paraiso.yml @@ -0,0 +1,35 @@ +# +# +# name: Paraiso +# author: Jan T. Sott +# slug: paraiso +# slug-underscored: paraiso +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#06b6ef' + - bold + inactiveBorderColor: + - '#776e71' + searchingActiveBorderColor: + - '#f99b15' + optionsTextColor: + - '#06b6ef' + selectedLineBgColor: + - '#4f424c' + cherryPickedCommitBgColor: + - '#776e71' + cherryPickedCommitFgColor: + - '#06b6ef' + markedBaseCommitFgColor: + - '#06b6ef' + unstagedChangesColor: + - '#ef6155' + defaultFgColor: + - '#a39e9b' diff --git a/colors/base16-pasque.yml b/colors/base16-pasque.yml new file mode 100644 index 0000000..2f932d7 --- /dev/null +++ b/colors/base16-pasque.yml @@ -0,0 +1,35 @@ +# +# +# name: Pasque +# author: Gabriel Fontes (https://github.com/Misterio77) +# slug: pasque +# slug-underscored: pasque +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#8E7DC6' + - bold + inactiveBorderColor: + - '#5D5766' + searchingActiveBorderColor: + - '#918889' + optionsTextColor: + - '#8E7DC6' + selectedLineBgColor: + - '#3E2D5C' + cherryPickedCommitBgColor: + - '#5D5766' + cherryPickedCommitFgColor: + - '#8E7DC6' + markedBaseCommitFgColor: + - '#8E7DC6' + unstagedChangesColor: + - '#A92258' + defaultFgColor: + - '#DEDCDF' diff --git a/colors/base16-phd.yml b/colors/base16-phd.yml new file mode 100644 index 0000000..be484f7 --- /dev/null +++ b/colors/base16-phd.yml @@ -0,0 +1,35 @@ +# +# +# name: PhD +# author: Hennig Hasemann (http://leetless.de/vim.html) +# slug: phd +# slug-underscored: phd +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#5299bf' + - bold + inactiveBorderColor: + - '#717885' + searchingActiveBorderColor: + - '#f0a000' + optionsTextColor: + - '#5299bf' + selectedLineBgColor: + - '#4d5666' + cherryPickedCommitBgColor: + - '#717885' + cherryPickedCommitFgColor: + - '#5299bf' + markedBaseCommitFgColor: + - '#5299bf' + unstagedChangesColor: + - '#d07346' + defaultFgColor: + - '#b8bbc2' diff --git a/colors/base16-pico.yml b/colors/base16-pico.yml new file mode 100644 index 0000000..7701e91 --- /dev/null +++ b/colors/base16-pico.yml @@ -0,0 +1,35 @@ +# +# +# name: Pico +# author: PICO-8 (http://www.lexaloffle.com/pico-8.php) +# slug: pico +# slug-underscored: pico +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#83769c' + - bold + inactiveBorderColor: + - '#008751' + searchingActiveBorderColor: + - '#ffa300' + optionsTextColor: + - '#83769c' + selectedLineBgColor: + - '#7e2553' + cherryPickedCommitBgColor: + - '#008751' + cherryPickedCommitFgColor: + - '#83769c' + markedBaseCommitFgColor: + - '#83769c' + unstagedChangesColor: + - '#ff004d' + defaultFgColor: + - '#5f574f' diff --git a/colors/base16-pinky.yml b/colors/base16-pinky.yml new file mode 100644 index 0000000..2bf6459 --- /dev/null +++ b/colors/base16-pinky.yml @@ -0,0 +1,35 @@ +# +# +# name: pinky +# author: Benjamin (https://github.com/b3nj5m1n) +# slug: pinky +# slug-underscored: pinky +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#00ffff' + - bold + inactiveBorderColor: + - '#383338' + searchingActiveBorderColor: + - '#00ff66' + optionsTextColor: + - '#00ffff' + selectedLineBgColor: + - '#1d1b1d' + cherryPickedCommitBgColor: + - '#383338' + cherryPickedCommitFgColor: + - '#00ffff' + markedBaseCommitFgColor: + - '#00ffff' + unstagedChangesColor: + - '#ffa600' + defaultFgColor: + - '#f5f5f5' diff --git a/colors/base16-pop.yml b/colors/base16-pop.yml new file mode 100644 index 0000000..9bb35ec --- /dev/null +++ b/colors/base16-pop.yml @@ -0,0 +1,35 @@ +# +# +# name: Pop +# author: Chris Kempson (http://chriskempson.com) +# slug: pop +# slug-underscored: pop +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0e5a94' + - bold + inactiveBorderColor: + - '#505050' + searchingActiveBorderColor: + - '#f29333' + optionsTextColor: + - '#0e5a94' + selectedLineBgColor: + - '#303030' + cherryPickedCommitBgColor: + - '#505050' + cherryPickedCommitFgColor: + - '#0e5a94' + markedBaseCommitFgColor: + - '#0e5a94' + unstagedChangesColor: + - '#eb008a' + defaultFgColor: + - '#d0d0d0' diff --git a/colors/base16-porple.yml b/colors/base16-porple.yml new file mode 100644 index 0000000..915d685 --- /dev/null +++ b/colors/base16-porple.yml @@ -0,0 +1,35 @@ +# +# +# name: Porple +# author: Niek den Breeje (https://github.com/AuditeMarlow) +# slug: porple +# slug-underscored: porple +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#8485ce' + - bold + inactiveBorderColor: + - '#65568a' + searchingActiveBorderColor: + - '#d28e5d' + optionsTextColor: + - '#8485ce' + selectedLineBgColor: + - '#474160' + cherryPickedCommitBgColor: + - '#65568a' + cherryPickedCommitFgColor: + - '#8485ce' + markedBaseCommitFgColor: + - '#8485ce' + unstagedChangesColor: + - '#f84547' + defaultFgColor: + - '#d8d8d8' diff --git a/colors/base16-precious-dark-eleven.yml b/colors/base16-precious-dark-eleven.yml new file mode 100644 index 0000000..0506c20 --- /dev/null +++ b/colors/base16-precious-dark-eleven.yml @@ -0,0 +1,35 @@ +# +# +# name: Precious Dark Eleven +# author: 4lex4 <4lex49@zoho.com> +# slug: precious-dark-eleven +# slug-underscored: precious_dark_eleven +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#68b0ee' + - bold + inactiveBorderColor: + - '#858585' + searchingActiveBorderColor: + - '#ea9755' + optionsTextColor: + - '#68b0ee' + selectedLineBgColor: + - '#37393a' + cherryPickedCommitBgColor: + - '#858585' + cherryPickedCommitFgColor: + - '#68b0ee' + markedBaseCommitFgColor: + - '#68b0ee' + unstagedChangesColor: + - '#ff8782' + defaultFgColor: + - '#b8b7b6' diff --git a/colors/base16-precious-dark-fifteen.yml b/colors/base16-precious-dark-fifteen.yml new file mode 100644 index 0000000..3ca00b0 --- /dev/null +++ b/colors/base16-precious-dark-fifteen.yml @@ -0,0 +1,35 @@ +# +# +# name: Precious Dark Fifteen +# author: 4lex4 <4lex49@zoho.com> +# slug: precious-dark-fifteen +# slug-underscored: precious_dark_fifteen +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#66b0ef' + - bold + inactiveBorderColor: + - '#898989' + searchingActiveBorderColor: + - '#e99857' + optionsTextColor: + - '#66b0ef' + selectedLineBgColor: + - '#3e4044' + cherryPickedCommitBgColor: + - '#898989' + cherryPickedCommitFgColor: + - '#66b0ef' + markedBaseCommitFgColor: + - '#66b0ef' + unstagedChangesColor: + - '#ff8782' + defaultFgColor: + - '#bab9b6' diff --git a/colors/base16-precious-light-warm.yml b/colors/base16-precious-light-warm.yml new file mode 100644 index 0000000..f7a109d --- /dev/null +++ b/colors/base16-precious-light-warm.yml @@ -0,0 +1,35 @@ +# +# +# name: Precious Light Warm +# author: 4lex4 <4lex49@zoho.com> +# slug: precious-light-warm +# slug-underscored: precious_light_warm +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#246da5' + - bold + inactiveBorderColor: + - '#7f8080' + searchingActiveBorderColor: + - '#a25600' + optionsTextColor: + - '#246da5' + selectedLineBgColor: + - '#d9d3c8' + cherryPickedCommitBgColor: + - '#7f8080' + cherryPickedCommitFgColor: + - '#246da5' + markedBaseCommitFgColor: + - '#246da5' + unstagedChangesColor: + - '#b14745' + defaultFgColor: + - '#4e5359' diff --git a/colors/base16-precious-light-white.yml b/colors/base16-precious-light-white.yml new file mode 100644 index 0000000..bfef7de --- /dev/null +++ b/colors/base16-precious-light-white.yml @@ -0,0 +1,35 @@ +# +# +# name: Precious Light White +# author: 4lex4 <4lex49@zoho.com> +# slug: precious-light-white +# slug-underscored: precious_light_white +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#186daa' + - bold + inactiveBorderColor: + - '#848484' + searchingActiveBorderColor: + - '#a0570d' + optionsTextColor: + - '#186daa' + selectedLineBgColor: + - '#dbdbdb' + cherryPickedCommitBgColor: + - '#848484' + cherryPickedCommitFgColor: + - '#186daa' + markedBaseCommitFgColor: + - '#186daa' + unstagedChangesColor: + - '#af4947' + defaultFgColor: + - '#555555' diff --git a/colors/base16-primer-dark-dimmed.yml b/colors/base16-primer-dark-dimmed.yml new file mode 100644 index 0000000..3e19d31 --- /dev/null +++ b/colors/base16-primer-dark-dimmed.yml @@ -0,0 +1,35 @@ +# +# +# name: Primer Dark Dimmed +# author: Jimmy Lin +# slug: primer-dark-dimmed +# slug-underscored: primer_dark_dimmed +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#539bf5' + - bold + inactiveBorderColor: + - '#545d68' + searchingActiveBorderColor: + - '#e0823d' + optionsTextColor: + - '#539bf5' + selectedLineBgColor: + - '#444c56' + cherryPickedCommitBgColor: + - '#545d68' + cherryPickedCommitFgColor: + - '#539bf5' + markedBaseCommitFgColor: + - '#539bf5' + unstagedChangesColor: + - '#f47067' + defaultFgColor: + - '#909dab' diff --git a/colors/base16-primer-dark.yml b/colors/base16-primer-dark.yml new file mode 100644 index 0000000..be8741c --- /dev/null +++ b/colors/base16-primer-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Primer Dark +# author: Jimmy Lin +# slug: primer-dark +# slug-underscored: primer_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#58a6ff' + - bold + inactiveBorderColor: + - '#484f58' + searchingActiveBorderColor: + - '#f0883e' + optionsTextColor: + - '#58a6ff' + selectedLineBgColor: + - '#30363d' + cherryPickedCommitBgColor: + - '#484f58' + cherryPickedCommitFgColor: + - '#58a6ff' + markedBaseCommitFgColor: + - '#58a6ff' + unstagedChangesColor: + - '#ff7b72' + defaultFgColor: + - '#b1bac4' diff --git a/colors/base16-primer-light.yml b/colors/base16-primer-light.yml new file mode 100644 index 0000000..554d658 --- /dev/null +++ b/colors/base16-primer-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Primer Light +# author: Jimmy Lin +# slug: primer-light +# slug-underscored: primer_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0366d6' + - bold + inactiveBorderColor: + - '#959da5' + searchingActiveBorderColor: + - '#f66a0a' + optionsTextColor: + - '#0366d6' + selectedLineBgColor: + - '#d1d5da' + cherryPickedCommitBgColor: + - '#959da5' + cherryPickedCommitFgColor: + - '#0366d6' + markedBaseCommitFgColor: + - '#0366d6' + unstagedChangesColor: + - '#d73a49' + defaultFgColor: + - '#2f363d' diff --git a/colors/base16-purpledream.yml b/colors/base16-purpledream.yml new file mode 100644 index 0000000..0e7711c --- /dev/null +++ b/colors/base16-purpledream.yml @@ -0,0 +1,35 @@ +# +# +# name: Purpledream +# author: malet +# slug: purpledream +# slug-underscored: purpledream +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#00A0F0' + - bold + inactiveBorderColor: + - '#605060' + searchingActiveBorderColor: + - '#CCAE14' + optionsTextColor: + - '#00A0F0' + selectedLineBgColor: + - '#403040' + cherryPickedCommitBgColor: + - '#605060' + cherryPickedCommitFgColor: + - '#00A0F0' + markedBaseCommitFgColor: + - '#00A0F0' + unstagedChangesColor: + - '#FF1D0D' + defaultFgColor: + - '#ddd0dd' diff --git a/colors/base16-qualia.yml b/colors/base16-qualia.yml new file mode 100644 index 0000000..95ad5bf --- /dev/null +++ b/colors/base16-qualia.yml @@ -0,0 +1,35 @@ +# +# +# name: Qualia +# author: isaacwhanson +# slug: qualia +# slug-underscored: qualia +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#50CACD' + - bold + inactiveBorderColor: + - '#454545' + searchingActiveBorderColor: + - '#A3B8EF' + optionsTextColor: + - '#50CACD' + selectedLineBgColor: + - '#454545' + cherryPickedCommitBgColor: + - '#454545' + cherryPickedCommitFgColor: + - '#50CACD' + markedBaseCommitFgColor: + - '#50CACD' + unstagedChangesColor: + - '#EFA6A2' + defaultFgColor: + - '#C0C0C0' diff --git a/colors/base16-railscasts.yml b/colors/base16-railscasts.yml new file mode 100644 index 0000000..52a1dbf --- /dev/null +++ b/colors/base16-railscasts.yml @@ -0,0 +1,35 @@ +# +# +# name: Railscasts +# author: Ryan Bates (http://railscasts.com) +# slug: railscasts +# slug-underscored: railscasts +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6d9cbe' + - bold + inactiveBorderColor: + - '#5a647e' + searchingActiveBorderColor: + - '#cc7833' + optionsTextColor: + - '#6d9cbe' + selectedLineBgColor: + - '#3a4055' + cherryPickedCommitBgColor: + - '#5a647e' + cherryPickedCommitFgColor: + - '#6d9cbe' + markedBaseCommitFgColor: + - '#6d9cbe' + unstagedChangesColor: + - '#da4939' + defaultFgColor: + - '#e6e1dc' diff --git a/colors/base16-rebecca.yml b/colors/base16-rebecca.yml new file mode 100644 index 0000000..642607f --- /dev/null +++ b/colors/base16-rebecca.yml @@ -0,0 +1,35 @@ +# +# +# name: Rebecca +# author: Victor Borja (http://github.com/vic) based on Rebecca Theme (http://github.com/vic/rebecca-theme) +# slug: rebecca +# slug-underscored: rebecca +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#2de0a7' + - bold + inactiveBorderColor: + - '#666699' + searchingActiveBorderColor: + - '#efe4a1' + optionsTextColor: + - '#2de0a7' + selectedLineBgColor: + - '#383a62' + cherryPickedCommitBgColor: + - '#666699' + cherryPickedCommitFgColor: + - '#2de0a7' + markedBaseCommitFgColor: + - '#2de0a7' + unstagedChangesColor: + - '#a0a0c5' + defaultFgColor: + - '#f1eff8' diff --git a/colors/base16-rose-pine-dawn.yml b/colors/base16-rose-pine-dawn.yml new file mode 100644 index 0000000..1d68889 --- /dev/null +++ b/colors/base16-rose-pine-dawn.yml @@ -0,0 +1,35 @@ +# +# +# name: Rosé Pine Dawn +# author: Emilia Dunfelt <edun@dunfelt.se> +# slug: rose-pine-dawn +# slug-underscored: rose_pine_dawn +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#907aa9' + - bold + inactiveBorderColor: + - '#9893a5' + searchingActiveBorderColor: + - '#ea9d34' + optionsTextColor: + - '#907aa9' + selectedLineBgColor: + - '#f2e9de' + cherryPickedCommitBgColor: + - '#9893a5' + cherryPickedCommitFgColor: + - '#907aa9' + markedBaseCommitFgColor: + - '#907aa9' + unstagedChangesColor: + - '#b4637a' + defaultFgColor: + - '#575279' diff --git a/colors/base16-rose-pine-moon.yml b/colors/base16-rose-pine-moon.yml new file mode 100644 index 0000000..b73a9c7 --- /dev/null +++ b/colors/base16-rose-pine-moon.yml @@ -0,0 +1,35 @@ +# +# +# name: Rosé Pine Moon +# author: Emilia Dunfelt <edun@dunfelt.se> +# slug: rose-pine-moon +# slug-underscored: rose_pine_moon +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#c4a7e7' + - bold + inactiveBorderColor: + - '#6e6a86' + searchingActiveBorderColor: + - '#f6c177' + optionsTextColor: + - '#c4a7e7' + selectedLineBgColor: + - '#393552' + cherryPickedCommitBgColor: + - '#6e6a86' + cherryPickedCommitFgColor: + - '#c4a7e7' + markedBaseCommitFgColor: + - '#c4a7e7' + unstagedChangesColor: + - '#eb6f92' + defaultFgColor: + - '#e0def4' diff --git a/colors/base16-rose-pine.yml b/colors/base16-rose-pine.yml new file mode 100644 index 0000000..9163afb --- /dev/null +++ b/colors/base16-rose-pine.yml @@ -0,0 +1,35 @@ +# +# +# name: Rosé Pine +# author: Emilia Dunfelt <edun@dunfelt.se> +# slug: rose-pine +# slug-underscored: rose_pine +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#c4a7e7' + - bold + inactiveBorderColor: + - '#6e6a86' + searchingActiveBorderColor: + - '#f6c177' + optionsTextColor: + - '#c4a7e7' + selectedLineBgColor: + - '#26233a' + cherryPickedCommitBgColor: + - '#6e6a86' + cherryPickedCommitFgColor: + - '#c4a7e7' + markedBaseCommitFgColor: + - '#c4a7e7' + unstagedChangesColor: + - '#eb6f92' + defaultFgColor: + - '#e0def4' diff --git a/colors/base16-saga.yml b/colors/base16-saga.yml new file mode 100644 index 0000000..887d3c0 --- /dev/null +++ b/colors/base16-saga.yml @@ -0,0 +1,35 @@ +# +# +# name: SAGA +# author: https://github.com/SAGAtheme/SAGA +# slug: saga +# slug-underscored: saga +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#c9fff7' + - bold + inactiveBorderColor: + - '#141f27' + searchingActiveBorderColor: + - '#fbcbae' + optionsTextColor: + - '#c9fff7' + selectedLineBgColor: + - '#0f181e' + cherryPickedCommitBgColor: + - '#141f27' + cherryPickedCommitFgColor: + - '#c9fff7' + markedBaseCommitFgColor: + - '#c9fff7' + unstagedChangesColor: + - '#ffd4e9' + defaultFgColor: + - '#dce2f7' diff --git a/colors/base16-sagelight.yml b/colors/base16-sagelight.yml new file mode 100644 index 0000000..a4ddeb7 --- /dev/null +++ b/colors/base16-sagelight.yml @@ -0,0 +1,35 @@ +# +# +# name: Sagelight +# author: Carter Veldhuizen +# slug: sagelight +# slug-underscored: sagelight +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#a0a7d2' + - bold + inactiveBorderColor: + - '#b8b8b8' + searchingActiveBorderColor: + - '#ffaa61' + optionsTextColor: + - '#a0a7d2' + selectedLineBgColor: + - '#d8d8d8' + cherryPickedCommitBgColor: + - '#b8b8b8' + cherryPickedCommitFgColor: + - '#a0a7d2' + markedBaseCommitFgColor: + - '#a0a7d2' + unstagedChangesColor: + - '#fa8480' + defaultFgColor: + - '#383838' diff --git a/colors/base16-sakura.yml b/colors/base16-sakura.yml new file mode 100644 index 0000000..3059c38 --- /dev/null +++ b/colors/base16-sakura.yml @@ -0,0 +1,35 @@ +# +# +# name: Sakura +# author: Misterio77 (http://github.com/Misterio77) +# slug: sakura +# slug-underscored: sakura +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#006e93' + - bold + inactiveBorderColor: + - '#755f64' + searchingActiveBorderColor: + - '#f6661e' + optionsTextColor: + - '#006e93' + selectedLineBgColor: + - '#e0ccd1' + cherryPickedCommitBgColor: + - '#755f64' + cherryPickedCommitFgColor: + - '#006e93' + markedBaseCommitFgColor: + - '#006e93' + unstagedChangesColor: + - '#df2d52' + defaultFgColor: + - '#564448' diff --git a/colors/base16-sandcastle.yml b/colors/base16-sandcastle.yml new file mode 100644 index 0000000..2f751a9 --- /dev/null +++ b/colors/base16-sandcastle.yml @@ -0,0 +1,35 @@ +# +# +# name: Sandcastle +# author: George Essig (https://github.com/gessig) +# slug: sandcastle +# slug-underscored: sandcastle +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#83a598' + - bold + inactiveBorderColor: + - '#665c54' + searchingActiveBorderColor: + - '#a07e3b' + optionsTextColor: + - '#83a598' + selectedLineBgColor: + - '#3e4451' + cherryPickedCommitBgColor: + - '#665c54' + cherryPickedCommitFgColor: + - '#83a598' + markedBaseCommitFgColor: + - '#83a598' + unstagedChangesColor: + - '#83a598' + defaultFgColor: + - '#a89984' diff --git a/colors/base16-selenized-black.yml b/colors/base16-selenized-black.yml new file mode 100644 index 0000000..069e651 --- /dev/null +++ b/colors/base16-selenized-black.yml @@ -0,0 +1,35 @@ +# +# +# name: selenized-black +# author: Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali +# slug: selenized-black +# slug-underscored: selenized_black +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#368aeb' + - bold + inactiveBorderColor: + - '#777777' + searchingActiveBorderColor: + - '#e67f43' + optionsTextColor: + - '#368aeb' + selectedLineBgColor: + - '#3b3b3b' + cherryPickedCommitBgColor: + - '#777777' + cherryPickedCommitFgColor: + - '#368aeb' + markedBaseCommitFgColor: + - '#368aeb' + unstagedChangesColor: + - '#ed4a46' + defaultFgColor: + - '#b9b9b9' diff --git a/colors/base16-selenized-dark.yml b/colors/base16-selenized-dark.yml new file mode 100644 index 0000000..8c7ef32 --- /dev/null +++ b/colors/base16-selenized-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: selenized-dark +# author: Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali +# slug: selenized-dark +# slug-underscored: selenized_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#4695f7' + - bold + inactiveBorderColor: + - '#72898f' + searchingActiveBorderColor: + - '#ed8649' + optionsTextColor: + - '#4695f7' + selectedLineBgColor: + - '#2d5b69' + cherryPickedCommitBgColor: + - '#72898f' + cherryPickedCommitFgColor: + - '#4695f7' + markedBaseCommitFgColor: + - '#4695f7' + unstagedChangesColor: + - '#fa5750' + defaultFgColor: + - '#adbcbc' diff --git a/colors/base16-selenized-light.yml b/colors/base16-selenized-light.yml new file mode 100644 index 0000000..4249936 --- /dev/null +++ b/colors/base16-selenized-light.yml @@ -0,0 +1,35 @@ +# +# +# name: selenized-light +# author: Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali +# slug: selenized-light +# slug-underscored: selenized_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#006dce' + - bold + inactiveBorderColor: + - '#909995' + searchingActiveBorderColor: + - '#bc5819' + optionsTextColor: + - '#006dce' + selectedLineBgColor: + - '#d5cdb6' + cherryPickedCommitBgColor: + - '#909995' + cherryPickedCommitFgColor: + - '#006dce' + markedBaseCommitFgColor: + - '#006dce' + unstagedChangesColor: + - '#cc1729' + defaultFgColor: + - '#53676d' diff --git a/colors/base16-selenized-white.yml b/colors/base16-selenized-white.yml new file mode 100644 index 0000000..cb951c2 --- /dev/null +++ b/colors/base16-selenized-white.yml @@ -0,0 +1,35 @@ +# +# +# name: selenized-white +# author: Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali +# slug: selenized-white +# slug-underscored: selenized_white +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0054cf' + - bold + inactiveBorderColor: + - '#878787' + searchingActiveBorderColor: + - '#ba3700' + optionsTextColor: + - '#0054cf' + selectedLineBgColor: + - '#cdcdcd' + cherryPickedCommitBgColor: + - '#878787' + cherryPickedCommitFgColor: + - '#0054cf' + markedBaseCommitFgColor: + - '#0054cf' + unstagedChangesColor: + - '#bf0000' + defaultFgColor: + - '#474747' diff --git a/colors/base16-seti.yml b/colors/base16-seti.yml new file mode 100644 index 0000000..33301cb --- /dev/null +++ b/colors/base16-seti.yml @@ -0,0 +1,35 @@ +# +# +# name: Seti UI +# author: +# slug: seti +# slug-underscored: seti +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#55b5db' + - bold + inactiveBorderColor: + - '#41535B' + searchingActiveBorderColor: + - '#db7b55' + optionsTextColor: + - '#55b5db' + selectedLineBgColor: + - '#3B758C' + cherryPickedCommitBgColor: + - '#41535B' + cherryPickedCommitFgColor: + - '#55b5db' + markedBaseCommitFgColor: + - '#55b5db' + unstagedChangesColor: + - '#Cd3f45' + defaultFgColor: + - '#d6d6d6' diff --git a/colors/base16-shades-of-purple.yml b/colors/base16-shades-of-purple.yml new file mode 100644 index 0000000..6957b19 --- /dev/null +++ b/colors/base16-shades-of-purple.yml @@ -0,0 +1,35 @@ +# +# +# name: Shades of Purple +# author: Iolar Demartini Junior (http://github.com/demartini), based on Shades of Purple Theme (https://github.com/ahmadawais/shades-of-purple-vscode) +# slug: shades-of-purple +# slug-underscored: shades_of_purple +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6943ff' + - bold + inactiveBorderColor: + - '#808080' + searchingActiveBorderColor: + - '#f92a1c' + optionsTextColor: + - '#6943ff' + selectedLineBgColor: + - '#f1d000' + cherryPickedCommitBgColor: + - '#808080' + cherryPickedCommitFgColor: + - '#6943ff' + markedBaseCommitFgColor: + - '#6943ff' + unstagedChangesColor: + - '#d90429' + defaultFgColor: + - '#c7c7c7' diff --git a/colors/base16-shadesmear-dark.yml b/colors/base16-shadesmear-dark.yml new file mode 100644 index 0000000..3d8ad4b --- /dev/null +++ b/colors/base16-shadesmear-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: ShadeSmear Dark +# author: Kyle Giammarco (http://kyle.giammar.co) +# slug: shadesmear-dark +# slug-underscored: shadesmear_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#376388' + - bold + inactiveBorderColor: + - '#C0C0C0' + searchingActiveBorderColor: + - '#A64270' + optionsTextColor: + - '#376388' + selectedLineBgColor: + - '#4E4E4E' + cherryPickedCommitBgColor: + - '#C0C0C0' + cherryPickedCommitFgColor: + - '#376388' + markedBaseCommitFgColor: + - '#376388' + unstagedChangesColor: + - '#CC5450' + defaultFgColor: + - '#DBDBDB' diff --git a/colors/base16-shadesmear-light.yml b/colors/base16-shadesmear-light.yml new file mode 100644 index 0000000..2d455ed --- /dev/null +++ b/colors/base16-shadesmear-light.yml @@ -0,0 +1,35 @@ +# +# +# name: ShadeSmear Light +# author: Kyle Giammarco (http://kyle.giammar.co) +# slug: shadesmear-light +# slug-underscored: shadesmear_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#376388' + - bold + inactiveBorderColor: + - '#4E4E4E' + searchingActiveBorderColor: + - '#A64270' + optionsTextColor: + - '#376388' + selectedLineBgColor: + - '#C0C0C0' + cherryPickedCommitBgColor: + - '#4E4E4E' + cherryPickedCommitFgColor: + - '#376388' + markedBaseCommitFgColor: + - '#376388' + unstagedChangesColor: + - '#CC5450' + defaultFgColor: + - '#232323' diff --git a/colors/base16-shapeshifter.yml b/colors/base16-shapeshifter.yml new file mode 100644 index 0000000..71dc389 --- /dev/null +++ b/colors/base16-shapeshifter.yml @@ -0,0 +1,35 @@ +# +# +# name: Shapeshifter +# author: Tyler Benziger (http://tybenz.com) +# slug: shapeshifter +# slug-underscored: shapeshifter +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3b48e3' + - bold + inactiveBorderColor: + - '#555555' + searchingActiveBorderColor: + - '#e09448' + optionsTextColor: + - '#3b48e3' + selectedLineBgColor: + - '#ababab' + cherryPickedCommitBgColor: + - '#555555' + cherryPickedCommitFgColor: + - '#3b48e3' + markedBaseCommitFgColor: + - '#3b48e3' + unstagedChangesColor: + - '#e92f2f' + defaultFgColor: + - '#102015' diff --git a/colors/base16-silk-dark.yml b/colors/base16-silk-dark.yml new file mode 100644 index 0000000..23673c1 --- /dev/null +++ b/colors/base16-silk-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Silk Dark +# author: Gabriel Fontes (https://github.com/Misterio77) +# slug: silk-dark +# slug-underscored: silk_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#46bddd' + - bold + inactiveBorderColor: + - '#587073' + searchingActiveBorderColor: + - '#fcab74' + optionsTextColor: + - '#46bddd' + selectedLineBgColor: + - '#2A5054' + cherryPickedCommitBgColor: + - '#587073' + cherryPickedCommitFgColor: + - '#46bddd' + markedBaseCommitFgColor: + - '#46bddd' + unstagedChangesColor: + - '#fb6953' + defaultFgColor: + - '#C7DBDD' diff --git a/colors/base16-silk-light.yml b/colors/base16-silk-light.yml new file mode 100644 index 0000000..4f3d156 --- /dev/null +++ b/colors/base16-silk-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Silk Light +# author: Gabriel Fontes (https://github.com/Misterio77) +# slug: silk-light +# slug-underscored: silk_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#39AAC9' + - bold + inactiveBorderColor: + - '#5C787B' + searchingActiveBorderColor: + - '#D27F46' + optionsTextColor: + - '#39AAC9' + selectedLineBgColor: + - '#90B7B6' + cherryPickedCommitBgColor: + - '#5C787B' + cherryPickedCommitFgColor: + - '#39AAC9' + markedBaseCommitFgColor: + - '#39AAC9' + unstagedChangesColor: + - '#CF432E' + defaultFgColor: + - '#385156' diff --git a/colors/base16-snazzy.yml b/colors/base16-snazzy.yml new file mode 100644 index 0000000..a51ad9d --- /dev/null +++ b/colors/base16-snazzy.yml @@ -0,0 +1,35 @@ +# +# +# name: Snazzy +# author: Chawye Hsu (https://github.com/chawyehsu), based on Hyper Snazzy Theme (https://github.com/sindresorhus/hyper-snazzy) +# slug: snazzy +# slug-underscored: snazzy +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#57c7ff' + - bold + inactiveBorderColor: + - '#78787e' + searchingActiveBorderColor: + - '#ff9f43' + optionsTextColor: + - '#57c7ff' + selectedLineBgColor: + - '#43454f' + cherryPickedCommitBgColor: + - '#78787e' + cherryPickedCommitFgColor: + - '#57c7ff' + markedBaseCommitFgColor: + - '#57c7ff' + unstagedChangesColor: + - '#ff5c57' + defaultFgColor: + - '#e2e4e5' diff --git a/colors/base16-solarflare-light.yml b/colors/base16-solarflare-light.yml new file mode 100644 index 0000000..c704ead --- /dev/null +++ b/colors/base16-solarflare-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Solar Flare Light +# author: Chuck Harmston (https://chuck.harmston.ch) +# slug: solarflare-light +# slug-underscored: solarflare_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#33B5E1' + - bold + inactiveBorderColor: + - '#85939E' + searchingActiveBorderColor: + - '#E66B2B' + optionsTextColor: + - '#33B5E1' + selectedLineBgColor: + - '#A6AFB8' + cherryPickedCommitBgColor: + - '#85939E' + cherryPickedCommitFgColor: + - '#33B5E1' + markedBaseCommitFgColor: + - '#33B5E1' + unstagedChangesColor: + - '#EF5253' + defaultFgColor: + - '#586875' diff --git a/colors/base16-solarflare.yml b/colors/base16-solarflare.yml new file mode 100644 index 0000000..7121b8f --- /dev/null +++ b/colors/base16-solarflare.yml @@ -0,0 +1,35 @@ +# +# +# name: Solar Flare +# author: Chuck Harmston (https://chuck.harmston.ch) +# slug: solarflare +# slug-underscored: solarflare +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#33B5E1' + - bold + inactiveBorderColor: + - '#667581' + searchingActiveBorderColor: + - '#E66B2B' + optionsTextColor: + - '#33B5E1' + selectedLineBgColor: + - '#586875' + cherryPickedCommitBgColor: + - '#667581' + cherryPickedCommitFgColor: + - '#33B5E1' + markedBaseCommitFgColor: + - '#33B5E1' + unstagedChangesColor: + - '#EF5253' + defaultFgColor: + - '#A6AFB8' diff --git a/colors/base16-solarized-dark.yml b/colors/base16-solarized-dark.yml new file mode 100644 index 0000000..f16b3ae --- /dev/null +++ b/colors/base16-solarized-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Solarized Dark +# author: Ethan Schoonover (modified by aramisgithub) +# slug: solarized-dark +# slug-underscored: solarized_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#268bd2' + - bold + inactiveBorderColor: + - '#657b83' + searchingActiveBorderColor: + - '#cb4b16' + optionsTextColor: + - '#268bd2' + selectedLineBgColor: + - '#586e75' + cherryPickedCommitBgColor: + - '#657b83' + cherryPickedCommitFgColor: + - '#268bd2' + markedBaseCommitFgColor: + - '#268bd2' + unstagedChangesColor: + - '#dc322f' + defaultFgColor: + - '#93a1a1' diff --git a/colors/base16-solarized-light.yml b/colors/base16-solarized-light.yml new file mode 100644 index 0000000..fa003de --- /dev/null +++ b/colors/base16-solarized-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Solarized Light +# author: Ethan Schoonover (modified by aramisgithub) +# slug: solarized-light +# slug-underscored: solarized_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#268bd2' + - bold + inactiveBorderColor: + - '#839496' + searchingActiveBorderColor: + - '#cb4b16' + optionsTextColor: + - '#268bd2' + selectedLineBgColor: + - '#93a1a1' + cherryPickedCommitBgColor: + - '#839496' + cherryPickedCommitFgColor: + - '#268bd2' + markedBaseCommitFgColor: + - '#268bd2' + unstagedChangesColor: + - '#dc322f' + defaultFgColor: + - '#586e75' diff --git a/colors/base16-spaceduck.yml b/colors/base16-spaceduck.yml new file mode 100644 index 0000000..87e200b --- /dev/null +++ b/colors/base16-spaceduck.yml @@ -0,0 +1,35 @@ +# +# +# name: Spaceduck +# author: Guillermo Rodriguez (https://github.com/pineapplegiant), packaged by Gabriel Fontes (https://github.com/Misterio77) +# slug: spaceduck +# slug-underscored: spaceduck +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7a5ccc' + - bold + inactiveBorderColor: + - '#686f9a' + searchingActiveBorderColor: + - '#e39400' + optionsTextColor: + - '#7a5ccc' + selectedLineBgColor: + - '#30365F' + cherryPickedCommitBgColor: + - '#686f9a' + cherryPickedCommitFgColor: + - '#7a5ccc' + markedBaseCommitFgColor: + - '#7a5ccc' + unstagedChangesColor: + - '#e33400' + defaultFgColor: + - '#ecf0c1' diff --git a/colors/base16-spacemacs.yml b/colors/base16-spacemacs.yml new file mode 100644 index 0000000..325cef9 --- /dev/null +++ b/colors/base16-spacemacs.yml @@ -0,0 +1,35 @@ +# +# +# name: Spacemacs +# author: Nasser Alshammari (https://github.com/nashamri/spacemacs-theme) +# slug: spacemacs +# slug-underscored: spacemacs +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#4f97d7' + - bold + inactiveBorderColor: + - '#585858' + searchingActiveBorderColor: + - '#ffa500' + optionsTextColor: + - '#4f97d7' + selectedLineBgColor: + - '#444155' + cherryPickedCommitBgColor: + - '#585858' + cherryPickedCommitFgColor: + - '#4f97d7' + markedBaseCommitFgColor: + - '#4f97d7' + unstagedChangesColor: + - '#f2241f' + defaultFgColor: + - '#a3a3a3' diff --git a/colors/base16-sparky.yml b/colors/base16-sparky.yml new file mode 100644 index 0000000..761909d --- /dev/null +++ b/colors/base16-sparky.yml @@ -0,0 +1,35 @@ +# +# +# name: Sparky +# author: Leila Sother (https://github.com/mixcoac) +# slug: sparky +# slug-underscored: sparky +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#4698CB' + - bold + inactiveBorderColor: + - '#003B49' + searchingActiveBorderColor: + - '#FF8F1C' + optionsTextColor: + - '#4698CB' + selectedLineBgColor: + - '#003C46' + cherryPickedCommitBgColor: + - '#003B49' + cherryPickedCommitFgColor: + - '#4698CB' + markedBaseCommitFgColor: + - '#4698CB' + unstagedChangesColor: + - '#FF585D' + defaultFgColor: + - '#F4F5F0' diff --git a/colors/base16-standardized-dark.yml b/colors/base16-standardized-dark.yml new file mode 100644 index 0000000..f85b8bb --- /dev/null +++ b/colors/base16-standardized-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: standardized-dark +# author: ali (https://github.com/ali-githb/base16-standardized-scheme) +# slug: standardized-dark +# slug-underscored: standardized_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#00a3f2' + - bold + inactiveBorderColor: + - '#898989' + searchingActiveBorderColor: + - '#fc804e' + optionsTextColor: + - '#00a3f2' + selectedLineBgColor: + - '#555555' + cherryPickedCommitBgColor: + - '#898989' + cherryPickedCommitFgColor: + - '#00a3f2' + markedBaseCommitFgColor: + - '#00a3f2' + unstagedChangesColor: + - '#e15d67' + defaultFgColor: + - '#c0c0c0' diff --git a/colors/base16-standardized-light.yml b/colors/base16-standardized-light.yml new file mode 100644 index 0000000..f0de444 --- /dev/null +++ b/colors/base16-standardized-light.yml @@ -0,0 +1,35 @@ +# +# +# name: standardized-light +# author: ali (https://github.com/ali-githb/base16-standardized-scheme) +# slug: standardized-light +# slug-underscored: standardized_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3173c5' + - bold + inactiveBorderColor: + - '#767676' + searchingActiveBorderColor: + - '#d7691d' + optionsTextColor: + - '#3173c5' + selectedLineBgColor: + - '#cccccc' + cherryPickedCommitBgColor: + - '#767676' + cherryPickedCommitFgColor: + - '#3173c5' + markedBaseCommitFgColor: + - '#3173c5' + unstagedChangesColor: + - '#d03e3e' + defaultFgColor: + - '#444444' diff --git a/colors/base16-stella.yml b/colors/base16-stella.yml new file mode 100644 index 0000000..720730f --- /dev/null +++ b/colors/base16-stella.yml @@ -0,0 +1,35 @@ +# +# +# name: Stella +# author: Shrimpram +# slug: stella +# slug-underscored: stella +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#A5AAD4' + - bold + inactiveBorderColor: + - '#655978' + searchingActiveBorderColor: + - '#8865C6' + optionsTextColor: + - '#A5AAD4' + selectedLineBgColor: + - '#4D4160' + cherryPickedCommitBgColor: + - '#655978' + cherryPickedCommitFgColor: + - '#A5AAD4' + markedBaseCommitFgColor: + - '#A5AAD4' + unstagedChangesColor: + - '#C79987' + defaultFgColor: + - '#998BAD' diff --git a/colors/base16-still-alive.yml b/colors/base16-still-alive.yml new file mode 100644 index 0000000..b9f6fa7 --- /dev/null +++ b/colors/base16-still-alive.yml @@ -0,0 +1,35 @@ +# +# +# name: Still Alive +# author: Derrick McKee (derrick.mckee@gmail.com) +# slug: still-alive +# slug-underscored: still_alive +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#001878' + - bold + inactiveBorderColor: + - '#F01818' + searchingActiveBorderColor: + - '#183048' + optionsTextColor: + - '#001878' + selectedLineBgColor: + - '#FFF018' + cherryPickedCommitBgColor: + - '#F01818' + cherryPickedCommitFgColor: + - '#001878' + markedBaseCommitFgColor: + - '#001878' + unstagedChangesColor: + - '#487830' + defaultFgColor: + - '#D80000' diff --git a/colors/base16-summercamp.yml b/colors/base16-summercamp.yml new file mode 100644 index 0000000..4c850d6 --- /dev/null +++ b/colors/base16-summercamp.yml @@ -0,0 +1,35 @@ +# +# +# name: summercamp +# author: zoe firi (zoefiri.github.io) +# slug: summercamp +# slug-underscored: summercamp +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#489bf0' + - bold + inactiveBorderColor: + - '#504b38' + searchingActiveBorderColor: + - '#fba11b' + optionsTextColor: + - '#489bf0' + selectedLineBgColor: + - '#3a3527' + cherryPickedCommitBgColor: + - '#504b38' + cherryPickedCommitFgColor: + - '#489bf0' + markedBaseCommitFgColor: + - '#489bf0' + unstagedChangesColor: + - '#e35142' + defaultFgColor: + - '#736e55' diff --git a/colors/base16-summerfruit-dark.yml b/colors/base16-summerfruit-dark.yml new file mode 100644 index 0000000..433fac8 --- /dev/null +++ b/colors/base16-summerfruit-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Summerfruit Dark +# author: Christopher Corley (http://christop.club/) +# slug: summerfruit-dark +# slug-underscored: summerfruit_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3777E6' + - bold + inactiveBorderColor: + - '#505050' + searchingActiveBorderColor: + - '#FD8900' + optionsTextColor: + - '#3777E6' + selectedLineBgColor: + - '#303030' + cherryPickedCommitBgColor: + - '#505050' + cherryPickedCommitFgColor: + - '#3777E6' + markedBaseCommitFgColor: + - '#3777E6' + unstagedChangesColor: + - '#FF0086' + defaultFgColor: + - '#D0D0D0' diff --git a/colors/base16-summerfruit-light.yml b/colors/base16-summerfruit-light.yml new file mode 100644 index 0000000..d91e90e --- /dev/null +++ b/colors/base16-summerfruit-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Summerfruit Light +# author: Christopher Corley (http://christop.club/) +# slug: summerfruit-light +# slug-underscored: summerfruit_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3777E6' + - bold + inactiveBorderColor: + - '#B0B0B0' + searchingActiveBorderColor: + - '#FD8900' + optionsTextColor: + - '#3777E6' + selectedLineBgColor: + - '#D0D0D0' + cherryPickedCommitBgColor: + - '#B0B0B0' + cherryPickedCommitFgColor: + - '#3777E6' + markedBaseCommitFgColor: + - '#3777E6' + unstagedChangesColor: + - '#FF0086' + defaultFgColor: + - '#101010' diff --git a/colors/base16-synth-midnight-dark.yml b/colors/base16-synth-midnight-dark.yml new file mode 100644 index 0000000..2af58e2 --- /dev/null +++ b/colors/base16-synth-midnight-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Synth Midnight Terminal Dark +# author: Michaël Ball (http://github.com/michael-ball/) +# slug: synth-midnight-dark +# slug-underscored: synth_midnight_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#03aeff' + - bold + inactiveBorderColor: + - '#474849' + searchingActiveBorderColor: + - '#ea770d' + optionsTextColor: + - '#03aeff' + selectedLineBgColor: + - '#28292a' + cherryPickedCommitBgColor: + - '#474849' + cherryPickedCommitFgColor: + - '#03aeff' + markedBaseCommitFgColor: + - '#03aeff' + unstagedChangesColor: + - '#b53b50' + defaultFgColor: + - '#c1c3c4' diff --git a/colors/base16-synth-midnight-light.yml b/colors/base16-synth-midnight-light.yml new file mode 100644 index 0000000..18d323e --- /dev/null +++ b/colors/base16-synth-midnight-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Synth Midnight Terminal Light +# author: Michaël Ball (http://github.com/michael-ball/) +# slug: synth-midnight-light +# slug-underscored: synth_midnight_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#03aeff' + - bold + inactiveBorderColor: + - '#a3a5a6' + searchingActiveBorderColor: + - '#ea770d' + optionsTextColor: + - '#03aeff' + selectedLineBgColor: + - '#c1c3c4' + cherryPickedCommitBgColor: + - '#a3a5a6' + cherryPickedCommitFgColor: + - '#03aeff' + markedBaseCommitFgColor: + - '#03aeff' + unstagedChangesColor: + - '#b53b50' + defaultFgColor: + - '#28292a' diff --git a/colors/base16-tango.yml b/colors/base16-tango.yml new file mode 100644 index 0000000..8c2da34 --- /dev/null +++ b/colors/base16-tango.yml @@ -0,0 +1,35 @@ +# +# +# name: Tango +# author: @Schnouki, based on the Tango Desktop Project +# slug: tango +# slug-underscored: tango +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3465a4' + - bold + inactiveBorderColor: + - '#555753' + searchingActiveBorderColor: + - '#ef2929' + optionsTextColor: + - '#3465a4' + selectedLineBgColor: + - '#fce94f' + cherryPickedCommitBgColor: + - '#555753' + cherryPickedCommitFgColor: + - '#3465a4' + markedBaseCommitFgColor: + - '#3465a4' + unstagedChangesColor: + - '#cc0000' + defaultFgColor: + - '#d3d7cf' diff --git a/colors/base16-tarot.yml b/colors/base16-tarot.yml new file mode 100644 index 0000000..7841cdf --- /dev/null +++ b/colors/base16-tarot.yml @@ -0,0 +1,35 @@ +# +# +# name: tarot +# author: ed (https://codeberg.org/ed) +# slug: tarot +# slug-underscored: tarot +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6e6080' + - bold + inactiveBorderColor: + - '#74316b' + searchingActiveBorderColor: + - '#ea4d60' + optionsTextColor: + - '#6e6080' + selectedLineBgColor: + - '#4b2054' + cherryPickedCommitBgColor: + - '#74316b' + cherryPickedCommitFgColor: + - '#6e6080' + markedBaseCommitFgColor: + - '#6e6080' + unstagedChangesColor: + - '#c53253' + defaultFgColor: + - '#aa556f' diff --git a/colors/base16-tender.yml b/colors/base16-tender.yml new file mode 100644 index 0000000..c1505bd --- /dev/null +++ b/colors/base16-tender.yml @@ -0,0 +1,35 @@ +# +# +# name: tender +# author: Jacobo Tabernero (https://github/com/jacoborus/tender.vim) +# slug: tender +# slug-underscored: tender +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#b3deef' + - bold + inactiveBorderColor: + - '#4c4c4c' + searchingActiveBorderColor: + - '#dc9656' + optionsTextColor: + - '#b3deef' + selectedLineBgColor: + - '#484848' + cherryPickedCommitBgColor: + - '#4c4c4c' + cherryPickedCommitFgColor: + - '#b3deef' + markedBaseCommitFgColor: + - '#b3deef' + unstagedChangesColor: + - '#f43753' + defaultFgColor: + - '#eeeeee' diff --git a/colors/base16-terracotta-dark.yml b/colors/base16-terracotta-dark.yml new file mode 100644 index 0000000..9b835e1 --- /dev/null +++ b/colors/base16-terracotta-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Terracotta Dark +# author: Alexander Rossell Hayes (https://github.com/rossellhayes) +# slug: terracotta-dark +# slug-underscored: terracotta_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#b0a4c3' + - bold + inactiveBorderColor: + - '#594740' + searchingActiveBorderColor: + - '#ffa888' + optionsTextColor: + - '#b0a4c3' + selectedLineBgColor: + - '#473933' + cherryPickedCommitBgColor: + - '#594740' + cherryPickedCommitFgColor: + - '#b0a4c3' + markedBaseCommitFgColor: + - '#b0a4c3' + unstagedChangesColor: + - '#f6998f' + defaultFgColor: + - '#b8a59d' diff --git a/colors/base16-terracotta.yml b/colors/base16-terracotta.yml new file mode 100644 index 0000000..0656446 --- /dev/null +++ b/colors/base16-terracotta.yml @@ -0,0 +1,35 @@ +# +# +# name: Terracotta +# author: Alexander Rossell Hayes (https://github.com/rossellhayes) +# slug: terracotta +# slug-underscored: terracotta +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#625574' + - bold + inactiveBorderColor: + - '#c0aca4' + searchingActiveBorderColor: + - '#bd6942' + optionsTextColor: + - '#625574' + selectedLineBgColor: + - '#d0c1bb' + cherryPickedCommitBgColor: + - '#c0aca4' + cherryPickedCommitFgColor: + - '#625574' + markedBaseCommitFgColor: + - '#625574' + unstagedChangesColor: + - '#a75045' + defaultFgColor: + - '#473731' diff --git a/colors/base16-tokyo-city-dark.yml b/colors/base16-tokyo-city-dark.yml new file mode 100644 index 0000000..7355f7c --- /dev/null +++ b/colors/base16-tokyo-city-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Tokyo City Dark +# author: Michaël Ball +# slug: tokyo-city-dark +# slug-underscored: tokyo_city_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7AA2F7' + - bold + inactiveBorderColor: + - '#526270' + searchingActiveBorderColor: + - '#FF9E64' + optionsTextColor: + - '#7AA2F7' + selectedLineBgColor: + - '#28323A' + cherryPickedCommitBgColor: + - '#526270' + cherryPickedCommitFgColor: + - '#7AA2F7' + markedBaseCommitFgColor: + - '#7AA2F7' + unstagedChangesColor: + - '#F7768E' + defaultFgColor: + - '#D8E2EC' diff --git a/colors/base16-tokyo-city-light.yml b/colors/base16-tokyo-city-light.yml new file mode 100644 index 0000000..9707439 --- /dev/null +++ b/colors/base16-tokyo-city-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Tokyo City Light +# author: Michaël Ball +# slug: tokyo-city-light +# slug-underscored: tokyo_city_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#34548a' + - bold + inactiveBorderColor: + - '#9699A3' + searchingActiveBorderColor: + - '#965027' + optionsTextColor: + - '#34548a' + selectedLineBgColor: + - '#EDEFF6' + cherryPickedCommitBgColor: + - '#9699A3' + cherryPickedCommitFgColor: + - '#34548a' + markedBaseCommitFgColor: + - '#34548a' + unstagedChangesColor: + - '#8C4351' + defaultFgColor: + - '#343B59' diff --git a/colors/base16-tokyo-city-terminal-dark.yml b/colors/base16-tokyo-city-terminal-dark.yml new file mode 100644 index 0000000..61ad249 --- /dev/null +++ b/colors/base16-tokyo-city-terminal-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Tokyo City Terminal Dark +# author: Michaël Ball +# slug: tokyo-city-terminal-dark +# slug-underscored: tokyo_city_terminal_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#539AFC' + - bold + inactiveBorderColor: + - '#526270' + searchingActiveBorderColor: + - '#FF9E64' + optionsTextColor: + - '#539AFC' + selectedLineBgColor: + - '#28323A' + cherryPickedCommitBgColor: + - '#526270' + cherryPickedCommitFgColor: + - '#539AFC' + markedBaseCommitFgColor: + - '#539AFC' + unstagedChangesColor: + - '#D95468' + defaultFgColor: + - '#D8E2EC' diff --git a/colors/base16-tokyo-city-terminal-light.yml b/colors/base16-tokyo-city-terminal-light.yml new file mode 100644 index 0000000..7e2f27d --- /dev/null +++ b/colors/base16-tokyo-city-terminal-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Tokyo City Terminal Light +# author: Michaël Ball +# slug: tokyo-city-terminal-light +# slug-underscored: tokyo_city_terminal_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#34548A' + - bold + inactiveBorderColor: + - '#B7C5D3' + searchingActiveBorderColor: + - '#965027' + optionsTextColor: + - '#34548A' + selectedLineBgColor: + - '#D8E2EC' + cherryPickedCommitBgColor: + - '#B7C5D3' + cherryPickedCommitFgColor: + - '#34548A' + markedBaseCommitFgColor: + - '#34548A' + unstagedChangesColor: + - '#8C4351' + defaultFgColor: + - '#28323A' diff --git a/colors/base16-tokyo-night-dark.yml b/colors/base16-tokyo-night-dark.yml new file mode 100644 index 0000000..07be054 --- /dev/null +++ b/colors/base16-tokyo-night-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Tokyo Night Dark +# author: Michaël Ball +# slug: tokyo-night-dark +# slug-underscored: tokyo_night_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#2AC3DE' + - bold + inactiveBorderColor: + - '#444B6A' + searchingActiveBorderColor: + - '#A9B1D6' + optionsTextColor: + - '#2AC3DE' + selectedLineBgColor: + - '#2F3549' + cherryPickedCommitBgColor: + - '#444B6A' + cherryPickedCommitFgColor: + - '#2AC3DE' + markedBaseCommitFgColor: + - '#2AC3DE' + unstagedChangesColor: + - '#C0CAF5' + defaultFgColor: + - '#A9B1D6' diff --git a/colors/base16-tokyo-night-light.yml b/colors/base16-tokyo-night-light.yml new file mode 100644 index 0000000..14fda9e --- /dev/null +++ b/colors/base16-tokyo-night-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Tokyo Night Light +# author: Michaël Ball +# slug: tokyo-night-light +# slug-underscored: tokyo_night_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#34548A' + - bold + inactiveBorderColor: + - '#9699A3' + searchingActiveBorderColor: + - '#965027' + optionsTextColor: + - '#34548A' + selectedLineBgColor: + - '#DFE0E5' + cherryPickedCommitBgColor: + - '#9699A3' + cherryPickedCommitFgColor: + - '#34548A' + markedBaseCommitFgColor: + - '#34548A' + unstagedChangesColor: + - '#343B58' + defaultFgColor: + - '#343B59' diff --git a/colors/base16-tokyo-night-moon.yml b/colors/base16-tokyo-night-moon.yml new file mode 100644 index 0000000..f68a509 --- /dev/null +++ b/colors/base16-tokyo-night-moon.yml @@ -0,0 +1,35 @@ +# +# +# name: Tokyo Night Moon +# author: Ólafur Bjarki Bogason +# slug: tokyo-night-moon +# slug-underscored: tokyo_night_moon +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#82aaff' + - bold + inactiveBorderColor: + - '#636da6' + searchingActiveBorderColor: + - '#ffc777' + optionsTextColor: + - '#82aaff' + selectedLineBgColor: + - '#2d3f76' + cherryPickedCommitBgColor: + - '#636da6' + cherryPickedCommitFgColor: + - '#82aaff' + markedBaseCommitFgColor: + - '#82aaff' + unstagedChangesColor: + - '#ff757f' + defaultFgColor: + - '#3b4261' diff --git a/colors/base16-tokyo-night-storm.yml b/colors/base16-tokyo-night-storm.yml new file mode 100644 index 0000000..b4d7737 --- /dev/null +++ b/colors/base16-tokyo-night-storm.yml @@ -0,0 +1,35 @@ +# +# +# name: Tokyo Night Storm +# author: Michaël Ball +# slug: tokyo-night-storm +# slug-underscored: tokyo_night_storm +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#2AC3DE' + - bold + inactiveBorderColor: + - '#444B6A' + searchingActiveBorderColor: + - '#A9B1D6' + optionsTextColor: + - '#2AC3DE' + selectedLineBgColor: + - '#343A52' + cherryPickedCommitBgColor: + - '#444B6A' + cherryPickedCommitFgColor: + - '#2AC3DE' + markedBaseCommitFgColor: + - '#2AC3DE' + unstagedChangesColor: + - '#C0CAF5' + defaultFgColor: + - '#A9B1D6' diff --git a/colors/base16-tokyo-night-terminal-dark.yml b/colors/base16-tokyo-night-terminal-dark.yml new file mode 100644 index 0000000..6789bfa --- /dev/null +++ b/colors/base16-tokyo-night-terminal-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Tokyo Night Terminal Dark +# author: Michaël Ball +# slug: tokyo-night-terminal-dark +# slug-underscored: tokyo_night_terminal_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7AA2F7' + - bold + inactiveBorderColor: + - '#444B6A' + searchingActiveBorderColor: + - '#FF9E64' + optionsTextColor: + - '#7AA2F7' + selectedLineBgColor: + - '#2F3549' + cherryPickedCommitBgColor: + - '#444B6A' + cherryPickedCommitFgColor: + - '#7AA2F7' + markedBaseCommitFgColor: + - '#7AA2F7' + unstagedChangesColor: + - '#F7768E' + defaultFgColor: + - '#787C99' diff --git a/colors/base16-tokyo-night-terminal-light.yml b/colors/base16-tokyo-night-terminal-light.yml new file mode 100644 index 0000000..7f2cc0e --- /dev/null +++ b/colors/base16-tokyo-night-terminal-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Tokyo Night Terminal Light +# author: Michaël Ball +# slug: tokyo-night-terminal-light +# slug-underscored: tokyo_night_terminal_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#34548A' + - bold + inactiveBorderColor: + - '#9699A3' + searchingActiveBorderColor: + - '#965027' + optionsTextColor: + - '#34548A' + selectedLineBgColor: + - '#DFE0E5' + cherryPickedCommitBgColor: + - '#9699A3' + cherryPickedCommitFgColor: + - '#34548A' + markedBaseCommitFgColor: + - '#34548A' + unstagedChangesColor: + - '#8C4351' + defaultFgColor: + - '#4C505E' diff --git a/colors/base16-tokyo-night-terminal-storm.yml b/colors/base16-tokyo-night-terminal-storm.yml new file mode 100644 index 0000000..07b5c2b --- /dev/null +++ b/colors/base16-tokyo-night-terminal-storm.yml @@ -0,0 +1,35 @@ +# +# +# name: Tokyo Night Terminal Storm +# author: Michaël Ball +# slug: tokyo-night-terminal-storm +# slug-underscored: tokyo_night_terminal_storm +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7AA2F7' + - bold + inactiveBorderColor: + - '#444B6A' + searchingActiveBorderColor: + - '#FF9E64' + optionsTextColor: + - '#7AA2F7' + selectedLineBgColor: + - '#343A52' + cherryPickedCommitBgColor: + - '#444B6A' + cherryPickedCommitFgColor: + - '#7AA2F7' + markedBaseCommitFgColor: + - '#7AA2F7' + unstagedChangesColor: + - '#F7768E' + defaultFgColor: + - '#787C99' diff --git a/colors/base16-tokyodark-terminal.yml b/colors/base16-tokyodark-terminal.yml new file mode 100644 index 0000000..38167d9 --- /dev/null +++ b/colors/base16-tokyodark-terminal.yml @@ -0,0 +1,35 @@ +# +# +# name: Tokyodark Terminal +# author: Tiagovla (https://github.com/tiagovla/) +# slug: tokyodark-terminal +# slug-underscored: tokyodark_terminal +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7199ee' + - bold + inactiveBorderColor: + - '#282c34' + searchingActiveBorderColor: + - '#f6955b' + optionsTextColor: + - '#7199ee' + selectedLineBgColor: + - '#212234' + cherryPickedCommitBgColor: + - '#282c34' + cherryPickedCommitFgColor: + - '#7199ee' + markedBaseCommitFgColor: + - '#7199ee' + unstagedChangesColor: + - '#ee6d85' + defaultFgColor: + - '#a0a8cd' diff --git a/colors/base16-tokyodark.yml b/colors/base16-tokyodark.yml new file mode 100644 index 0000000..604abd3 --- /dev/null +++ b/colors/base16-tokyodark.yml @@ -0,0 +1,35 @@ +# +# +# name: Tokyodark +# author: Jamy Golden (https://github.com/JamyGolden), Based on Tokyodark.nvim (https://github.com/tiagovla/tokyodark.nvim) +# slug: tokyodark +# slug-underscored: tokyodark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7199ee' + - bold + inactiveBorderColor: + - '#353945' + searchingActiveBorderColor: + - '#f6955b' + optionsTextColor: + - '#7199ee' + selectedLineBgColor: + - '#212234' + cherryPickedCommitBgColor: + - '#353945' + cherryPickedCommitFgColor: + - '#7199ee' + markedBaseCommitFgColor: + - '#7199ee' + unstagedChangesColor: + - '#ee6d85' + defaultFgColor: + - '#a0a8cd' diff --git a/colors/base16-tomorrow-night-eighties.yml b/colors/base16-tomorrow-night-eighties.yml new file mode 100644 index 0000000..6b3a6b8 --- /dev/null +++ b/colors/base16-tomorrow-night-eighties.yml @@ -0,0 +1,35 @@ +# +# +# name: Tomorrow Night Eighties +# author: Chris Kempson (http://chriskempson.com) +# slug: tomorrow-night-eighties +# slug-underscored: tomorrow_night_eighties +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6699cc' + - bold + inactiveBorderColor: + - '#999999' + searchingActiveBorderColor: + - '#f99157' + optionsTextColor: + - '#6699cc' + selectedLineBgColor: + - '#515151' + cherryPickedCommitBgColor: + - '#999999' + cherryPickedCommitFgColor: + - '#6699cc' + markedBaseCommitFgColor: + - '#6699cc' + unstagedChangesColor: + - '#f2777a' + defaultFgColor: + - '#cccccc' diff --git a/colors/base16-tomorrow-night.yml b/colors/base16-tomorrow-night.yml new file mode 100644 index 0000000..fd53a5f --- /dev/null +++ b/colors/base16-tomorrow-night.yml @@ -0,0 +1,35 @@ +# +# +# name: Tomorrow Night +# author: Chris Kempson (http://chriskempson.com) +# slug: tomorrow-night +# slug-underscored: tomorrow_night +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#81a2be' + - bold + inactiveBorderColor: + - '#969896' + searchingActiveBorderColor: + - '#de935f' + optionsTextColor: + - '#81a2be' + selectedLineBgColor: + - '#373b41' + cherryPickedCommitBgColor: + - '#969896' + cherryPickedCommitFgColor: + - '#81a2be' + markedBaseCommitFgColor: + - '#81a2be' + unstagedChangesColor: + - '#cc6666' + defaultFgColor: + - '#c5c8c6' diff --git a/colors/base16-tomorrow.yml b/colors/base16-tomorrow.yml new file mode 100644 index 0000000..48ba0c9 --- /dev/null +++ b/colors/base16-tomorrow.yml @@ -0,0 +1,35 @@ +# +# +# name: Tomorrow +# author: Chris Kempson (http://chriskempson.com) +# slug: tomorrow +# slug-underscored: tomorrow +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#4271ae' + - bold + inactiveBorderColor: + - '#8e908c' + searchingActiveBorderColor: + - '#f5871f' + optionsTextColor: + - '#4271ae' + selectedLineBgColor: + - '#d6d6d6' + cherryPickedCommitBgColor: + - '#8e908c' + cherryPickedCommitFgColor: + - '#4271ae' + markedBaseCommitFgColor: + - '#4271ae' + unstagedChangesColor: + - '#c82829' + defaultFgColor: + - '#4d4d4c' diff --git a/colors/base16-tube.yml b/colors/base16-tube.yml new file mode 100644 index 0000000..500bfd1 --- /dev/null +++ b/colors/base16-tube.yml @@ -0,0 +1,35 @@ +# +# +# name: London Tube +# author: Jan T. Sott +# slug: tube +# slug-underscored: tube +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#009ddc' + - bold + inactiveBorderColor: + - '#737171' + searchingActiveBorderColor: + - '#f386a1' + optionsTextColor: + - '#009ddc' + selectedLineBgColor: + - '#5a5758' + cherryPickedCommitBgColor: + - '#737171' + cherryPickedCommitFgColor: + - '#009ddc' + markedBaseCommitFgColor: + - '#009ddc' + unstagedChangesColor: + - '#ee2e24' + defaultFgColor: + - '#d9d8d8' diff --git a/colors/base16-twilight.yml b/colors/base16-twilight.yml new file mode 100644 index 0000000..bd8fc05 --- /dev/null +++ b/colors/base16-twilight.yml @@ -0,0 +1,35 @@ +# +# +# name: Twilight +# author: David Hart (https://github.com/hartbit) +# slug: twilight +# slug-underscored: twilight +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7587a6' + - bold + inactiveBorderColor: + - '#5f5a60' + searchingActiveBorderColor: + - '#cda869' + optionsTextColor: + - '#7587a6' + selectedLineBgColor: + - '#464b50' + cherryPickedCommitBgColor: + - '#5f5a60' + cherryPickedCommitFgColor: + - '#7587a6' + markedBaseCommitFgColor: + - '#7587a6' + unstagedChangesColor: + - '#cf6a4c' + defaultFgColor: + - '#a7a7a7' diff --git a/colors/base16-unikitty-dark.yml b/colors/base16-unikitty-dark.yml new file mode 100644 index 0000000..d20648a --- /dev/null +++ b/colors/base16-unikitty-dark.yml @@ -0,0 +1,35 @@ +# +# +# name: Unikitty Dark +# author: Josh W Lewis (@joshwlewis) +# slug: unikitty-dark +# slug-underscored: unikitty_dark +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#796af5' + - bold + inactiveBorderColor: + - '#838085' + searchingActiveBorderColor: + - '#d65407' + optionsTextColor: + - '#796af5' + selectedLineBgColor: + - '#666369' + cherryPickedCommitBgColor: + - '#838085' + cherryPickedCommitFgColor: + - '#796af5' + markedBaseCommitFgColor: + - '#796af5' + unstagedChangesColor: + - '#d8137f' + defaultFgColor: + - '#bcbabe' diff --git a/colors/base16-unikitty-light.yml b/colors/base16-unikitty-light.yml new file mode 100644 index 0000000..0f4cc21 --- /dev/null +++ b/colors/base16-unikitty-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Unikitty Light +# author: Josh W Lewis (@joshwlewis) +# slug: unikitty-light +# slug-underscored: unikitty_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#775dff' + - bold + inactiveBorderColor: + - '#a7a5a8' + searchingActiveBorderColor: + - '#d65407' + optionsTextColor: + - '#775dff' + selectedLineBgColor: + - '#c4c3c5' + cherryPickedCommitBgColor: + - '#a7a5a8' + cherryPickedCommitFgColor: + - '#775dff' + markedBaseCommitFgColor: + - '#775dff' + unstagedChangesColor: + - '#d8137f' + defaultFgColor: + - '#6c696e' diff --git a/colors/base16-unikitty-reversible.yml b/colors/base16-unikitty-reversible.yml new file mode 100644 index 0000000..9a1172b --- /dev/null +++ b/colors/base16-unikitty-reversible.yml @@ -0,0 +1,35 @@ +# +# +# name: Unikitty Reversible +# author: Josh W Lewis (@joshwlewis) +# slug: unikitty-reversible +# slug-underscored: unikitty_reversible +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7864fa' + - bold + inactiveBorderColor: + - '#878589' + searchingActiveBorderColor: + - '#d65407' + optionsTextColor: + - '#7864fa' + selectedLineBgColor: + - '#69666b' + cherryPickedCommitBgColor: + - '#878589' + cherryPickedCommitFgColor: + - '#7864fa' + markedBaseCommitFgColor: + - '#7864fa' + unstagedChangesColor: + - '#d8137f' + defaultFgColor: + - '#c3c2c4' diff --git a/colors/base16-uwunicorn.yml b/colors/base16-uwunicorn.yml new file mode 100644 index 0000000..5bc9a96 --- /dev/null +++ b/colors/base16-uwunicorn.yml @@ -0,0 +1,35 @@ +# +# +# name: UwUnicorn +# author: Fernando Marques (https://github.com/RakkiUwU) and Gabriel Fontes (https://github.com/Misterio77) +# slug: uwunicorn +# slug-underscored: uwunicorn +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#6a9eb5' + - bold + inactiveBorderColor: + - '#6c3cb2' + searchingActiveBorderColor: + - '#de5b44' + optionsTextColor: + - '#6a9eb5' + selectedLineBgColor: + - '#46354a' + cherryPickedCommitBgColor: + - '#6c3cb2' + cherryPickedCommitFgColor: + - '#6a9eb5' + markedBaseCommitFgColor: + - '#6a9eb5' + unstagedChangesColor: + - '#877bb6' + defaultFgColor: + - '#eed5d9' diff --git a/colors/base16-vesper.yml b/colors/base16-vesper.yml new file mode 100644 index 0000000..44ae59d --- /dev/null +++ b/colors/base16-vesper.yml @@ -0,0 +1,35 @@ +# +# +# name: Vesper +# author: FormalSnake (https://github.com/formalsnake) +# slug: vesper +# slug-underscored: vesper +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#8eaaaa' + - bold + inactiveBorderColor: + - '#333333' + searchingActiveBorderColor: + - '#dab083' + optionsTextColor: + - '#8eaaaa' + selectedLineBgColor: + - '#222222' + cherryPickedCommitBgColor: + - '#333333' + cherryPickedCommitFgColor: + - '#8eaaaa' + markedBaseCommitFgColor: + - '#8eaaaa' + unstagedChangesColor: + - '#de6e6e' + defaultFgColor: + - '#b7b7b7' diff --git a/colors/base16-vice.yml b/colors/base16-vice.yml new file mode 100644 index 0000000..9463c50 --- /dev/null +++ b/colors/base16-vice.yml @@ -0,0 +1,35 @@ +# +# +# name: vice +# author: Thomas Leon Highbaugh thighbaugh@zoho.com +# slug: vice +# slug-underscored: vice +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#00eaff' + - bold + inactiveBorderColor: + - '#383a47' + searchingActiveBorderColor: + - '#85ffe0' + optionsTextColor: + - '#00eaff' + selectedLineBgColor: + - '#3c3f4c' + cherryPickedCommitBgColor: + - '#383a47' + cherryPickedCommitFgColor: + - '#00eaff' + markedBaseCommitFgColor: + - '#00eaff' + unstagedChangesColor: + - '#ff29a8' + defaultFgColor: + - '#8b9cbe' diff --git a/colors/base16-vulcan.yml b/colors/base16-vulcan.yml new file mode 100644 index 0000000..da207cf --- /dev/null +++ b/colors/base16-vulcan.yml @@ -0,0 +1,35 @@ +# +# +# name: vulcan +# author: Andrey Varfolomeev +# slug: vulcan +# slug-underscored: vulcan +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#977d7c' + - bold + inactiveBorderColor: + - '#7a5759' + searchingActiveBorderColor: + - '#9198a3' + optionsTextColor: + - '#977d7c' + selectedLineBgColor: + - '#003552' + cherryPickedCommitBgColor: + - '#7a5759' + cherryPickedCommitFgColor: + - '#977d7c' + markedBaseCommitFgColor: + - '#977d7c' + unstagedChangesColor: + - '#818591' + defaultFgColor: + - '#5b778c' diff --git a/colors/base16-windows-10-light.yml b/colors/base16-windows-10-light.yml new file mode 100644 index 0000000..ab7095e --- /dev/null +++ b/colors/base16-windows-10-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Windows 10 Light +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-10-light +# slug-underscored: windows_10_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0037da' + - bold + inactiveBorderColor: + - '#cccccc' + searchingActiveBorderColor: + - '#f9f1a5' + optionsTextColor: + - '#0037da' + selectedLineBgColor: + - '#d9d9d9' + cherryPickedCommitBgColor: + - '#cccccc' + cherryPickedCommitFgColor: + - '#0037da' + markedBaseCommitFgColor: + - '#0037da' + unstagedChangesColor: + - '#c50f1f' + defaultFgColor: + - '#767676' diff --git a/colors/base16-windows-10.yml b/colors/base16-windows-10.yml new file mode 100644 index 0000000..38b4d9c --- /dev/null +++ b/colors/base16-windows-10.yml @@ -0,0 +1,35 @@ +# +# +# name: Windows 10 +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-10 +# slug-underscored: windows_10 +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3b78ff' + - bold + inactiveBorderColor: + - '#767676' + searchingActiveBorderColor: + - '#c19c00' + optionsTextColor: + - '#3b78ff' + selectedLineBgColor: + - '#535353' + cherryPickedCommitBgColor: + - '#767676' + cherryPickedCommitFgColor: + - '#3b78ff' + markedBaseCommitFgColor: + - '#3b78ff' + unstagedChangesColor: + - '#e74856' + defaultFgColor: + - '#cccccc' diff --git a/colors/base16-windows-95-light.yml b/colors/base16-windows-95-light.yml new file mode 100644 index 0000000..ce15e9a --- /dev/null +++ b/colors/base16-windows-95-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Windows 95 Light +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-95-light +# slug-underscored: windows_95_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0000a8' + - bold + inactiveBorderColor: + - '#a8a8a8' + searchingActiveBorderColor: + - '#fcfc54' + optionsTextColor: + - '#0000a8' + selectedLineBgColor: + - '#c4c4c4' + cherryPickedCommitBgColor: + - '#a8a8a8' + cherryPickedCommitFgColor: + - '#0000a8' + markedBaseCommitFgColor: + - '#0000a8' + unstagedChangesColor: + - '#a80000' + defaultFgColor: + - '#545454' diff --git a/colors/base16-windows-95.yml b/colors/base16-windows-95.yml new file mode 100644 index 0000000..00d47e7 --- /dev/null +++ b/colors/base16-windows-95.yml @@ -0,0 +1,35 @@ +# +# +# name: Windows 95 +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-95 +# slug-underscored: windows_95 +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#5454fc' + - bold + inactiveBorderColor: + - '#545454' + searchingActiveBorderColor: + - '#a85400' + optionsTextColor: + - '#5454fc' + selectedLineBgColor: + - '#383838' + cherryPickedCommitBgColor: + - '#545454' + cherryPickedCommitFgColor: + - '#5454fc' + markedBaseCommitFgColor: + - '#5454fc' + unstagedChangesColor: + - '#fc5454' + defaultFgColor: + - '#a8a8a8' diff --git a/colors/base16-windows-highcontrast-light.yml b/colors/base16-windows-highcontrast-light.yml new file mode 100644 index 0000000..8603ac3 --- /dev/null +++ b/colors/base16-windows-highcontrast-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Windows High Contrast Light +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-highcontrast-light +# slug-underscored: windows_highcontrast_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#000080' + - bold + inactiveBorderColor: + - '#c0c0c0' + searchingActiveBorderColor: + - '#fcfc54' + optionsTextColor: + - '#000080' + selectedLineBgColor: + - '#d4d4d4' + cherryPickedCommitBgColor: + - '#c0c0c0' + cherryPickedCommitFgColor: + - '#000080' + markedBaseCommitFgColor: + - '#000080' + unstagedChangesColor: + - '#800000' + defaultFgColor: + - '#545454' diff --git a/colors/base16-windows-highcontrast.yml b/colors/base16-windows-highcontrast.yml new file mode 100644 index 0000000..fcb5f56 --- /dev/null +++ b/colors/base16-windows-highcontrast.yml @@ -0,0 +1,35 @@ +# +# +# name: Windows High Contrast +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-highcontrast +# slug-underscored: windows_highcontrast +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#5454fc' + - bold + inactiveBorderColor: + - '#545454' + searchingActiveBorderColor: + - '#808000' + optionsTextColor: + - '#5454fc' + selectedLineBgColor: + - '#383838' + cherryPickedCommitBgColor: + - '#545454' + cherryPickedCommitFgColor: + - '#5454fc' + markedBaseCommitFgColor: + - '#5454fc' + unstagedChangesColor: + - '#fc5454' + defaultFgColor: + - '#c0c0c0' diff --git a/colors/base16-windows-nt-light.yml b/colors/base16-windows-nt-light.yml new file mode 100644 index 0000000..cc55656 --- /dev/null +++ b/colors/base16-windows-nt-light.yml @@ -0,0 +1,35 @@ +# +# +# name: Windows NT Light +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-nt-light +# slug-underscored: windows_nt_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#000080' + - bold + inactiveBorderColor: + - '#c0c0c0' + searchingActiveBorderColor: + - '#ffff00' + optionsTextColor: + - '#000080' + selectedLineBgColor: + - '#d5d5d5' + cherryPickedCommitBgColor: + - '#c0c0c0' + cherryPickedCommitFgColor: + - '#000080' + markedBaseCommitFgColor: + - '#000080' + unstagedChangesColor: + - '#800000' + defaultFgColor: + - '#808080' diff --git a/colors/base16-windows-nt.yml b/colors/base16-windows-nt.yml new file mode 100644 index 0000000..269ff35 --- /dev/null +++ b/colors/base16-windows-nt.yml @@ -0,0 +1,35 @@ +# +# +# name: Windows NT +# author: Fergus Collins (https://github.com/C-Fergus) +# slug: windows-nt +# slug-underscored: windows_nt +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#0000ff' + - bold + inactiveBorderColor: + - '#808080' + searchingActiveBorderColor: + - '#808000' + optionsTextColor: + - '#0000ff' + selectedLineBgColor: + - '#555555' + cherryPickedCommitBgColor: + - '#808080' + cherryPickedCommitFgColor: + - '#0000ff' + markedBaseCommitFgColor: + - '#0000ff' + unstagedChangesColor: + - '#ff0000' + defaultFgColor: + - '#c0c0c0' diff --git a/colors/base16-woodland.yml b/colors/base16-woodland.yml new file mode 100644 index 0000000..9ea22da --- /dev/null +++ b/colors/base16-woodland.yml @@ -0,0 +1,35 @@ +# +# +# name: Woodland +# author: Jay Cornwall (https://jcornwall.com) +# slug: woodland +# slug-underscored: woodland +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#88a4d3' + - bold + inactiveBorderColor: + - '#9d8b70' + searchingActiveBorderColor: + - '#ca7f32' + optionsTextColor: + - '#88a4d3' + selectedLineBgColor: + - '#48413a' + cherryPickedCommitBgColor: + - '#9d8b70' + cherryPickedCommitFgColor: + - '#88a4d3' + markedBaseCommitFgColor: + - '#88a4d3' + unstagedChangesColor: + - '#d35c5c' + defaultFgColor: + - '#cabcb1' diff --git a/colors/base16-xcode-dusk.yml b/colors/base16-xcode-dusk.yml new file mode 100644 index 0000000..1a02b37 --- /dev/null +++ b/colors/base16-xcode-dusk.yml @@ -0,0 +1,35 @@ +# +# +# name: XCode Dusk +# author: Elsa Gonsiorowski (https://github.com/gonsie) +# slug: xcode-dusk +# slug-underscored: xcode_dusk +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#790EAD' + - bold + inactiveBorderColor: + - '#686A71' + searchingActiveBorderColor: + - '#786DC5' + optionsTextColor: + - '#790EAD' + selectedLineBgColor: + - '#53555D' + cherryPickedCommitBgColor: + - '#686A71' + cherryPickedCommitFgColor: + - '#790EAD' + markedBaseCommitFgColor: + - '#790EAD' + unstagedChangesColor: + - '#B21889' + defaultFgColor: + - '#939599' diff --git a/colors/base16-zenbones.yml b/colors/base16-zenbones.yml new file mode 100644 index 0000000..1406be3 --- /dev/null +++ b/colors/base16-zenbones.yml @@ -0,0 +1,35 @@ +# +# +# name: Zenbones +# author: mcchrish +# slug: zenbones +# slug-underscored: zenbones +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#CF86C1' + - bold + inactiveBorderColor: + - '#B77E64' + searchingActiveBorderColor: + - '#E8838F' + optionsTextColor: + - '#CF86C1' + selectedLineBgColor: + - '#819B69' + cherryPickedCommitBgColor: + - '#B77E64' + cherryPickedCommitFgColor: + - '#CF86C1' + markedBaseCommitFgColor: + - '#CF86C1' + unstagedChangesColor: + - '#3D3839' + defaultFgColor: + - '#B279A7' diff --git a/colors/base16-zenburn.yml b/colors/base16-zenburn.yml new file mode 100644 index 0000000..bb26d42 --- /dev/null +++ b/colors/base16-zenburn.yml @@ -0,0 +1,35 @@ +# +# +# name: Zenburn +# author: elnawe +# slug: zenburn +# slug-underscored: zenburn +# system: base16 +# variant: dark +# is-dark-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#7cb8bb' + - bold + inactiveBorderColor: + - '#6f6f6f' + searchingActiveBorderColor: + - '#dfaf8f' + optionsTextColor: + - '#7cb8bb' + selectedLineBgColor: + - '#606060' + cherryPickedCommitBgColor: + - '#6f6f6f' + cherryPickedCommitFgColor: + - '#7cb8bb' + markedBaseCommitFgColor: + - '#7cb8bb' + unstagedChangesColor: + - '#dca3a3' + defaultFgColor: + - '#dcdccc' diff --git a/examples/config.yml b/examples/config.yml new file mode 100644 index 0000000..6bc5d12 --- /dev/null +++ b/examples/config.yml @@ -0,0 +1,37 @@ +# source: https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md + +# +# +# name: Google Light +# author: Seth Wright (http://sethawright.com) +# slug: google-light +# slug-underscored: google_light +# system: base16 +# variant: light +# is-light-variant: true +# +# + +gui: + theme: + activeBorderColor: + - '#3971ED' + - bold + inactiveBorderColor: + - '#b4b7b4' + searchingActiveBorderColor: + - '#F96A38' + optionsTextColor: + - '#3971ED' + selectedLineBgColor: + - '#c5c8c6' + cherryPickedCommitBgColor: + - '#b4b7b4' + cherryPickedCommitFgColor: + - '#3971ED' + markedBaseCommitFgColor: + - '#3971ED' + unstagedChangesColor: + - '#CC342B' + defaultFgColor: + - '#373b41' diff --git a/examples/img/google-light.png b/examples/img/google-light.png Binary files differnew file mode 100644 index 0000000..413a5fb --- /dev/null +++ b/examples/img/google-light.png diff --git a/examples/img/onedark.png b/examples/img/onedark.png Binary files differnew file mode 100644 index 0000000..202b906 --- /dev/null +++ b/examples/img/onedark.png diff --git a/templates/body.mustache b/templates/body.mustache new file mode 100644 index 0000000..633f2f2 --- /dev/null +++ b/templates/body.mustache @@ -0,0 +1,23 @@ +gui: + theme: + activeBorderColor: + - '#{{base0D-hex}}' + - bold + inactiveBorderColor: + - '#{{base03-hex}}' + searchingActiveBorderColor: + - '#{{base09-hex}}' + optionsTextColor: + - '#{{base0D-hex}}' + selectedLineBgColor: + - '#{{base02-hex}}' + cherryPickedCommitBgColor: + - '#{{base03-hex}}' + cherryPickedCommitFgColor: + - '#{{base0D-hex}}' + markedBaseCommitFgColor: + - '#{{base0D-hex}}' + unstagedChangesColor: + - '#{{base08-hex}}' + defaultFgColor: + - '#{{base05-hex}}' diff --git a/templates/config.yaml b/templates/config.yaml new file mode 100644 index 0000000..89a87da --- /dev/null +++ b/templates/config.yaml @@ -0,0 +1,3 @@ +default: + supported-systems: [base16] + filename: "colors/{{scheme-system}}-{{scheme-slug}}.yml" diff --git a/templates/head.mustache b/templates/head.mustache new file mode 100644 index 0000000..980d8f5 --- /dev/null +++ b/templates/head.mustache @@ -0,0 +1,11 @@ +# +# +# name: {{scheme-name}} +# author: {{{scheme-author}}} +# slug: {{scheme-slug}} +# slug-underscored: {{scheme-slug-underscored}} +# system: {{scheme-system}} +# variant: {{scheme-variant}} +# is-{{scheme-variant}}-variant: {{hasVariant}} +# +# |
