Full Code of catppuccin/lazygit for AI

main 798ad2e75a11 cached
124 files
76.2 KB
28.5k tokens
1 requests
Download .txt
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
================================================
<h3 align="center">
	<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/logos/exports/1544x1544_circle.png" width="100" alt="Logo"/><br/>
	<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/misc/transparent.png" height="30" width="0px"/>
	Catppuccin for <a href="https://github.com/jesseduffield/lazygit">Lazygit</a>
	<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/misc/transparent.png" height="30" width="0px"/>
</h3>

<p align="center">
	<a href="https://github.com/catppuccin/lazygit/stargazers"><img src="https://img.shields.io/github/stars/catppuccin/lazygit?colorA=363a4f&colorB=b7bdf8&style=for-the-badge"></a>
	<a href="https://github.com/catppuccin/lazygit/issues"><img src="https://img.shields.io/github/issues/catppuccin/lazygit?colorA=363a4f&colorB=f5a97f&style=for-the-badge"></a>
	<a href="https://github.com/catppuccin/lazygit/contributors"><img src="https://img.shields.io/github/contributors/catppuccin/lazygit?colorA=363a4f&colorB=a6da95&style=for-the-badge"></a>
</p>

<p align="center">
	<img src="assets/preview.webp"/>
</p>

## Previews

<details>
<summary>🌻 Latte</summary>
<img src="assets/latte.webp"/>
</details>
<details>
<summary>🪴 Frappé</summary>
<img src="assets/frappe.webp"/>
</details>
<details>
<summary>🌺 Macchiato</summary>
<img src="assets/macchiato.webp"/>
</details>
<details>
<summary>🌿 Mocha</summary>
<img src="assets/mocha.webp"/>
</details>

