├── .editorconfig ├── .envrc ├── .github └── workflows │ ├── check.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── frappe.webp ├── latte.webp ├── macchiato.webp ├── mocha.webp └── preview.webp ├── flake.lock ├── flake.nix ├── justfile ├── lazygit.tera ├── renovate.json ├── themes-mergable ├── frappe │ ├── blue.yml │ ├── flamingo.yml │ ├── green.yml │ ├── lavender.yml │ ├── maroon.yml │ ├── mauve.yml │ ├── peach.yml │ ├── pink.yml │ ├── red.yml │ ├── rosewater.yml │ ├── sapphire.yml │ ├── sky.yml │ ├── teal.yml │ └── yellow.yml ├── latte │ ├── blue.yml │ ├── flamingo.yml │ ├── green.yml │ ├── lavender.yml │ ├── maroon.yml │ ├── mauve.yml │ ├── peach.yml │ ├── pink.yml │ ├── red.yml │ ├── rosewater.yml │ ├── sapphire.yml │ ├── sky.yml │ ├── teal.yml │ └── yellow.yml ├── macchiato │ ├── blue.yml │ ├── flamingo.yml │ ├── green.yml │ ├── lavender.yml │ ├── maroon.yml │ ├── mauve.yml │ ├── peach.yml │ ├── pink.yml │ ├── red.yml │ ├── rosewater.yml │ ├── sapphire.yml │ ├── sky.yml │ ├── teal.yml │ └── yellow.yml └── mocha │ ├── blue.yml │ ├── flamingo.yml │ ├── green.yml │ ├── lavender.yml │ ├── maroon.yml │ ├── mauve.yml │ ├── peach.yml │ ├── pink.yml │ ├── red.yml │ ├── rosewater.yml │ ├── sapphire.yml │ ├── sky.yml │ ├── teal.yml │ └── yellow.yml └── themes ├── frappe ├── blue.yml ├── flamingo.yml ├── green.yml ├── lavender.yml ├── maroon.yml ├── mauve.yml ├── peach.yml ├── pink.yml ├── red.yml ├── rosewater.yml ├── sapphire.yml ├── sky.yml ├── teal.yml └── yellow.yml ├── latte ├── blue.yml ├── flamingo.yml ├── green.yml ├── lavender.yml ├── maroon.yml ├── mauve.yml ├── peach.yml ├── pink.yml ├── red.yml ├── rosewater.yml ├── sapphire.yml ├── sky.yml ├── teal.yml └── yellow.yml ├── macchiato ├── blue.yml ├── flamingo.yml ├── green.yml ├── lavender.yml ├── maroon.yml ├── mauve.yml ├── peach.yml ├── pink.yml ├── red.yml ├── rosewater.yml ├── sapphire.yml ├── sky.yml ├── teal.yml └── yellow.yml └── mocha ├── blue.yml ├── flamingo.yml ├── green.yml ├── lavender.yml ├── maroon.yml ├── mauve.yml ├── peach.yml ├── pink.yml ├── red.yml ├── rosewater.yml ├── sapphire.yml ├── sky.yml ├── teal.yml └── yellow.yml /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # EditorConfig is awesome: https://EditorConfig.org 4 | 5 | root = true 6 | 7 | [*] 8 | charset = utf-8 9 | indent_size = 2 10 | indent_style = space 11 | end_of_line = lf 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | 15 | # go 16 | [*.go] 17 | indent_style = tab 18 | indent_size = 4 19 | 20 | # python 21 | [*.{ini,py,py.tpl,rst}] 22 | indent_size = 4 23 | 24 | # rust 25 | [*.rs] 26 | indent_size = 4 27 | 28 | # documentation, utils 29 | [*.{md,mdx,diff}] 30 | trim_trailing_whitespace = false 31 | 32 | # windows shell scripts 33 | [*.{cmd,bat,ps1}] 34 | end_of_line = crlf 35 | -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | layout node -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- 1 | name: whiskers 2 | 3 | on: 4 | workflow_dispatch: 5 | push: 6 | branches: [main] 7 | pull_request: 8 | branches: [main] 9 | 10 | jobs: 11 | run: 12 | uses: catppuccin/actions/.github/workflows/whiskers-check.yml@v1 13 | with: 14 | args: lazygit.tera 15 | secrets: inherit 16 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | on: 2 | workflow_dispatch: 3 | push: 4 | branches: [main] 5 | 6 | name: release-please 7 | 8 | permissions: 9 | contents: write 10 | pull-requests: write 11 | 12 | jobs: 13 | release-please: 14 | runs-on: ubuntu-latest 15 | steps: 16 | - uses: googleapis/release-please-action@v4 17 | id: release 18 | with: 19 | release-type: simple 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .direnv/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## [2.2.0](https://github.com/catppuccin/lazygit/compare/v2.1.0...v2.2.0) (2024-05-19) 4 | 5 | 6 | ### Bug Fixes 7 | 8 | * ci; release for lazygit 0.42.0 ([49916ac](https://github.com/catppuccin/lazygit/commit/49916ac0fc1d74cdd150c38b9db18d1d244bd798)) 9 | 10 | ## [2.1.0](https://github.com/catppuccin/lazygit/compare/v2.0.0...v2.1.0) (2024-03-28) 11 | 12 | 13 | ### Features 14 | 15 | * support lazygit 0.41.0 ([#33](https://github.com/catppuccin/lazygit/issues/33)) ([dd77f4b](https://github.com/catppuccin/lazygit/commit/dd77f4b652a86361120a37fcae5c2aa9dfcd1340)) 16 | 17 | ## [2.0.0](https://github.com/catppuccin/lazygit/compare/v1.1.1...v2.0.0) (2024-02-04) 18 | 19 | 20 | ### ⚠ BREAKING CHANGES 21 | 22 | * remove deprecated selectedRangeBgColor key ([#31](https://github.com/catppuccin/lazygit/issues/31)) 23 | 24 | ### Features 25 | 26 | * remove deprecated selectedRangeBgColor key ([#31](https://github.com/catppuccin/lazygit/issues/31)) ([4e06002](https://github.com/catppuccin/lazygit/commit/4e06002d9d84a470b63226827dd2c3d827499793)) 27 | 28 | ## [1.1.1](https://github.com/catppuccin/lazygit/compare/v1.1.0...v1.1.1) (2024-02-04) 29 | 30 | 31 | ### Bug Fixes 32 | 33 | * update CI tooling ([28baa9a](https://github.com/catppuccin/lazygit/commit/28baa9add76d22701301b96b9559ddc9c81f1014)) 34 | 35 | ## [1.1.0](https://github.com/catppuccin/lazygit/compare/v1.0.3...v1.1.0) (2024-02-04) 36 | 37 | 38 | ### Features 39 | 40 | * fix release tagging ([a71dd12](https://github.com/catppuccin/lazygit/commit/a71dd12fd9eaf27d4c697ab91a9638950d5dda75)) 41 | 42 | ## [1.0.3](https://github.com/catppuccin/lazygit/compare/v1.0.2...v1.0.3) (2024-02-04) 43 | 44 | 45 | ### Miscellaneous Chores 46 | 47 | * release ([37d3909](https://github.com/catppuccin/lazygit/commit/37d39091a88f205f6551ec1c89e7c618ed0ec58a)) 48 | 49 | ## [1.0.2](https://github.com/catppuccin/lazygit/compare/v1.0.1...v1.0.2) (2024-02-04) 50 | 51 | 52 | ### Miscellaneous Chores 53 | 54 | * release ([7b22ae9](https://github.com/catppuccin/lazygit/commit/7b22ae9e107a9cb17e63f155ef4e148a2d83fde7)) 55 | 56 | ## [1.0.1](https://github.com/catppuccin/lazygit/compare/v1.0.0...v1.0.1) (2024-02-04) 57 | 58 | 59 | ### Miscellaneous Chores 60 | 61 | * release ([3452289](https://github.com/catppuccin/lazygit/commit/3452289ae7c2260c67b34962593e5d1c82714017)) 62 | * trigger release ([0f8f0b1](https://github.com/catppuccin/lazygit/commit/0f8f0b1e169b50acf8e0cfcc926248f3be7e753c)) 63 | 64 | ## [1.0.0](https://github.com/catppuccin/lazygit/compare/v1.0.0...v1.0.0) (2024-02-04) 65 | 66 | 67 | ### Miscellaneous Chores 68 | 69 | * trigger release ([0f8f0b1](https://github.com/catppuccin/lazygit/commit/0f8f0b1e169b50acf8e0cfcc926248f3be7e753c)) 70 | 71 | ## 1.0.0 (2024-02-04) 72 | 73 | 74 | ### Features 75 | 76 | * **asset:** macchiato ([bc4c26b](https://github.com/catppuccin/lazygit/commit/bc4c26beefadcfe5d331b950be47420ee379a229)) 77 | * generate configs, fix out of date config options ([#10](https://github.com/catppuccin/lazygit/issues/10)) ([65c3b60](https://github.com/catppuccin/lazygit/commit/65c3b60aafc12b2c88494e012dbb1404086484dd)) 78 | * generate configs, fix out of date config options ([#9](https://github.com/catppuccin/lazygit/issues/9)) ([231e265](https://github.com/catppuccin/lazygit/commit/231e26561842662a33524180d74d28e787592a5f)) 79 | * initial commit ([4247355](https://github.com/catppuccin/lazygit/commit/4247355132f64ba624e0b9119d5f8208e308031c)) 80 | * use release-please, build themes in CI ([#18](https://github.com/catppuccin/lazygit/issues/18)) ([8eca84d](https://github.com/catppuccin/lazygit/commit/8eca84d003ab7a661c1d900ba7d91fcd7bf69f21)) 81 | * use whiskers; make file naming consistent ([#14](https://github.com/catppuccin/lazygit/issues/14)) ([ce45454](https://github.com/catppuccin/lazygit/commit/ce454540e5411287b0f5833e7056bcc835f8c952)) 82 | 83 | 84 | ### Bug Fixes 85 | 86 | * code-block indentation ([#16](https://github.com/catppuccin/lazygit/issues/16)) ([9319e49](https://github.com/catppuccin/lazygit/commit/9319e49f761ddb154c0b5386afd7441170f6dfd3)) 87 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Catppuccin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
15 |
16 |
127 |
128 |
131 | Copyright © 2021-present Catppuccin Org 132 |
133 | 134 | 137 | -------------------------------------------------------------------------------- /assets/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/lazygit/c24895902ec2a3cb62b4557f6ecd8e0afeed95d5/assets/frappe.webp -------------------------------------------------------------------------------- /assets/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/lazygit/c24895902ec2a3cb62b4557f6ecd8e0afeed95d5/assets/latte.webp -------------------------------------------------------------------------------- /assets/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/lazygit/c24895902ec2a3cb62b4557f6ecd8e0afeed95d5/assets/macchiato.webp -------------------------------------------------------------------------------- /assets/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/lazygit/c24895902ec2a3cb62b4557f6ecd8e0afeed95d5/assets/mocha.webp -------------------------------------------------------------------------------- /assets/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/lazygit/c24895902ec2a3cb62b4557f6ecd8e0afeed95d5/assets/preview.webp -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- 1 | { 2 | "nodes": { 3 | "catppuccin-toolbox": { 4 | "inputs": { 5 | "nixpkgs": "nixpkgs" 6 | }, 7 | "locked": { 8 | "lastModified": 1717020047, 9 | "narHash": "sha256-OooNiwvkFRXEk0a5JJQxMUh9g+5CMvvQxplzqqNuyIY=", 10 | "owner": "catppuccin", 11 | "repo": "toolbox", 12 | "rev": "b09341880fb880120132fe8a09aae148c17d26ba", 13 | "type": "github" 14 | }, 15 | "original": { 16 | "owner": "catppuccin", 17 | "repo": "toolbox", 18 | "type": "github" 19 | } 20 | }, 21 | "flake-utils": { 22 | "inputs": { 23 | "systems": "systems" 24 | }, 25 | "locked": { 26 | "lastModified": 1681202837, 27 | "narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=", 28 | "owner": "numtide", 29 | "repo": "flake-utils", 30 | "rev": "cfacdce06f30d2b68473a46042957675eebb3401", 31 | "type": "github" 32 | }, 33 | "original": { 34 | "owner": "numtide", 35 | "repo": "flake-utils", 36 | "type": "github" 37 | } 38 | }, 39 | "nixpkgs": { 40 | "locked": { 41 | "lastModified": 1708118438, 42 | "narHash": "sha256-kk9/0nuVgA220FcqH/D2xaN6uGyHp/zoxPNUmPCMmEE=", 43 | "owner": "NixOS", 44 | "repo": "nixpkgs", 45 | "rev": "5863c27340ba4de8f83e7e3c023b9599c3cb3c80", 46 | "type": "github" 47 | }, 48 | "original": { 49 | "owner": "NixOS", 50 | "ref": "nixos-unstable", 51 | "repo": "nixpkgs", 52 | "type": "github" 53 | } 54 | }, 55 | "nixpkgs_2": { 56 | "locked": { 57 | "lastModified": 1681269223, 58 | "narHash": "sha256-i6OeI2f7qGvmLfD07l1Az5iBL+bFeP0RHixisWtpUGo=", 59 | "owner": "nixos", 60 | "repo": "nixpkgs", 61 | "rev": "87edbd74246ccdfa64503f334ed86fa04010bab9", 62 | "type": "github" 63 | }, 64 | "original": { 65 | "owner": "nixos", 66 | "ref": "nixos-22.11", 67 | "repo": "nixpkgs", 68 | "type": "github" 69 | } 70 | }, 71 | "root": { 72 | "inputs": { 73 | "catppuccin-toolbox": "catppuccin-toolbox", 74 | "flake-utils": "flake-utils", 75 | "nixpkgs": "nixpkgs_2" 76 | } 77 | }, 78 | "systems": { 79 | "locked": { 80 | "lastModified": 1681028828, 81 | "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 82 | "owner": "nix-systems", 83 | "repo": "default", 84 | "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 85 | "type": "github" 86 | }, 87 | "original": { 88 | "owner": "nix-systems", 89 | "repo": "default", 90 | "type": "github" 91 | } 92 | } 93 | }, 94 | "root": "root", 95 | "version": 7 96 | } 97 | -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- 1 | { 2 | inputs = { 3 | nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11"; 4 | flake-utils.url = "github:numtide/flake-utils"; 5 | catppuccin-toolbox.url = "github:catppuccin/toolbox"; 6 | }; 7 | 8 | description = "Development shell flake"; 9 | outputs = { self, nixpkgs, flake-utils, catppuccin-toolbox }: flake-utils.lib.eachDefaultSystem (system: { 10 | devShell = let 11 | pkgs = nixpkgs.legacyPackages.${system}; 12 | in 13 | pkgs.mkShell { 14 | packages = with pkgs; [ 15 | just 16 | catppuccin-toolbox.packages.${system}.whiskers 17 | ]; 18 | }; 19 | }); 20 | } -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- 1 | _default: 2 | @just --list 3 | 4 | build: 5 | whiskers lazygit.tera 6 | -------------------------------------------------------------------------------- /lazygit.tera: -------------------------------------------------------------------------------- 1 | --- 2 | whiskers: 3 | version: 2.5.1 4 | matrix: 5 | - variant: ["themes", "themes-mergable"] 6 | - flavor 7 | - accent 8 | filename: "{{variant}}/{{flavor.identifier}}/{{accent}}.yml" 9 | --- 10 | 11 | {%- macro theme() %} 12 | {%- set palette = flavor.colors -%} 13 | theme: 14 | activeBorderColor: 15 | - '#{{ palette[accent].hex }}' 16 | - bold 17 | inactiveBorderColor: 18 | - '#{{ palette.subtext0.hex }}' 19 | optionsTextColor: 20 | - '#{{ palette.blue.hex }}' 21 | selectedLineBgColor: 22 | - '#{{ palette.surface0.hex }}' 23 | cherryPickedCommitBgColor: 24 | - '#{{ palette.surface1.hex }}' 25 | cherryPickedCommitFgColor: 26 | - '#{{ palette[accent].hex }}' 27 | unstagedChangesColor: 28 | - '#{{ palette.red.hex }}' 29 | defaultFgColor: 30 | - '#{{ palette.text.hex }}' 31 | searchingActiveBorderColor: 32 | - '#{{ palette.yellow.hex }}' 33 | 34 | authorColors: 35 | '*': '#{{ palette.lavender.hex }}' 36 | {%- endmacro %} 37 | 38 | {%- if variant == "themes" -%} 39 | {{ self::theme() }} 40 | {%- else -%} 41 | gui: 42 | {{ self::theme() | indent(prefix=" ") }} 43 | {%- endif %} 44 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "local>catppuccin/renovate-config" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /themes-mergable/frappe/blue.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#8caaee' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#8caaee' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/frappe/flamingo.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#eebebe' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#eebebe' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/frappe/green.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#a6d189' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#a6d189' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/frappe/lavender.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#babbf1' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#babbf1' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/frappe/maroon.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#ea999c' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#ea999c' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/frappe/mauve.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#ca9ee6' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#ca9ee6' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/frappe/peach.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#ef9f76' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#ef9f76' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/frappe/pink.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#f4b8e4' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#f4b8e4' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/frappe/red.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#e78284' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#e78284' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/frappe/rosewater.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#f2d5cf' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#f2d5cf' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/frappe/sapphire.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#85c1dc' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#85c1dc' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/frappe/sky.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#99d1db' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#99d1db' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/frappe/teal.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#81c8be' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#81c8be' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/frappe/yellow.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#e5c890' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adce' 8 | optionsTextColor: 9 | - '#8caaee' 10 | selectedLineBgColor: 11 | - '#414559' 12 | cherryPickedCommitBgColor: 13 | - '#51576d' 14 | cherryPickedCommitFgColor: 15 | - '#e5c890' 16 | unstagedChangesColor: 17 | - '#e78284' 18 | defaultFgColor: 19 | - '#c6d0f5' 20 | searchingActiveBorderColor: 21 | - '#e5c890' 22 | 23 | authorColors: 24 | '*': '#babbf1' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/blue.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#1e66f5' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#1e66f5' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/flamingo.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#dd7878' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#dd7878' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/green.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#40a02b' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#40a02b' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/lavender.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#7287fd' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#7287fd' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/maroon.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#e64553' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#e64553' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/mauve.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#8839ef' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#8839ef' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/peach.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#fe640b' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#fe640b' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/pink.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#ea76cb' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#ea76cb' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/red.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#d20f39' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#d20f39' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/rosewater.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#dc8a78' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#dc8a78' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/sapphire.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#209fb5' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#209fb5' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/sky.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#04a5e5' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#04a5e5' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/teal.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#179299' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#179299' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/latte/yellow.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#df8e1d' 5 | - bold 6 | inactiveBorderColor: 7 | - '#6c6f85' 8 | optionsTextColor: 9 | - '#1e66f5' 10 | selectedLineBgColor: 11 | - '#ccd0da' 12 | cherryPickedCommitBgColor: 13 | - '#bcc0cc' 14 | cherryPickedCommitFgColor: 15 | - '#df8e1d' 16 | unstagedChangesColor: 17 | - '#d20f39' 18 | defaultFgColor: 19 | - '#4c4f69' 20 | searchingActiveBorderColor: 21 | - '#df8e1d' 22 | 23 | authorColors: 24 | '*': '#7287fd' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/blue.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#8aadf4' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#8aadf4' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/flamingo.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#f0c6c6' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#f0c6c6' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/green.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#a6da95' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#a6da95' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/lavender.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#b7bdf8' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#b7bdf8' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/maroon.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#ee99a0' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#ee99a0' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/mauve.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#c6a0f6' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#c6a0f6' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/peach.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#f5a97f' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#f5a97f' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/pink.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#f5bde6' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#f5bde6' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/red.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#ed8796' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#ed8796' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/rosewater.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#f4dbd6' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#f4dbd6' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/sapphire.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#7dc4e4' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#7dc4e4' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/sky.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#91d7e3' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#91d7e3' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/teal.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#8bd5ca' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#8bd5ca' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/macchiato/yellow.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#eed49f' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a5adcb' 8 | optionsTextColor: 9 | - '#8aadf4' 10 | selectedLineBgColor: 11 | - '#363a4f' 12 | cherryPickedCommitBgColor: 13 | - '#494d64' 14 | cherryPickedCommitFgColor: 15 | - '#eed49f' 16 | unstagedChangesColor: 17 | - '#ed8796' 18 | defaultFgColor: 19 | - '#cad3f5' 20 | searchingActiveBorderColor: 21 | - '#eed49f' 22 | 23 | authorColors: 24 | '*': '#b7bdf8' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/blue.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#89b4fa' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#89b4fa' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/flamingo.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#f2cdcd' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#f2cdcd' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/green.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#a6e3a1' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#a6e3a1' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/lavender.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#b4befe' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#b4befe' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/maroon.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#eba0ac' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#eba0ac' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/mauve.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#cba6f7' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#cba6f7' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/peach.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#fab387' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#fab387' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/pink.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#f5c2e7' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#f5c2e7' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/red.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#f38ba8' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#f38ba8' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/rosewater.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#f5e0dc' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#f5e0dc' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/sapphire.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#74c7ec' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#74c7ec' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/sky.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#89dceb' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#89dceb' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/teal.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#94e2d5' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#94e2d5' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes-mergable/mocha/yellow.yml: -------------------------------------------------------------------------------- 1 | gui: 2 | theme: 3 | activeBorderColor: 4 | - '#f9e2af' 5 | - bold 6 | inactiveBorderColor: 7 | - '#a6adc8' 8 | optionsTextColor: 9 | - '#89b4fa' 10 | selectedLineBgColor: 11 | - '#313244' 12 | cherryPickedCommitBgColor: 13 | - '#45475a' 14 | cherryPickedCommitFgColor: 15 | - '#f9e2af' 16 | unstagedChangesColor: 17 | - '#f38ba8' 18 | defaultFgColor: 19 | - '#cdd6f4' 20 | searchingActiveBorderColor: 21 | - '#f9e2af' 22 | 23 | authorColors: 24 | '*': '#b4befe' 25 | -------------------------------------------------------------------------------- /themes/frappe/blue.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#8caaee' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#8caaee' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/frappe/flamingo.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#eebebe' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#eebebe' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/frappe/green.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#a6d189' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#a6d189' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/frappe/lavender.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#babbf1' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#babbf1' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/frappe/maroon.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#ea999c' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#ea999c' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/frappe/mauve.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#ca9ee6' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#ca9ee6' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/frappe/peach.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#ef9f76' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#ef9f76' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/frappe/pink.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#f4b8e4' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#f4b8e4' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/frappe/red.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#e78284' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#e78284' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/frappe/rosewater.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#f2d5cf' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#f2d5cf' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/frappe/sapphire.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#85c1dc' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#85c1dc' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/frappe/sky.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#99d1db' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#99d1db' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/frappe/teal.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#81c8be' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#81c8be' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/frappe/yellow.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#e5c890' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adce' 7 | optionsTextColor: 8 | - '#8caaee' 9 | selectedLineBgColor: 10 | - '#414559' 11 | cherryPickedCommitBgColor: 12 | - '#51576d' 13 | cherryPickedCommitFgColor: 14 | - '#e5c890' 15 | unstagedChangesColor: 16 | - '#e78284' 17 | defaultFgColor: 18 | - '#c6d0f5' 19 | searchingActiveBorderColor: 20 | - '#e5c890' 21 | 22 | authorColors: 23 | '*': '#babbf1' 24 | -------------------------------------------------------------------------------- /themes/latte/blue.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#1e66f5' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#1e66f5' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/latte/flamingo.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#dd7878' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#dd7878' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/latte/green.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#40a02b' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#40a02b' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/latte/lavender.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#7287fd' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#7287fd' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/latte/maroon.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#e64553' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#e64553' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/latte/mauve.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#8839ef' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#8839ef' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/latte/peach.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#fe640b' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#fe640b' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/latte/pink.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#ea76cb' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#ea76cb' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/latte/red.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#d20f39' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#d20f39' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/latte/rosewater.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#dc8a78' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#dc8a78' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/latte/sapphire.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#209fb5' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#209fb5' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/latte/sky.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#04a5e5' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#04a5e5' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/latte/teal.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#179299' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#179299' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/latte/yellow.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#df8e1d' 4 | - bold 5 | inactiveBorderColor: 6 | - '#6c6f85' 7 | optionsTextColor: 8 | - '#1e66f5' 9 | selectedLineBgColor: 10 | - '#ccd0da' 11 | cherryPickedCommitBgColor: 12 | - '#bcc0cc' 13 | cherryPickedCommitFgColor: 14 | - '#df8e1d' 15 | unstagedChangesColor: 16 | - '#d20f39' 17 | defaultFgColor: 18 | - '#4c4f69' 19 | searchingActiveBorderColor: 20 | - '#df8e1d' 21 | 22 | authorColors: 23 | '*': '#7287fd' 24 | -------------------------------------------------------------------------------- /themes/macchiato/blue.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#8aadf4' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#8aadf4' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/macchiato/flamingo.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#f0c6c6' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#f0c6c6' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/macchiato/green.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#a6da95' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#a6da95' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/macchiato/lavender.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#b7bdf8' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#b7bdf8' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/macchiato/maroon.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#ee99a0' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#ee99a0' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/macchiato/mauve.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#c6a0f6' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#c6a0f6' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/macchiato/peach.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#f5a97f' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#f5a97f' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/macchiato/pink.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#f5bde6' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#f5bde6' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/macchiato/red.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#ed8796' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#ed8796' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/macchiato/rosewater.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#f4dbd6' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#f4dbd6' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/macchiato/sapphire.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#7dc4e4' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#7dc4e4' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/macchiato/sky.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#91d7e3' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#91d7e3' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/macchiato/teal.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#8bd5ca' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#8bd5ca' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/macchiato/yellow.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#eed49f' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a5adcb' 7 | optionsTextColor: 8 | - '#8aadf4' 9 | selectedLineBgColor: 10 | - '#363a4f' 11 | cherryPickedCommitBgColor: 12 | - '#494d64' 13 | cherryPickedCommitFgColor: 14 | - '#eed49f' 15 | unstagedChangesColor: 16 | - '#ed8796' 17 | defaultFgColor: 18 | - '#cad3f5' 19 | searchingActiveBorderColor: 20 | - '#eed49f' 21 | 22 | authorColors: 23 | '*': '#b7bdf8' 24 | -------------------------------------------------------------------------------- /themes/mocha/blue.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#89b4fa' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#89b4fa' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | -------------------------------------------------------------------------------- /themes/mocha/flamingo.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#f2cdcd' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#f2cdcd' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | -------------------------------------------------------------------------------- /themes/mocha/green.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#a6e3a1' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#a6e3a1' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | -------------------------------------------------------------------------------- /themes/mocha/lavender.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#b4befe' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#b4befe' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | -------------------------------------------------------------------------------- /themes/mocha/maroon.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#eba0ac' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#eba0ac' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | -------------------------------------------------------------------------------- /themes/mocha/mauve.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#cba6f7' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#cba6f7' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | -------------------------------------------------------------------------------- /themes/mocha/peach.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#fab387' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#fab387' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | -------------------------------------------------------------------------------- /themes/mocha/pink.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#f5c2e7' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#f5c2e7' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | -------------------------------------------------------------------------------- /themes/mocha/red.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#f38ba8' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#f38ba8' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | -------------------------------------------------------------------------------- /themes/mocha/rosewater.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#f5e0dc' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#f5e0dc' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | -------------------------------------------------------------------------------- /themes/mocha/sapphire.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#74c7ec' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#74c7ec' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | -------------------------------------------------------------------------------- /themes/mocha/sky.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#89dceb' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#89dceb' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | -------------------------------------------------------------------------------- /themes/mocha/teal.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#94e2d5' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#94e2d5' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | -------------------------------------------------------------------------------- /themes/mocha/yellow.yml: -------------------------------------------------------------------------------- 1 | theme: 2 | activeBorderColor: 3 | - '#f9e2af' 4 | - bold 5 | inactiveBorderColor: 6 | - '#a6adc8' 7 | optionsTextColor: 8 | - '#89b4fa' 9 | selectedLineBgColor: 10 | - '#313244' 11 | cherryPickedCommitBgColor: 12 | - '#45475a' 13 | cherryPickedCommitFgColor: 14 | - '#f9e2af' 15 | unstagedChangesColor: 16 | - '#f38ba8' 17 | defaultFgColor: 18 | - '#cdd6f4' 19 | searchingActiveBorderColor: 20 | - '#f9e2af' 21 | 22 | authorColors: 23 | '*': '#b4befe' 24 | --------------------------------------------------------------------------------