Repository: catppuccin/lazygit Branch: main Commit: 798ad2e75a11 Files: 124 Total size: 76.2 KB Directory structure: gitextract_i823o6ib/ ├── .editorconfig ├── .envrc ├── .github/ │ └── workflows/ │ ├── check.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── flake.nix ├── justfile ├── lazygit.tera ├── renovate.json ├── 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 └── 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 ================================================ FILE CONTENTS ================================================ ================================================ FILE: .editorconfig ================================================ # EditorConfig helps developers define and maintain consistent # coding styles between different editors and IDEs # EditorConfig is awesome: https://EditorConfig.org root = true [*] charset = utf-8 indent_size = 2 indent_style = space end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true # go [*.go] indent_style = tab indent_size = 4 # python [*.{ini,py,py.tpl,rst}] indent_size = 4 # rust [*.rs] indent_size = 4 # documentation, utils [*.{md,mdx,diff}] trim_trailing_whitespace = false # windows shell scripts [*.{cmd,bat,ps1}] end_of_line = crlf ================================================ FILE: .envrc ================================================ use flake layout node ================================================ FILE: .github/workflows/check.yml ================================================ name: whiskers on: workflow_dispatch: push: branches: [main] pull_request: branches: [main] jobs: run: uses: catppuccin/actions/.github/workflows/whiskers-check.yml@v1 with: args: lazygit.tera secrets: inherit ================================================ FILE: .github/workflows/release.yml ================================================ on: workflow_dispatch: push: branches: [main] name: release-please permissions: contents: write pull-requests: write jobs: release-please: runs-on: ubuntu-latest steps: - uses: googleapis/release-please-action@v4 id: release with: release-type: simple ================================================ FILE: .gitignore ================================================ .direnv/ ================================================ FILE: CHANGELOG.md ================================================ # Changelog ## [2.3.0](https://github.com/catppuccin/lazygit/compare/v2.2.0...v2.3.0) (2026-04-01) ### Features * support new config colors ([#62](https://github.com/catppuccin/lazygit/issues/62)) ([9e36639](https://github.com/catppuccin/lazygit/commit/9e36639c9a5f241ec05c70ecfcf87032be45ea3f)) ## [2.2.0](https://github.com/catppuccin/lazygit/compare/v2.1.0...v2.2.0) (2024-05-19) ### Bug Fixes * ci; release for lazygit 0.42.0 ([49916ac](https://github.com/catppuccin/lazygit/commit/49916ac0fc1d74cdd150c38b9db18d1d244bd798)) ## [2.1.0](https://github.com/catppuccin/lazygit/compare/v2.0.0...v2.1.0) (2024-03-28) ### Features * support lazygit 0.41.0 ([#33](https://github.com/catppuccin/lazygit/issues/33)) ([dd77f4b](https://github.com/catppuccin/lazygit/commit/dd77f4b652a86361120a37fcae5c2aa9dfcd1340)) ## [2.0.0](https://github.com/catppuccin/lazygit/compare/v1.1.1...v2.0.0) (2024-02-04) ### ⚠ BREAKING CHANGES * remove deprecated selectedRangeBgColor key ([#31](https://github.com/catppuccin/lazygit/issues/31)) ### Features * remove deprecated selectedRangeBgColor key ([#31](https://github.com/catppuccin/lazygit/issues/31)) ([4e06002](https://github.com/catppuccin/lazygit/commit/4e06002d9d84a470b63226827dd2c3d827499793)) ## [1.1.1](https://github.com/catppuccin/lazygit/compare/v1.1.0...v1.1.1) (2024-02-04) ### Bug Fixes * update CI tooling ([28baa9a](https://github.com/catppuccin/lazygit/commit/28baa9add76d22701301b96b9559ddc9c81f1014)) ## [1.1.0](https://github.com/catppuccin/lazygit/compare/v1.0.3...v1.1.0) (2024-02-04) ### Features * fix release tagging ([a71dd12](https://github.com/catppuccin/lazygit/commit/a71dd12fd9eaf27d4c697ab91a9638950d5dda75)) ## [1.0.3](https://github.com/catppuccin/lazygit/compare/v1.0.2...v1.0.3) (2024-02-04) ### Miscellaneous Chores * release ([37d3909](https://github.com/catppuccin/lazygit/commit/37d39091a88f205f6551ec1c89e7c618ed0ec58a)) ## [1.0.2](https://github.com/catppuccin/lazygit/compare/v1.0.1...v1.0.2) (2024-02-04) ### Miscellaneous Chores * release ([7b22ae9](https://github.com/catppuccin/lazygit/commit/7b22ae9e107a9cb17e63f155ef4e148a2d83fde7)) ## [1.0.1](https://github.com/catppuccin/lazygit/compare/v1.0.0...v1.0.1) (2024-02-04) ### Miscellaneous Chores * release ([3452289](https://github.com/catppuccin/lazygit/commit/3452289ae7c2260c67b34962593e5d1c82714017)) * trigger release ([0f8f0b1](https://github.com/catppuccin/lazygit/commit/0f8f0b1e169b50acf8e0cfcc926248f3be7e753c)) ## [1.0.0](https://github.com/catppuccin/lazygit/compare/v1.0.0...v1.0.0) (2024-02-04) ### Miscellaneous Chores * trigger release ([0f8f0b1](https://github.com/catppuccin/lazygit/commit/0f8f0b1e169b50acf8e0cfcc926248f3be7e753c)) ## 1.0.0 (2024-02-04) ### Features * **asset:** macchiato ([bc4c26b](https://github.com/catppuccin/lazygit/commit/bc4c26beefadcfe5d331b950be47420ee379a229)) * generate configs, fix out of date config options ([#10](https://github.com/catppuccin/lazygit/issues/10)) ([65c3b60](https://github.com/catppuccin/lazygit/commit/65c3b60aafc12b2c88494e012dbb1404086484dd)) * generate configs, fix out of date config options ([#9](https://github.com/catppuccin/lazygit/issues/9)) ([231e265](https://github.com/catppuccin/lazygit/commit/231e26561842662a33524180d74d28e787592a5f)) * initial commit ([4247355](https://github.com/catppuccin/lazygit/commit/4247355132f64ba624e0b9119d5f8208e308031c)) * use release-please, build themes in CI ([#18](https://github.com/catppuccin/lazygit/issues/18)) ([8eca84d](https://github.com/catppuccin/lazygit/commit/8eca84d003ab7a661c1d900ba7d91fcd7bf69f21)) * use whiskers; make file naming consistent ([#14](https://github.com/catppuccin/lazygit/issues/14)) ([ce45454](https://github.com/catppuccin/lazygit/commit/ce454540e5411287b0f5833e7056bcc835f8c952)) ### Bug Fixes * code-block indentation ([#16](https://github.com/catppuccin/lazygit/issues/16)) ([9319e49](https://github.com/catppuccin/lazygit/commit/9319e49f761ddb154c0b5386afd7441170f6dfd3)) ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2021 Catppuccin 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. ================================================ FILE: README.md ================================================