## 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 `<config-dir>` 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-dir>/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:
    <details>
    <summary>config.yml</summary>

    ```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'
    ```
    </details>
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 `<config-dir>/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 <your-theme> with the relevant theme file
lazygit --use-config-file="<config-dir>/config.yml,<your-theme>.yml"
# or
LG_CONFIG_FILE="<config-dir>/config.yml,<your-theme>.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)

&nbsp;

<p align="center">
	<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/footers/gray0_ctp_on_line.svg?sanitize=true" />
</p>

<p align="center">
	Copyright &copy; 2021-present <a href="https://github.com/catppuccin" target="_blank">Catppuccin Org</a>
</p>

<p align="center">
	<a href="https://github.com/catppuccin/lazygit/blob/main/LICENSE"><img src="https://img.shields.io/static/v1.svg?style=for-the-badge&label=License&message=MIT&logoColor=d9e0ee&colorA=363a4f&colorB=b7bdf8"/></a>
</p>


================================================
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'
Download .txt
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
Condensed preview — 124 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (89K chars).
[
  {
    "path": ".editorconfig",
    "chars": 580,
    "preview": "# EditorConfig helps developers define and maintain consistent\n# coding styles between different editors and IDEs\n# Edit"
  },
  {
    "path": ".envrc",
    "chars": 21,
    "preview": "use flake\nlayout node"
  },
  {
    "path": ".github/workflows/check.yml",
    "chars": 246,
    "preview": "name: whiskers\n\non:\n  workflow_dispatch:\n  push:\n    branches: [main]\n  pull_request:\n    branches: [main]\n\njobs:\n  run:"
  },
  {
    "path": ".github/workflows/release.yml",
    "chars": 309,
    "preview": "on:\n  workflow_dispatch:\n  push:\n    branches: [main]\n\nname: release-please\n\npermissions:\n  contents: write\n  pull-reque"
  },
  {
    "path": ".gitignore",
    "chars": 8,
    "preview": ".direnv/"
  },
  {
    "path": "CHANGELOG.md",
    "chars": 4012,
    "preview": "# Changelog\n\n## [2.3.0](https://github.com/catppuccin/lazygit/compare/v2.2.0...v2.3.0) (2026-04-01)\n\n\n### Features\n\n* su"
  },
  {
    "path": "LICENSE",
    "chars": 1067,
    "preview": "MIT License\n\nCopyright (c) 2021 Catppuccin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy"
  },
  {
    "path": "README.md",
    "chars": 5057,
    "preview": "<h3 align=\"center\">\n\t<img src=\"https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/logos/exports/1544x15"
  },
  {
    "path": "flake.nix",
    "chars": 564,
    "preview": "{\n  inputs = {\n    nixpkgs.url = \"github:nixos/nixpkgs/nixos-22.11\";\n    flake-utils.url = \"github:numtide/flake-utils\";"
  },
  {
    "path": "justfile",
    "chars": 57,
    "preview": "_default:\n  @just --list\n\nbuild:\n  whiskers lazygit.tera\n"
  },
  {
    "path": "lazygit.tera",
    "chars": 1166,
    "preview": "---\nwhiskers:\n  version: ^2.9.0\n  matrix:\n    - variant: [\"themes\", \"themes-mergable\"]\n    - flavor\n    - accent\n  filen"
  },
  {
    "path": "renovate.json",
    "chars": 128,
    "preview": "{\n  \"$schema\": \"https://docs.renovatebot.com/renovate-schema.json\",\n  \"extends\": [\n    \"local>catppuccin/renovate-config"
  },
  {
    "path": "themes/frappe/blue.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#8caaee'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/frappe/flamingo.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#eebebe'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/frappe/green.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#a6d189'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/frappe/lavender.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#babbf1'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/frappe/maroon.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#ea999c'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/frappe/mauve.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#ca9ee6'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/frappe/peach.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#ef9f76'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/frappe/pink.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#f4b8e4'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/frappe/red.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#e78284'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/frappe/rosewater.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#f2d5cf'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/frappe/sapphire.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#85c1dc'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/frappe/sky.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#99d1db'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/frappe/teal.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#81c8be'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/frappe/yellow.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#e5c890'\n    - bold\n  inactiveBorderColor:\n    - '#a5adce'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/blue.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#1e66f5'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/flamingo.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#dd7878'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/green.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#40a02b'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/lavender.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#7287fd'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/maroon.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#e64553'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/mauve.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#8839ef'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/peach.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#fe640b'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/pink.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#ea76cb'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/red.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#d20f39'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/rosewater.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#dc8a78'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/sapphire.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#209fb5'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/sky.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#04a5e5'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/teal.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#179299'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/latte/yellow.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#df8e1d'\n    - bold\n  inactiveBorderColor:\n    - '#6c6f85'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/blue.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#8aadf4'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/flamingo.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#f0c6c6'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/green.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#a6da95'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/lavender.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#b7bdf8'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/maroon.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#ee99a0'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/mauve.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#c6a0f6'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/peach.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#f5a97f'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/pink.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#f5bde6'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/red.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#ed8796'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/rosewater.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#f4dbd6'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/sapphire.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#7dc4e4'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/sky.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#91d7e3'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/teal.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#8bd5ca'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/macchiato/yellow.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#eed49f'\n    - bold\n  inactiveBorderColor:\n    - '#a5adcb'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/blue.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#89b4fa'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/flamingo.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#f2cdcd'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/green.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#a6e3a1'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/lavender.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#b4befe'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/maroon.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#eba0ac'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/mauve.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#cba6f7'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/peach.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#fab387'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/pink.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#f5c2e7'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/red.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#f38ba8'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/rosewater.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#f5e0dc'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/sapphire.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#74c7ec'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/sky.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#89dceb'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/teal.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#94e2d5'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes/mocha/yellow.yml",
    "chars": 548,
    "preview": "theme:\n  activeBorderColor:\n    - '#f9e2af'\n    - bold\n  inactiveBorderColor:\n    - '#a6adc8'\n  searchingActiveBorderCol"
  },
  {
    "path": "themes-mergable/frappe/blue.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#8caaee'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/frappe/flamingo.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#eebebe'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/frappe/green.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#a6d189'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/frappe/lavender.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#babbf1'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/frappe/maroon.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#ea999c'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/frappe/mauve.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#ca9ee6'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/frappe/peach.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#ef9f76'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/frappe/pink.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#f4b8e4'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/frappe/red.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#e78284'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/frappe/rosewater.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#f2d5cf'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/frappe/sapphire.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#85c1dc'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/frappe/sky.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#99d1db'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/frappe/teal.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#81c8be'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/frappe/yellow.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#e5c890'\n      - bold\n    inactiveBorderColor:\n      - '#a5adce'\n    searc"
  },
  {
    "path": "themes-mergable/latte/blue.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#1e66f5'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/latte/flamingo.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#dd7878'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/latte/green.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#40a02b'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/latte/lavender.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#7287fd'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/latte/maroon.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#e64553'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/latte/mauve.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#8839ef'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/latte/peach.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#fe640b'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/latte/pink.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#ea76cb'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/latte/red.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#d20f39'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/latte/rosewater.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#dc8a78'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/latte/sapphire.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#209fb5'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/latte/sky.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#04a5e5'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/latte/teal.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#179299'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/latte/yellow.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#df8e1d'\n      - bold\n    inactiveBorderColor:\n      - '#6c6f85'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/blue.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#8aadf4'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/flamingo.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#f0c6c6'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/green.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#a6da95'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/lavender.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#b7bdf8'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/maroon.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#ee99a0'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/mauve.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#c6a0f6'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/peach.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#f5a97f'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/pink.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#f5bde6'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/red.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#ed8796'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/rosewater.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#f4dbd6'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/sapphire.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#7dc4e4'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/sky.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#91d7e3'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/teal.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#8bd5ca'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/macchiato/yellow.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#eed49f'\n      - bold\n    inactiveBorderColor:\n      - '#a5adcb'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/blue.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#89b4fa'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/flamingo.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#f2cdcd'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/green.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#a6e3a1'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/lavender.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#b4befe'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/maroon.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#eba0ac'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/mauve.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#cba6f7'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/peach.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#fab387'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/pink.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#f5c2e7'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/red.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#f38ba8'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/rosewater.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#f5e0dc'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/sapphire.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#74c7ec'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/sky.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#89dceb'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/teal.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#94e2d5'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  },
  {
    "path": "themes-mergable/mocha/yellow.yml",
    "chars": 609,
    "preview": "gui:\n  theme:\n    activeBorderColor:\n      - '#f9e2af'\n      - bold\n    inactiveBorderColor:\n      - '#a6adc8'\n    searc"
  }
]

About this extraction

This page contains the full source code of the catppuccin/lazygit GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 124 files (76.2 KB), approximately 28.5k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!