Logo
Catppuccin for Lazygit

## Previews
🌻 Latte
🪴 Frappé
🌺 Macchiato
🌿 Mocha
## Installation ### Finding your config directory Lazygit respects XDG (for macOS and Linux), and uses AppData on Windows. So, below are the default config directories: - Linux: `~/.config/lazygit/config.yml` - MacOS: `~/Library/Application Support/lazygit/config.yml` - Windows: `%APPDATA%\lazygit\config.yml` If you cannot find the config files there, or your changes are not taking effect, you can ask lazygit itself for the config directory: ```sh lazygit --print-config-dir ``` Keep this directory in mind for all future steps, replacing `` when relevant. ### Apply the theme 1. Clone this repository locally 2. Ensure the config directory exists. If it doesn't, you can run `lazygit` to launch and setup the directory. At this point, you will have to decide how you want to load the theme. You can either copy it straight into your `config.yml` file, or add flags to lazygit which will merge it from our presets. #### If you want to merge with your own config: 1. Choose the flavor you want (from `./themes`) 2. Choose the accent you want from within the flavor directory. 3. Replace the `theme` section of `/config.yml` with the theme you want to use (from `themes`). For example, if you want to use the catppuccin **mocha** theme, with the **blue** accent, then copy the contents of [`themes/mocha/blue.yml`](./themes/mocha/blue.yml) and paste them directly into your lazygit `config.yml` as follows:
config.yml ```yaml gui: # Use the mocha catppuccin theme theme: activeBorderColor: - '#89b4fa' - bold inactiveBorderColor: - '#a6adc8' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' cherryPickedCommitBgColor: - '#45475a' cherryPickedCommitFgColor: - '#89b4fa' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' searchingActiveBorderColor: - '#f9e2af' ```
4. Close and re-open lazygit to see your new theme! #### If you want to use our preset: 1. Choose the flavor you want (from `./themes-mergable/`) 2. Choose the accent you want from within the flavor directory. 3. Copy your chosen theme file into `/lazygit` 4. Change your lazygit startup command (you may want to set a shell alias) to the following: ```bash # This will instruct lazygit to open both config files, merge them, and then boot. # You can add more config files, delimited by a comma, to this list # Replacing with the relevant theme file lazygit --use-config-file="/config.yml,.yml" # or LG_CONFIG_FILE="/config.yml,.yml" lazygit ``` 5. Close and re-open lazygit to see your new theme! ## 🙋 FAQ - Q: **_"Why is the background wrong?"_**\ A: Lazygit uses your terminal background. You should set it to the relevant background for your theme. ## 💝 Thanks to - [nullishamy](https://github.com/nullishamy)  

Copyright © 2021-present Catppuccin Org

================================================ FILE: flake.nix ================================================ { inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11"; flake-utils.url = "github:numtide/flake-utils"; catppuccin-toolbox.url = "github:catppuccin/toolbox"; }; description = "Development shell flake"; outputs = { self, nixpkgs, flake-utils, catppuccin-toolbox }: flake-utils.lib.eachDefaultSystem (system: { devShell = let pkgs = nixpkgs.legacyPackages.${system}; in pkgs.mkShell { packages = with pkgs; [ just catppuccin-toolbox.packages.${system}.whiskers ]; }; }); } ================================================ FILE: justfile ================================================ _default: @just --list build: whiskers lazygit.tera ================================================ FILE: lazygit.tera ================================================ --- whiskers: version: ^2.9.0 matrix: - variant: ["themes", "themes-mergable"] - flavor - accent filename: "{{variant}}/{{flavor.identifier}}/{{accent}}.yml" --- {%- macro theme() %} {%- set palette = flavor.colors -%} theme: activeBorderColor: - '#{{ palette[accent].hex }}' - bold inactiveBorderColor: - '#{{ palette.subtext0.hex }}' searchingActiveBorderColor: - '#{{ palette.yellow.hex }}' optionsTextColor: - '#{{ palette.blue.hex }}' selectedLineBgColor: - '#{{ palette.surface0.hex }}' inactiveViewSelectedLineBgColor: - '#{{ palette.overlay0.hex }}' cherryPickedCommitFgColor: - '#{{ palette[accent].hex }}' cherryPickedCommitBgColor: - '#{{ palette.surface1.hex }}' markedBaseCommitFgColor: - '#{{ palette.blue.hex }}' markedBaseCommitBgColor: - '#{{ palette.yellow.hex }}' unstagedChangesColor: - '#{{ palette.red.hex }}' defaultFgColor: - '#{{ palette.text.hex }}' authorColors: '*': '#{{ palette.lavender.hex }}' {%- endmacro %} {%- if variant == "themes" -%} {{ self::theme() }} {%- else -%} gui: {{ self::theme() | indent(prefix=" ") }} {%- endif %} ================================================ FILE: renovate.json ================================================ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "local>catppuccin/renovate-config" ] } ================================================ FILE: themes/frappe/blue.yml ================================================ theme: activeBorderColor: - '#8caaee' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#8caaee' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/frappe/flamingo.yml ================================================ theme: activeBorderColor: - '#eebebe' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#eebebe' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/frappe/green.yml ================================================ theme: activeBorderColor: - '#a6d189' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#a6d189' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/frappe/lavender.yml ================================================ theme: activeBorderColor: - '#babbf1' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#babbf1' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/frappe/maroon.yml ================================================ theme: activeBorderColor: - '#ea999c' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#ea999c' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/frappe/mauve.yml ================================================ theme: activeBorderColor: - '#ca9ee6' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#ca9ee6' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/frappe/peach.yml ================================================ theme: activeBorderColor: - '#ef9f76' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#ef9f76' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/frappe/pink.yml ================================================ theme: activeBorderColor: - '#f4b8e4' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#f4b8e4' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/frappe/red.yml ================================================ theme: activeBorderColor: - '#e78284' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#e78284' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/frappe/rosewater.yml ================================================ theme: activeBorderColor: - '#f2d5cf' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#f2d5cf' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/frappe/sapphire.yml ================================================ theme: activeBorderColor: - '#85c1dc' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#85c1dc' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/frappe/sky.yml ================================================ theme: activeBorderColor: - '#99d1db' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#99d1db' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/frappe/teal.yml ================================================ theme: activeBorderColor: - '#81c8be' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#81c8be' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/frappe/yellow.yml ================================================ theme: activeBorderColor: - '#e5c890' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#e5c890' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes/latte/blue.yml ================================================ theme: activeBorderColor: - '#1e66f5' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#1e66f5' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/latte/flamingo.yml ================================================ theme: activeBorderColor: - '#dd7878' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#dd7878' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/latte/green.yml ================================================ theme: activeBorderColor: - '#40a02b' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#40a02b' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/latte/lavender.yml ================================================ theme: activeBorderColor: - '#7287fd' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#7287fd' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/latte/maroon.yml ================================================ theme: activeBorderColor: - '#e64553' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#e64553' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/latte/mauve.yml ================================================ theme: activeBorderColor: - '#8839ef' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#8839ef' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/latte/peach.yml ================================================ theme: activeBorderColor: - '#fe640b' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#fe640b' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/latte/pink.yml ================================================ theme: activeBorderColor: - '#ea76cb' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#ea76cb' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/latte/red.yml ================================================ theme: activeBorderColor: - '#d20f39' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#d20f39' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/latte/rosewater.yml ================================================ theme: activeBorderColor: - '#dc8a78' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#dc8a78' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/latte/sapphire.yml ================================================ theme: activeBorderColor: - '#209fb5' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#209fb5' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/latte/sky.yml ================================================ theme: activeBorderColor: - '#04a5e5' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#04a5e5' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/latte/teal.yml ================================================ theme: activeBorderColor: - '#179299' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#179299' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/latte/yellow.yml ================================================ theme: activeBorderColor: - '#df8e1d' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#df8e1d' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes/macchiato/blue.yml ================================================ theme: activeBorderColor: - '#8aadf4' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#8aadf4' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/macchiato/flamingo.yml ================================================ theme: activeBorderColor: - '#f0c6c6' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#f0c6c6' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/macchiato/green.yml ================================================ theme: activeBorderColor: - '#a6da95' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#a6da95' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/macchiato/lavender.yml ================================================ theme: activeBorderColor: - '#b7bdf8' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#b7bdf8' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/macchiato/maroon.yml ================================================ theme: activeBorderColor: - '#ee99a0' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#ee99a0' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/macchiato/mauve.yml ================================================ theme: activeBorderColor: - '#c6a0f6' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#c6a0f6' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/macchiato/peach.yml ================================================ theme: activeBorderColor: - '#f5a97f' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#f5a97f' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/macchiato/pink.yml ================================================ theme: activeBorderColor: - '#f5bde6' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#f5bde6' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/macchiato/red.yml ================================================ theme: activeBorderColor: - '#ed8796' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#ed8796' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/macchiato/rosewater.yml ================================================ theme: activeBorderColor: - '#f4dbd6' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#f4dbd6' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/macchiato/sapphire.yml ================================================ theme: activeBorderColor: - '#7dc4e4' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#7dc4e4' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/macchiato/sky.yml ================================================ theme: activeBorderColor: - '#91d7e3' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#91d7e3' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/macchiato/teal.yml ================================================ theme: activeBorderColor: - '#8bd5ca' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#8bd5ca' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/macchiato/yellow.yml ================================================ theme: activeBorderColor: - '#eed49f' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#eed49f' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes/mocha/blue.yml ================================================ theme: activeBorderColor: - '#89b4fa' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#89b4fa' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes/mocha/flamingo.yml ================================================ theme: activeBorderColor: - '#f2cdcd' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#f2cdcd' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes/mocha/green.yml ================================================ theme: activeBorderColor: - '#a6e3a1' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#a6e3a1' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes/mocha/lavender.yml ================================================ theme: activeBorderColor: - '#b4befe' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#b4befe' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes/mocha/maroon.yml ================================================ theme: activeBorderColor: - '#eba0ac' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#eba0ac' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes/mocha/mauve.yml ================================================ theme: activeBorderColor: - '#cba6f7' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#cba6f7' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes/mocha/peach.yml ================================================ theme: activeBorderColor: - '#fab387' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#fab387' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes/mocha/pink.yml ================================================ theme: activeBorderColor: - '#f5c2e7' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#f5c2e7' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes/mocha/red.yml ================================================ theme: activeBorderColor: - '#f38ba8' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#f38ba8' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes/mocha/rosewater.yml ================================================ theme: activeBorderColor: - '#f5e0dc' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#f5e0dc' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes/mocha/sapphire.yml ================================================ theme: activeBorderColor: - '#74c7ec' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#74c7ec' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes/mocha/sky.yml ================================================ theme: activeBorderColor: - '#89dceb' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#89dceb' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes/mocha/teal.yml ================================================ theme: activeBorderColor: - '#94e2d5' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#94e2d5' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes/mocha/yellow.yml ================================================ theme: activeBorderColor: - '#f9e2af' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#f9e2af' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/frappe/blue.yml ================================================ gui: theme: activeBorderColor: - '#8caaee' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#8caaee' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/frappe/flamingo.yml ================================================ gui: theme: activeBorderColor: - '#eebebe' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#eebebe' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/frappe/green.yml ================================================ gui: theme: activeBorderColor: - '#a6d189' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#a6d189' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/frappe/lavender.yml ================================================ gui: theme: activeBorderColor: - '#babbf1' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#babbf1' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/frappe/maroon.yml ================================================ gui: theme: activeBorderColor: - '#ea999c' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#ea999c' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/frappe/mauve.yml ================================================ gui: theme: activeBorderColor: - '#ca9ee6' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#ca9ee6' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/frappe/peach.yml ================================================ gui: theme: activeBorderColor: - '#ef9f76' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#ef9f76' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/frappe/pink.yml ================================================ gui: theme: activeBorderColor: - '#f4b8e4' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#f4b8e4' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/frappe/red.yml ================================================ gui: theme: activeBorderColor: - '#e78284' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#e78284' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/frappe/rosewater.yml ================================================ gui: theme: activeBorderColor: - '#f2d5cf' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#f2d5cf' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/frappe/sapphire.yml ================================================ gui: theme: activeBorderColor: - '#85c1dc' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#85c1dc' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/frappe/sky.yml ================================================ gui: theme: activeBorderColor: - '#99d1db' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#99d1db' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/frappe/teal.yml ================================================ gui: theme: activeBorderColor: - '#81c8be' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#81c8be' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/frappe/yellow.yml ================================================ gui: theme: activeBorderColor: - '#e5c890' - bold inactiveBorderColor: - '#a5adce' searchingActiveBorderColor: - '#e5c890' optionsTextColor: - '#8caaee' selectedLineBgColor: - '#414559' inactiveViewSelectedLineBgColor: - '#737994' cherryPickedCommitFgColor: - '#e5c890' cherryPickedCommitBgColor: - '#51576d' markedBaseCommitFgColor: - '#8caaee' markedBaseCommitBgColor: - '#e5c890' unstagedChangesColor: - '#e78284' defaultFgColor: - '#c6d0f5' authorColors: '*': '#babbf1' ================================================ FILE: themes-mergable/latte/blue.yml ================================================ gui: theme: activeBorderColor: - '#1e66f5' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#1e66f5' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/latte/flamingo.yml ================================================ gui: theme: activeBorderColor: - '#dd7878' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#dd7878' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/latte/green.yml ================================================ gui: theme: activeBorderColor: - '#40a02b' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#40a02b' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/latte/lavender.yml ================================================ gui: theme: activeBorderColor: - '#7287fd' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#7287fd' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/latte/maroon.yml ================================================ gui: theme: activeBorderColor: - '#e64553' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#e64553' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/latte/mauve.yml ================================================ gui: theme: activeBorderColor: - '#8839ef' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#8839ef' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/latte/peach.yml ================================================ gui: theme: activeBorderColor: - '#fe640b' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#fe640b' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/latte/pink.yml ================================================ gui: theme: activeBorderColor: - '#ea76cb' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#ea76cb' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/latte/red.yml ================================================ gui: theme: activeBorderColor: - '#d20f39' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#d20f39' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/latte/rosewater.yml ================================================ gui: theme: activeBorderColor: - '#dc8a78' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#dc8a78' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/latte/sapphire.yml ================================================ gui: theme: activeBorderColor: - '#209fb5' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#209fb5' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/latte/sky.yml ================================================ gui: theme: activeBorderColor: - '#04a5e5' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#04a5e5' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/latte/teal.yml ================================================ gui: theme: activeBorderColor: - '#179299' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#179299' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/latte/yellow.yml ================================================ gui: theme: activeBorderColor: - '#df8e1d' - bold inactiveBorderColor: - '#6c6f85' searchingActiveBorderColor: - '#df8e1d' optionsTextColor: - '#1e66f5' selectedLineBgColor: - '#ccd0da' inactiveViewSelectedLineBgColor: - '#9ca0b0' cherryPickedCommitFgColor: - '#df8e1d' cherryPickedCommitBgColor: - '#bcc0cc' markedBaseCommitFgColor: - '#1e66f5' markedBaseCommitBgColor: - '#df8e1d' unstagedChangesColor: - '#d20f39' defaultFgColor: - '#4c4f69' authorColors: '*': '#7287fd' ================================================ FILE: themes-mergable/macchiato/blue.yml ================================================ gui: theme: activeBorderColor: - '#8aadf4' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#8aadf4' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/macchiato/flamingo.yml ================================================ gui: theme: activeBorderColor: - '#f0c6c6' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#f0c6c6' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/macchiato/green.yml ================================================ gui: theme: activeBorderColor: - '#a6da95' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#a6da95' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/macchiato/lavender.yml ================================================ gui: theme: activeBorderColor: - '#b7bdf8' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#b7bdf8' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/macchiato/maroon.yml ================================================ gui: theme: activeBorderColor: - '#ee99a0' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#ee99a0' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/macchiato/mauve.yml ================================================ gui: theme: activeBorderColor: - '#c6a0f6' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#c6a0f6' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/macchiato/peach.yml ================================================ gui: theme: activeBorderColor: - '#f5a97f' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#f5a97f' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/macchiato/pink.yml ================================================ gui: theme: activeBorderColor: - '#f5bde6' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#f5bde6' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/macchiato/red.yml ================================================ gui: theme: activeBorderColor: - '#ed8796' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#ed8796' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/macchiato/rosewater.yml ================================================ gui: theme: activeBorderColor: - '#f4dbd6' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#f4dbd6' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/macchiato/sapphire.yml ================================================ gui: theme: activeBorderColor: - '#7dc4e4' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#7dc4e4' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/macchiato/sky.yml ================================================ gui: theme: activeBorderColor: - '#91d7e3' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#91d7e3' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/macchiato/teal.yml ================================================ gui: theme: activeBorderColor: - '#8bd5ca' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#8bd5ca' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/macchiato/yellow.yml ================================================ gui: theme: activeBorderColor: - '#eed49f' - bold inactiveBorderColor: - '#a5adcb' searchingActiveBorderColor: - '#eed49f' optionsTextColor: - '#8aadf4' selectedLineBgColor: - '#363a4f' inactiveViewSelectedLineBgColor: - '#6e738d' cherryPickedCommitFgColor: - '#eed49f' cherryPickedCommitBgColor: - '#494d64' markedBaseCommitFgColor: - '#8aadf4' markedBaseCommitBgColor: - '#eed49f' unstagedChangesColor: - '#ed8796' defaultFgColor: - '#cad3f5' authorColors: '*': '#b7bdf8' ================================================ FILE: themes-mergable/mocha/blue.yml ================================================ gui: theme: activeBorderColor: - '#89b4fa' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#89b4fa' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/mocha/flamingo.yml ================================================ gui: theme: activeBorderColor: - '#f2cdcd' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#f2cdcd' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/mocha/green.yml ================================================ gui: theme: activeBorderColor: - '#a6e3a1' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#a6e3a1' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/mocha/lavender.yml ================================================ gui: theme: activeBorderColor: - '#b4befe' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#b4befe' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/mocha/maroon.yml ================================================ gui: theme: activeBorderColor: - '#eba0ac' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#eba0ac' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/mocha/mauve.yml ================================================ gui: theme: activeBorderColor: - '#cba6f7' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#cba6f7' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/mocha/peach.yml ================================================ gui: theme: activeBorderColor: - '#fab387' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#fab387' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/mocha/pink.yml ================================================ gui: theme: activeBorderColor: - '#f5c2e7' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#f5c2e7' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/mocha/red.yml ================================================ gui: theme: activeBorderColor: - '#f38ba8' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#f38ba8' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/mocha/rosewater.yml ================================================ gui: theme: activeBorderColor: - '#f5e0dc' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#f5e0dc' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/mocha/sapphire.yml ================================================ gui: theme: activeBorderColor: - '#74c7ec' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#74c7ec' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/mocha/sky.yml ================================================ gui: theme: activeBorderColor: - '#89dceb' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#89dceb' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/mocha/teal.yml ================================================ gui: theme: activeBorderColor: - '#94e2d5' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#94e2d5' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe' ================================================ FILE: themes-mergable/mocha/yellow.yml ================================================ gui: theme: activeBorderColor: - '#f9e2af' - bold inactiveBorderColor: - '#a6adc8' searchingActiveBorderColor: - '#f9e2af' optionsTextColor: - '#89b4fa' selectedLineBgColor: - '#313244' inactiveViewSelectedLineBgColor: - '#6c7086' cherryPickedCommitFgColor: - '#f9e2af' cherryPickedCommitBgColor: - '#45475a' markedBaseCommitFgColor: - '#89b4fa' markedBaseCommitBgColor: - '#f9e2af' unstagedChangesColor: - '#f38ba8' defaultFgColor: - '#cdd6f4' authorColors: '*': '#b4befe'