diff --git a/docs/assets/pepperjack.webp b/docs/assets/pepperjack.webp new file mode 100644 index 0000000..4680daf Binary files /dev/null and b/docs/assets/pepperjack.webp differ diff --git a/docs/catppuccin.html b/docs/catppuccin.html new file mode 100644 index 0000000..cb2883d --- /dev/null +++ b/docs/catppuccin.html @@ -0,0 +1,436 @@ + + + + + + + catppuccin API documentation + + + + + + + + + + +
+
+

+catppuccin

+ +

🐍 Soothing pastel theme for Python.

+ +

Basic Usage

+ +

Get access to the palette with the catppuccin.PALETTE constant:

+ +
+
from catppuccin import PALETTE
+
+PALETTE.latte.colors.mauve.hex
+# '#8839ef'
+PALETTE.mocha.colors.teal.rgb
+# RGB(r=148, g=226, b=213)
+
+
+ +

The Palette data structure matches the palette +JSON.

+ +

Iteration

+ +

Both Palette and FlavorColors can be iterated to yield flavors and colors +respectively:

+ +
+
for flavor in PALETTE:
+    print(flavor.name)
+
+# Latte
+# Frappé
+# Macchiato
+# Mocha
+
+for color in PALETTE.latte.colors:
+    print(f"{color.name}: {color.hex}")
+
+# Rosewater: #f2d5cf
+# Flamingo: #eebebe
+# Pink: #f4b8e4
+# ...
+# Base: #303446
+# Mantle: #292c3c
+# Crust: #232634
+
+
+ +

Dataclasses

+ +

Palette, Flavor, Color et cetera are all +dataclasses, +so you can also inspect and iterate their fields using methods from the +dataclass module.

+ +

For example, to list all color names and their hex codes:

+ +
+
from dataclasses import fields
+from catppuccin import PALETTE
+
+flavor = PALETTE.frappe
+for field in fields(flavor.colors):
+    color = getattr(flavor.colors, field.name)
+    print(f"{field.name}: {color.hex}")
+
+# rosewater: #f2d5cf
+# flamingo: #eebebe
+# pink: #f4b8e4
+# ...
+# base: #303446
+# mantle: #292c3c
+# crust: #232634
+
+
+ +

Types

+ +

This package is fully type annotated with data structures located in the models +module.

+ +

Integrations

+ +

This package includes optional support for several libraries. Click a link below +to see the documentation for that integration.

+ + +
+ + + + + +
 1"""🐍 Soothing pastel theme for Python.
+ 2
+ 3## Basic Usage
+ 4
+ 5Get access to the palette with the `catppuccin.PALETTE` constant:
+ 6
+ 7```python
+ 8from catppuccin import PALETTE
+ 9
+10PALETTE.latte.colors.mauve.hex
+11# '#8839ef'
+12PALETTE.mocha.colors.teal.rgb
+13# RGB(r=148, g=226, b=213)
+14```
+15
+16The `Palette` data structure matches [the palette
+17JSON](https://github.com/catppuccin/palette/blob/main/palette.json).
+18
+19## Iteration
+20
+21Both `Palette` and `FlavorColors` can be iterated to yield flavors and colors
+22respectively:
+23
+24```python
+25for flavor in PALETTE:
+26    print(flavor.name)
+27
+28# Latte
+29# Frappé
+30# Macchiato
+31# Mocha
+32
+33for color in PALETTE.latte.colors:
+34    print(f"{color.name}: {color.hex}")
+35
+36# Rosewater: #f2d5cf
+37# Flamingo: #eebebe
+38# Pink: #f4b8e4
+39# ...
+40# Base: #303446
+41# Mantle: #292c3c
+42# Crust: #232634
+43```
+44
+45## Dataclasses
+46
+47`Palette`, `Flavor`, `Color` et cetera are all
+48[`dataclasses`](https://docs.python.org/3/library/dataclasses.html),
+49so you can also inspect and iterate their fields using methods from the
+50dataclass module.
+51
+52For example, to list all color names and their hex codes:
+53
+54```python
+55from dataclasses import fields
+56from catppuccin import PALETTE
+57
+58flavor = PALETTE.frappe
+59for field in fields(flavor.colors):
+60    color = getattr(flavor.colors, field.name)
+61    print(f"{field.name}: {color.hex}")
+62
+63# rosewater: #f2d5cf
+64# flamingo: #eebebe
+65# pink: #f4b8e4
+66# ...
+67# base: #303446
+68# mantle: #292c3c
+69# crust: #232634
+70```
+71
+72## Types
+73
+74This package is fully type annotated with data structures located in [the models
+75module](./catppuccin/models.html).
+76
+77## Integrations
+78
+79This package includes optional support for several libraries. Click a link below
+80to see the documentation for that integration.
+81
+82- [matplotlib](./catppuccin/extras/matplotlib.html)
+83- [pygments](./catppuccin/extras/pygments.html)
+84- [rich](./catppuccin/extras/rich_ctp.html)
+85
+86"""
+87
+88import importlib.util
+89
+90from catppuccin.palette import PALETTE as PALETTE
+91
+92# Attempt to register styles and colormaps if matplotlib is available
+93if importlib.util.find_spec("matplotlib") is not None:
+94    from catppuccin.extras.matplotlib import _register_colormap_list, _register_styles
+95
+96    _register_styles()
+97    _register_colormap_list()
+
+ + +
+
+ + \ No newline at end of file diff --git a/docs/catppuccin/extras.html b/docs/catppuccin/extras.html new file mode 100644 index 0000000..880856b --- /dev/null +++ b/docs/catppuccin/extras.html @@ -0,0 +1,248 @@ + + + + + + + catppuccin.extras API documentation + + + + + + + + + + +
+
+

+catppuccin.extras

+ +

The extras submodule contains code for integration with other packages.

+
+ + + + + +
1"""The extras submodule contains code for integration with other packages."""
+
+ + +
+
+ + \ No newline at end of file diff --git a/docs/catppuccin/extras/matplotlib.html b/docs/catppuccin/extras/matplotlib.html new file mode 100644 index 0000000..1b88fe2 --- /dev/null +++ b/docs/catppuccin/extras/matplotlib.html @@ -0,0 +1,484 @@ + + + + + + + catppuccin.extras.matplotlib API documentation + + + + + + + + + + +
+
+

+catppuccin.extras.matplotlib

+ +

Soothing pastel theme for matplotlib.

+ +

The following code was ported from catppuccin/matplotlib. +Thanks to Bram de Wilde for the original source code and +for allowing this port.

+ +

The library tries to register styles and colormaps if matplotlib is installed. +See the examples below for some use cases:

+ +
    +
  1. Load a style, using mpl.style.use

    + +
    +
    import catppuccin
    +import matplotlib as mpl
    +import matplotlib.pyplot as plt
    +
    +mpl.style.use(catppuccin.PALETTE.mocha.identifier)
    +plt.plot([0,1,2,3], [1,2,3,4])
    +plt.show()
    +
    +
  2. + +
  3. Mix it with different stylesheets!

    + +
    +
    import catppuccin
    +import matplotlib as mpl
    +import matplotlib.pyplot as plt
    +
    +mpl.style.use(["ggplot", catppuccin.PALETTE.mocha.identifier])
    +plt.plot([0,1,2,3], [1,2,3,4])
    +plt.show()
    +
    +
  4. + +
  5. Load individual colors

    + +
    +
    import matplotlib.pyplot as plt
    +import catppuccin
    +from catppuccin.extras.matplotlib import load_color
    +
    +color = load_color(catppuccin.PALETTE.latte.identifier, "peach")
    +plt.plot([0,1,2,3], [1,2,3,4], color=color)
    +plt.show()
    +
    +
  6. + +
  7. Define custom colormaps

    + +
    +
    import matplotlib.pyplot as plt
    +import numpy as np
    +import catppuccin
    +from catppuccin.extras.matplotlib import get_colormap_from_list
    +
    +cmap = get_colormap_from_list(
    +    catppuccin.PALETTE.frappe.identifier,
    +    ["red", "peach", "yellow", "green"],
    +)
    +rng = np.random.default_rng()
    +data = rng.integers(2, size=(30, 30))
    +
    +plt.imshow(data, cmap=cmap)
    +plt.show()
    +
    +
  8. +
+
+ + + + + +
  1"""Soothing pastel theme for `matplotlib`.
+  2
+  3The following code was ported from [catppuccin/matplotlib](https://github.com/catppuccin/matplotlib).
+  4Thanks to [Bram de Wilde](https://github.com/brambozz) for the original source code and
+  5for allowing this port.
+  6
+  7The library tries to register styles and colormaps if `matplotlib` is installed.
+  8See the examples below for some use cases:
+  9
+ 101. Load a style, using `mpl.style.use`
+ 11
+ 12   ```python
+ 13   import catppuccin
+ 14   import matplotlib as mpl
+ 15   import matplotlib.pyplot as plt
+ 16
+ 17   mpl.style.use(catppuccin.PALETTE.mocha.identifier)
+ 18   plt.plot([0,1,2,3], [1,2,3,4])
+ 19   plt.show()
+ 20   ```
+ 21
+ 221. Mix it with different stylesheets!
+ 23
+ 24   ```python
+ 25   import catppuccin
+ 26   import matplotlib as mpl
+ 27   import matplotlib.pyplot as plt
+ 28
+ 29   mpl.style.use(["ggplot", catppuccin.PALETTE.mocha.identifier])
+ 30   plt.plot([0,1,2,3], [1,2,3,4])
+ 31   plt.show()
+ 32   ```
+ 33
+ 341. Load individual colors
+ 35
+ 36   ```python
+ 37   import matplotlib.pyplot as plt
+ 38   import catppuccin
+ 39   from catppuccin.extras.matplotlib import load_color
+ 40
+ 41   color = load_color(catppuccin.PALETTE.latte.identifier, "peach")
+ 42   plt.plot([0,1,2,3], [1,2,3,4], color=color)
+ 43   plt.show()
+ 44   ```
+ 45
+ 461. Define custom colormaps
+ 47
+ 48   ```python
+ 49   import matplotlib.pyplot as plt
+ 50   import numpy as np
+ 51   import catppuccin
+ 52   from catppuccin.extras.matplotlib import get_colormap_from_list
+ 53
+ 54   cmap = get_colormap_from_list(
+ 55       catppuccin.PALETTE.frappe.identifier,
+ 56       ["red", "peach", "yellow", "green"],
+ 57   )
+ 58   rng = np.random.default_rng()
+ 59   data = rng.integers(2, size=(30, 30))
+ 60
+ 61   plt.imshow(data, cmap=cmap)
+ 62   plt.show()
+ 63   ```
+ 64"""
+ 65
+ 66from __future__ import annotations
+ 67
+ 68from dataclasses import asdict
+ 69from pathlib import Path
+ 70from typing import TYPE_CHECKING, cast
+ 71
+ 72import matplotlib as mpl
+ 73import matplotlib.colors
+ 74import matplotlib.style
+ 75
+ 76from catppuccin.palette import PALETTE
+ 77
+ 78if TYPE_CHECKING:
+ 79    from collections.abc import Iterable
+ 80
+ 81CATPPUCCIN_STYLE_DIRECTORY = Path(__file__).parent / "matplotlib_styles"
+ 82DEFAULT_COLORMAP_COLORS = ("base", "blue")
+ 83
+ 84
+ 85def _register_styles() -> None:
+ 86    """Register the included stylesheets in the mpl style library."""
+ 87    catppuccin_stylesheets = mpl.style.core.read_style_directory(  # type: ignore [attr-defined]
+ 88        CATPPUCCIN_STYLE_DIRECTORY
+ 89    )
+ 90    mpl.style.core.update_nested_dict(mpl.style.library, catppuccin_stylesheets)  # type: ignore [attr-defined]
+ 91
+ 92
+ 93def _register_colormap_list() -> None:
+ 94    """Register the included color maps in the `matplotlib` colormap library."""
+ 95    for palette_name in asdict(PALETTE):
+ 96        cmap = get_colormap_from_list(palette_name, DEFAULT_COLORMAP_COLORS)
+ 97        mpl.colormaps.register(cmap=cmap, name=palette_name, force=True)
+ 98
+ 99
+100def get_colormap_from_list(
+101    palette_name: str,
+102    color_names: Iterable[str],
+103) -> matplotlib.colors.LinearSegmentedColormap:
+104    """Get a `matplotlib` colormap from a list of colors for a specific palette."""
+105    colors = [load_color(palette_name, color_name) for color_name in color_names]
+106    return matplotlib.colors.LinearSegmentedColormap.from_list(palette_name, colors)
+107
+108
+109def load_color(palette_name: str, color_name: str) -> str:
+110    """Load the color for a given palette and color name."""
+111    return cast(
+112        str,
+113        PALETTE.__getattribute__(palette_name).colors.__getattribute__(color_name).hex,
+114    )
+
+ + +
+
+ +
+ + def + get_colormap_from_list( palette_name: str, color_names: Iterable[str]) -> matplotlib.colors.LinearSegmentedColormap: + + + +
+ +
101def get_colormap_from_list(
+102    palette_name: str,
+103    color_names: Iterable[str],
+104) -> matplotlib.colors.LinearSegmentedColormap:
+105    """Get a `matplotlib` colormap from a list of colors for a specific palette."""
+106    colors = [load_color(palette_name, color_name) for color_name in color_names]
+107    return matplotlib.colors.LinearSegmentedColormap.from_list(palette_name, colors)
+
+ + +

Get a matplotlib colormap from a list of colors for a specific palette.

+
+ + +
+
+ +
+ + def + load_color(palette_name: str, color_name: str) -> str: + + + +
+ +
110def load_color(palette_name: str, color_name: str) -> str:
+111    """Load the color for a given palette and color name."""
+112    return cast(
+113        str,
+114        PALETTE.__getattribute__(palette_name).colors.__getattribute__(color_name).hex,
+115    )
+
+ + +

Load the color for a given palette and color name.

+
+ + +
+
+ + \ No newline at end of file diff --git a/docs/catppuccin/extras/pygments.html b/docs/catppuccin/extras/pygments.html new file mode 100644 index 0000000..5da1689 --- /dev/null +++ b/docs/catppuccin/extras/pygments.html @@ -0,0 +1,640 @@ + + + + + + + catppuccin.extras.pygments API documentation + + + + + + + + + + +
+
+

+catppuccin.extras.pygments

+ +

Pygments styles for all Catppuccin flavors.

+ +

This package provides a Pygments style for each of the four Catppuccin flavors.

+ +

Install Catppuccin with the pygments feature to include the relevant dependencies:

+ +
pip install catppuccin[pygments]
+
+ +

The styles are registered as importlib entrypoints, which allows Pygments to +find them by name:

+ +
+
from pygments.styles import get_style_by_name
+
+get_style_by_name("catppuccin-frappe")
+# catppuccin.extras.pygments.FrappeStyle
+
+
+ +

The following style names are available:

+ +
    +
  • catppuccin-latte
  • +
  • catppuccin-frappe
  • +
  • catppuccin-macchiato
  • +
  • catppuccin-mocha
  • +
+ +

They can also be accessed by directly importing them:

+ +
+
from catppuccin.extras.pygments import MacchiatoStyle
+
+
+
+ + + + + +
  1# ruff: noqa: ERA001
+  2"""Pygments styles for all Catppuccin flavors.
+  3
+  4This package provides a Pygments style for each of the four Catppuccin flavors.
+  5
+  6Install Catppuccin with the `pygments` feature to include the relevant dependencies:
+  7
+  8```
+  9pip install catppuccin[pygments]
+ 10```
+ 11
+ 12The styles are registered as importlib entrypoints, which allows Pygments to
+ 13find them by name:
+ 14
+ 15```python
+ 16from pygments.styles import get_style_by_name
+ 17
+ 18get_style_by_name("catppuccin-frappe")
+ 19# catppuccin.extras.pygments.FrappeStyle
+ 20```
+ 21
+ 22The following style names are available:
+ 23
+ 24- `catppuccin-latte`
+ 25- `catppuccin-frappe`
+ 26- `catppuccin-macchiato`
+ 27- `catppuccin-mocha`
+ 28
+ 29They can also be accessed by directly importing them:
+ 30
+ 31```python
+ 32from catppuccin.extras.pygments import MacchiatoStyle
+ 33```
+ 34"""
+ 35
+ 36from __future__ import annotations
+ 37
+ 38from typing import TYPE_CHECKING
+ 39
+ 40from pygments.style import Style
+ 41from pygments.token import (
+ 42    Comment,
+ 43    Error,
+ 44    Generic,
+ 45    Keyword,
+ 46    Literal,
+ 47    Name,
+ 48    Number,
+ 49    Operator,
+ 50    Other,
+ 51    Punctuation,
+ 52    String,
+ 53    Text,
+ 54    Whitespace,
+ 55    _TokenType,
+ 56)
+ 57
+ 58from catppuccin import PALETTE
+ 59
+ 60if TYPE_CHECKING:
+ 61    from catppuccin.models import FlavorColors
+ 62
+ 63
+ 64def _make_styles(colors: FlavorColors) -> dict[_TokenType, str]:
+ 65    # https://pygments.org/docs/tokens/
+ 66    return {
+ 67        Comment: colors.overlay2.hex,
+ 68        Comment.Hashbang: colors.overlay2.hex,
+ 69        Comment.Multiline: colors.overlay2.hex,
+ 70        Comment.Preproc: colors.pink.hex,
+ 71        Comment.Single: colors.overlay2.hex,
+ 72        Comment.Special: colors.overlay2.hex,
+ 73        Generic: colors.text.hex,
+ 74        Generic.Deleted: colors.red.hex,
+ 75        Generic.Emph: f"{colors.text.hex} underline",
+ 76        Generic.Error: colors.text.hex,
+ 77        Generic.Heading: f"{colors.text.hex} bold",
+ 78        Generic.Inserted: f"{colors.text.hex} bold",
+ 79        Generic.Output: colors.overlay0.hex,
+ 80        Generic.Prompt: colors.text.hex,
+ 81        Generic.Strong: colors.text.hex,
+ 82        Generic.Subheading: f"{colors.text.hex} bold",
+ 83        Generic.Traceback: colors.text.hex,
+ 84        Error: colors.text.hex,
+ 85        # `as`
+ 86        Keyword: colors.mauve.hex,
+ 87        Keyword.Constant: colors.mauve.hex,
+ 88        Keyword.Declaration: f"{colors.mauve.hex} italic",
+ 89        # `from`, `import`
+ 90        Keyword.Namespace: colors.mauve.hex,
+ 91        Keyword.Pseudo: colors.pink.hex,
+ 92        Keyword.Reserved: colors.mauve.hex,
+ 93        Keyword.Type: colors.yellow.hex,
+ 94        Literal: colors.text.hex,
+ 95        Literal.Date: colors.text.hex,
+ 96        # from xxx import NAME
+ 97        # NAME = NAME
+ 98        # NAME.NAME()
+ 99        Name: colors.text.hex,
+100        Name.Attribute: colors.green.hex,
+101        # `len`, `print`
+102        Name.Builtin: f"{colors.red.hex} italic",
+103        # `self`
+104        Name.Builtin.Pseudo: colors.red.hex,
+105        # class Name.Class:
+106        Name.Class: colors.yellow.hex,
+107        Name.Constant: colors.text.hex,
+108        Name.Decorator: colors.text.hex,
+109        Name.Entity: colors.text.hex,
+110        Name.Exception: colors.yellow.hex,
+111        # def __Name.Label__(
+112        Name.Function: colors.blue.hex,
+113        Name.Label: f"{colors.teal.hex} italic",
+114        Name.Namespace: colors.text.hex,
+115        Name.Other: colors.text.hex,
+116        Name.Tag: colors.blue.hex,
+117        Name.Variable: f"{colors.text.hex} italic",
+118        Name.Variable.Class: f"{colors.yellow.hex} italic",
+119        Name.Variable.Global: f"{colors.text.hex} italic",
+120        Name.Variable.Instance: f"{colors.text.hex} italic",
+121        Number: colors.peach.hex,
+122        Number.Bin: colors.peach.hex,
+123        Number.Float: colors.peach.hex,
+124        Number.Hex: colors.peach.hex,
+125        Number.Integer: colors.peach.hex,
+126        Number.Integer.Long: colors.peach.hex,
+127        Number.Oct: colors.peach.hex,
+128        # `=`
+129        Operator: colors.sky.hex,
+130        # `not`, `in`
+131        Operator.Word: colors.mauve.hex,
+132        Other: colors.text.hex,
+133        # `(`, `)`, `,`, `[`, `]`, `:`
+134        Punctuation: colors.overlay2.hex,
+135        String: colors.green.hex,
+136        String.Backtick: colors.green.hex,
+137        String.Char: colors.green.hex,
+138        String.Doc: colors.green.hex,
+139        String.Double: colors.green.hex,
+140        String.Escape: colors.pink.hex,
+141        String.Heredoc: colors.green.hex,
+142        String.Interpol: colors.green.hex,
+143        String.Other: colors.green.hex,
+144        String.Regex: colors.pink.hex,
+145        String.Single: colors.green.hex,
+146        String.Symbol: colors.red.hex,
+147        Text: colors.text.hex,
+148        Whitespace: colors.text.hex,
+149    }
+150
+151
+152class LatteStyle(Style):
+153    """Catppuccin Latte pygments style."""
+154
+155    _colors = PALETTE.latte.colors
+156
+157    background_color = _colors.base.hex
+158    highlight_color = _colors.surface0.hex
+159    line_number_background_color = _colors.mantle.hex
+160    line_number_color = _colors.text.hex
+161    line_number_special_background_color = _colors.mantle.hex
+162    line_number_special_color = _colors.text.hex
+163
+164    styles = _make_styles(_colors)
+165
+166
+167class FrappeStyle(Style):
+168    """Catppuccin Frappé pygments style."""
+169
+170    _colors = PALETTE.frappe.colors
+171
+172    background_color = _colors.base.hex
+173    highlight_color = _colors.surface0.hex
+174    line_number_background_color = _colors.mantle.hex
+175    line_number_color = _colors.text.hex
+176    line_number_special_background_color = _colors.mantle.hex
+177    line_number_special_color = _colors.text.hex
+178
+179    styles = _make_styles(_colors)
+180
+181
+182class MacchiatoStyle(Style):
+183    """Catppuccin Macchiato pygments style."""
+184
+185    _colors = PALETTE.macchiato.colors
+186
+187    background_color = _colors.base.hex
+188    highlight_color = _colors.surface0.hex
+189    line_number_background_color = _colors.mantle.hex
+190    line_number_color = _colors.text.hex
+191    line_number_special_background_color = _colors.mantle.hex
+192    line_number_special_color = _colors.text.hex
+193
+194    styles = _make_styles(_colors)
+195
+196
+197class MochaStyle(Style):
+198    """Catppuccin Mocha pygments style."""
+199
+200    _colors = PALETTE.mocha.colors
+201
+202    background_color = _colors.base.hex
+203    highlight_color = _colors.surface0.hex
+204    line_number_background_color = _colors.mantle.hex
+205    line_number_color = _colors.text.hex
+206    line_number_special_background_color = _colors.mantle.hex
+207    line_number_special_color = _colors.text.hex
+208
+209    styles = _make_styles(_colors)
+
+ + +
+
+ +
+ + class + LatteStyle(pygments.style.Style): + + + +
+ +
153class LatteStyle(Style):
+154    """Catppuccin Latte pygments style."""
+155
+156    _colors = PALETTE.latte.colors
+157
+158    background_color = _colors.base.hex
+159    highlight_color = _colors.surface0.hex
+160    line_number_background_color = _colors.mantle.hex
+161    line_number_color = _colors.text.hex
+162    line_number_special_background_color = _colors.mantle.hex
+163    line_number_special_color = _colors.text.hex
+164
+165    styles = _make_styles(_colors)
+
+ + +

Catppuccin Latte pygments style.

+
+ + +
+
+ +
+ + class + FrappeStyle(pygments.style.Style): + + + +
+ +
168class FrappeStyle(Style):
+169    """Catppuccin Frappé pygments style."""
+170
+171    _colors = PALETTE.frappe.colors
+172
+173    background_color = _colors.base.hex
+174    highlight_color = _colors.surface0.hex
+175    line_number_background_color = _colors.mantle.hex
+176    line_number_color = _colors.text.hex
+177    line_number_special_background_color = _colors.mantle.hex
+178    line_number_special_color = _colors.text.hex
+179
+180    styles = _make_styles(_colors)
+
+ + +

Catppuccin Frappé pygments style.

+
+ + +
+
+ +
+ + class + MacchiatoStyle(pygments.style.Style): + + + +
+ +
183class MacchiatoStyle(Style):
+184    """Catppuccin Macchiato pygments style."""
+185
+186    _colors = PALETTE.macchiato.colors
+187
+188    background_color = _colors.base.hex
+189    highlight_color = _colors.surface0.hex
+190    line_number_background_color = _colors.mantle.hex
+191    line_number_color = _colors.text.hex
+192    line_number_special_background_color = _colors.mantle.hex
+193    line_number_special_color = _colors.text.hex
+194
+195    styles = _make_styles(_colors)
+
+ + +

Catppuccin Macchiato pygments style.

+
+ + +
+
+ +
+ + class + MochaStyle(pygments.style.Style): + + + +
+ +
198class MochaStyle(Style):
+199    """Catppuccin Mocha pygments style."""
+200
+201    _colors = PALETTE.mocha.colors
+202
+203    background_color = _colors.base.hex
+204    highlight_color = _colors.surface0.hex
+205    line_number_background_color = _colors.mantle.hex
+206    line_number_color = _colors.text.hex
+207    line_number_special_background_color = _colors.mantle.hex
+208    line_number_special_color = _colors.text.hex
+209
+210    styles = _make_styles(_colors)
+
+ + +

Catppuccin Mocha pygments style.

+
+ + +
+
+ + \ No newline at end of file diff --git a/docs/catppuccin/extras/rich_ctp.html b/docs/catppuccin/extras/rich_ctp.html new file mode 100644 index 0000000..b145726 --- /dev/null +++ b/docs/catppuccin/extras/rich_ctp.html @@ -0,0 +1,323 @@ + + + + + + + catppuccin.extras.rich_ctp API documentation + + + + + + + + + + +
+
+

+catppuccin.extras.rich_ctp

+ +

Rich themes for all Catppuccin flavors.

+ +

Install Catppuccin with the rich feature to include the relevant dependencies:

+ +
pip install catppuccin[rich]
+
+ +

Pass one of the four flavors as your Console theme:

+ +
+
from rich.console import Console
+from catppuccin.extras.rich_ctp import latte, frappe, macchiato, mocha
+
+c = Console(theme=mocha)
+c.print("Hello", style="yellow")
+
+
+
+ + + + + +
 1"""Rich themes for all Catppuccin flavors.
+ 2
+ 3Install Catppuccin with the `rich` feature to include the relevant dependencies:
+ 4
+ 5```
+ 6pip install catppuccin[rich]
+ 7```
+ 8
+ 9Pass one of the four flavors as your `Console` theme:
+10
+11```python
+12from rich.console import Console
+13from catppuccin.extras.rich_ctp import latte, frappe, macchiato, mocha
+14
+15c = Console(theme=mocha)
+16c.print("Hello", style="yellow")
+17```
+18"""
+19
+20from rich.theme import Theme
+21
+22from catppuccin import PALETTE
+23from catppuccin.models import FlavorColors
+24
+25
+26def _make_theme(colors: FlavorColors) -> Theme:
+27    return Theme(
+28        {
+29            "rosewater": colors.rosewater.hex,
+30            "flamingo": colors.flamingo.hex,
+31            "pink": colors.pink.hex,
+32            "mauve": colors.mauve.hex,
+33            "red": colors.red.hex,
+34            "maroon": colors.maroon.hex,
+35            "peach": colors.peach.hex,
+36            "yellow": colors.yellow.hex,
+37            "green": colors.green.hex,
+38            "teal": colors.teal.hex,
+39            "sky": colors.sky.hex,
+40            "sapphire": colors.sapphire.hex,
+41            "blue": colors.blue.hex,
+42            "lavender": colors.lavender.hex,
+43            "text": colors.text.hex,
+44            "subtext1": colors.subtext1.hex,
+45            "subtext0": colors.subtext0.hex,
+46            "overlay2": colors.overlay2.hex,
+47            "overlay1": colors.overlay1.hex,
+48            "overlay0": colors.overlay0.hex,
+49            "surface2": colors.surface2.hex,
+50            "surface1": colors.surface1.hex,
+51            "surface0": colors.surface0.hex,
+52            "base": colors.base.hex,
+53            "mantle": colors.mantle.hex,
+54            "crust": colors.crust.hex,
+55        },
+56    )
+57
+58
+59latte = _make_theme(PALETTE.latte.colors)
+60frappe = _make_theme(PALETTE.frappe.colors)
+61macchiato = _make_theme(PALETTE.macchiato.colors)
+62mocha = _make_theme(PALETTE.mocha.colors)
+
+ + +
+
+ + \ No newline at end of file diff --git a/docs/catppuccin/models.html b/docs/catppuccin/models.html new file mode 100644 index 0000000..39c6939 --- /dev/null +++ b/docs/catppuccin/models.html @@ -0,0 +1,1548 @@ + + + + + + + catppuccin.models API documentation + + + + + + + + + + +
+
+

+catppuccin.models

+ +

Dataclass definitions for the Catppuccin palette data structure.

+
+ + + + + +
  1"""Dataclass definitions for the Catppuccin palette data structure."""
+  2
+  3from collections.abc import Iterator
+  4from dataclasses import dataclass
+  5
+  6__all__ = ["Palette", "Flavor", "FlavorColors", "Color", "RGB", "HSL"]
+  7
+  8
+  9@dataclass(frozen=True)
+ 10class RGB:
+ 11    """Color represented as red, green, and blue (all 0-255)."""
+ 12
+ 13    r: int
+ 14    """@public"""
+ 15    g: int
+ 16    """@public"""
+ 17    b: int
+ 18    """@public"""
+ 19
+ 20
+ 21@dataclass(frozen=True)
+ 22class HSL:
+ 23    """Color represented as hue (0-359), saturation (0-1), and lightness (0-1)."""
+ 24
+ 25    h: float
+ 26    """@public"""
+ 27    s: float
+ 28    """@public"""
+ 29    l: float  # noqa: E741
+ 30    """@public"""
+ 31
+ 32
+ 33@dataclass(frozen=True)
+ 34class Color:
+ 35    """A single color in the Catppuccin palette."""
+ 36
+ 37    name: str
+ 38    """A human-readable name such as `Pink` or `Surface0`."""
+ 39    identifier: str
+ 40    """The lowercase key used to identify the color. This differs from `name` in
+ 41    that it's intended for machine usage rather than presentation."""
+ 42    accent: bool
+ 43    """Whether the color is considered an accent color. Accent colors are the
+ 44    first 14 colors in the palette, also called the analogous colours. The
+ 45    remaining 12 non-accent colors are also referred to as the monochromatic
+ 46    colors."""
+ 47    order: int
+ 48    """Order of the color in the palette spec."""
+ 49    hex: str
+ 50    """The color represented as a six-digit hex string with a leading hash (#)."""
+ 51    rgb: RGB
+ 52    """The color represented as individual red, green, and blue channels. (0-255)"""
+ 53    hsl: HSL
+ 54    """The color represented as individual hue (0-359), saturation (0-1), and
+ 55    lightness (0-1) channels."""
+ 56
+ 57
+ 58@dataclass(frozen=True)
+ 59class FlavorColors:
+ 60    """All of the colors for a particular flavor of Catppuccin.
+ 61
+ 62    Can be iterated over, in which case the colors are yielded in order.
+ 63    """
+ 64
+ 65    rosewater: Color
+ 66    """@public"""
+ 67    flamingo: Color
+ 68    """@public"""
+ 69    pink: Color
+ 70    """@public"""
+ 71    mauve: Color
+ 72    """@public"""
+ 73    red: Color
+ 74    """@public"""
+ 75    maroon: Color
+ 76    """@public"""
+ 77    peach: Color
+ 78    """@public"""
+ 79    yellow: Color
+ 80    """@public"""
+ 81    green: Color
+ 82    """@public"""
+ 83    teal: Color
+ 84    """@public"""
+ 85    sky: Color
+ 86    """@public"""
+ 87    sapphire: Color
+ 88    """@public"""
+ 89    blue: Color
+ 90    """@public"""
+ 91    lavender: Color
+ 92    """@public"""
+ 93    text: Color
+ 94    """@public"""
+ 95    subtext1: Color
+ 96    """@public"""
+ 97    subtext0: Color
+ 98    """@public"""
+ 99    overlay2: Color
+100    """@public"""
+101    overlay1: Color
+102    """@public"""
+103    overlay0: Color
+104    """@public"""
+105    surface2: Color
+106    """@public"""
+107    surface1: Color
+108    """@public"""
+109    surface0: Color
+110    """@public"""
+111    base: Color
+112    """@public"""
+113    mantle: Color
+114    """@public"""
+115    crust: Color
+116    """@public"""
+117
+118    def __iter__(self) -> Iterator[Color]:
+119        """Iterate over colors in the flavor."""
+120        yield from [
+121            self.rosewater,
+122            self.flamingo,
+123            self.pink,
+124            self.mauve,
+125            self.red,
+126            self.maroon,
+127            self.peach,
+128            self.yellow,
+129            self.green,
+130            self.teal,
+131            self.sky,
+132            self.sapphire,
+133            self.blue,
+134            self.lavender,
+135            self.text,
+136            self.subtext1,
+137            self.subtext0,
+138            self.overlay2,
+139            self.overlay1,
+140            self.overlay0,
+141            self.surface2,
+142            self.surface1,
+143            self.surface0,
+144            self.base,
+145            self.mantle,
+146            self.crust,
+147        ]
+148
+149
+150@dataclass(frozen=True)
+151class Flavor:
+152    """A flavor is a collection of colors.
+153
+154    Catppuccin has four flavors; Latte, Frappé, Macchiato, and Mocha.
+155    """
+156
+157    name: str
+158    """A human-readable name such as `Latte` or `Mocha`."""
+159    identifier: str
+160    """The lowercase key used to identify the flavor. This differs from `name`
+161    in that it's intended for machine usage rather than presentation"""
+162    order: int
+163    """Order of the flavor in the palette spec."""
+164    dark: bool
+165    """Whether this flavor is dark or light oriented. Latte is light, the other
+166    three flavors are dark."""
+167    colors: FlavorColors
+168    """@public"""
+169
+170
+171@dataclass(frozen=True)
+172class Palette:
+173    """The top-level type that encompasses the Catppuccin palette data structure.
+174
+175    Primarily used via the `PALETTE` constant.
+176    Can be iterated over, in which case the flavors are yielded in the canonical
+177    order: Latte, Frappé, Macchiato, Mocha.
+178    """
+179
+180    latte: Flavor
+181    """The light flavor."""
+182    frappe: Flavor
+183    """The lightest dark flavor."""
+184    macchiato: Flavor
+185    """The medium dark flavor."""
+186    mocha: Flavor
+187    """The darkest dark flavor."""
+188
+189    def __iter__(self) -> Iterator[Flavor]:
+190        """Iterate over flavors in the palette."""
+191        yield from [self.latte, self.frappe, self.macchiato, self.mocha]
+
+ + +
+
+ +
+
@dataclass(frozen=True)
+ + class + Palette: + + + +
+ +
172@dataclass(frozen=True)
+173class Palette:
+174    """The top-level type that encompasses the Catppuccin palette data structure.
+175
+176    Primarily used via the `PALETTE` constant.
+177    Can be iterated over, in which case the flavors are yielded in the canonical
+178    order: Latte, Frappé, Macchiato, Mocha.
+179    """
+180
+181    latte: Flavor
+182    """The light flavor."""
+183    frappe: Flavor
+184    """The lightest dark flavor."""
+185    macchiato: Flavor
+186    """The medium dark flavor."""
+187    mocha: Flavor
+188    """The darkest dark flavor."""
+189
+190    def __iter__(self) -> Iterator[Flavor]:
+191        """Iterate over flavors in the palette."""
+192        yield from [self.latte, self.frappe, self.macchiato, self.mocha]
+
+ + +

The top-level type that encompasses the Catppuccin palette data structure.

+ +

Primarily used via the PALETTE constant. +Can be iterated over, in which case the flavors are yielded in the canonical +order: Latte, Frappé, Macchiato, Mocha.

+
+ + +
+
+ latte: Flavor + + +
+ + +

The light flavor.

+
+ + +
+
+
+ frappe: Flavor + + +
+ + +

The lightest dark flavor.

+
+ + +
+
+
+ macchiato: Flavor + + +
+ + +

The medium dark flavor.

+
+ + +
+
+
+ mocha: Flavor + + +
+ + +

The darkest dark flavor.

+
+ + +
+
+
+ +
+
@dataclass(frozen=True)
+ + class + Flavor: + + + +
+ +
151@dataclass(frozen=True)
+152class Flavor:
+153    """A flavor is a collection of colors.
+154
+155    Catppuccin has four flavors; Latte, Frappé, Macchiato, and Mocha.
+156    """
+157
+158    name: str
+159    """A human-readable name such as `Latte` or `Mocha`."""
+160    identifier: str
+161    """The lowercase key used to identify the flavor. This differs from `name`
+162    in that it's intended for machine usage rather than presentation"""
+163    order: int
+164    """Order of the flavor in the palette spec."""
+165    dark: bool
+166    """Whether this flavor is dark or light oriented. Latte is light, the other
+167    three flavors are dark."""
+168    colors: FlavorColors
+169    """@public"""
+
+ + +

A flavor is a collection of colors.

+ +

Catppuccin has four flavors; Latte, Frappé, Macchiato, and Mocha.

+
+ + +
+
+ name: str + + +
+ + +

A human-readable name such as Latte or Mocha.

+
+ + +
+
+
+ identifier: str + + +
+ + +

The lowercase key used to identify the flavor. This differs from name +in that it's intended for machine usage rather than presentation

+
+ + +
+
+
+ order: int + + +
+ + +

Order of the flavor in the palette spec.

+
+ + +
+
+
+ dark: bool + + +
+ + +

Whether this flavor is dark or light oriented. Latte is light, the other +three flavors are dark.

+
+ + +
+
+
+ colors: FlavorColors + + +
+ + +

+
+ + +
+
+
+ +
+
@dataclass(frozen=True)
+ + class + FlavorColors: + + + +
+ +
 59@dataclass(frozen=True)
+ 60class FlavorColors:
+ 61    """All of the colors for a particular flavor of Catppuccin.
+ 62
+ 63    Can be iterated over, in which case the colors are yielded in order.
+ 64    """
+ 65
+ 66    rosewater: Color
+ 67    """@public"""
+ 68    flamingo: Color
+ 69    """@public"""
+ 70    pink: Color
+ 71    """@public"""
+ 72    mauve: Color
+ 73    """@public"""
+ 74    red: Color
+ 75    """@public"""
+ 76    maroon: Color
+ 77    """@public"""
+ 78    peach: Color
+ 79    """@public"""
+ 80    yellow: Color
+ 81    """@public"""
+ 82    green: Color
+ 83    """@public"""
+ 84    teal: Color
+ 85    """@public"""
+ 86    sky: Color
+ 87    """@public"""
+ 88    sapphire: Color
+ 89    """@public"""
+ 90    blue: Color
+ 91    """@public"""
+ 92    lavender: Color
+ 93    """@public"""
+ 94    text: Color
+ 95    """@public"""
+ 96    subtext1: Color
+ 97    """@public"""
+ 98    subtext0: Color
+ 99    """@public"""
+100    overlay2: Color
+101    """@public"""
+102    overlay1: Color
+103    """@public"""
+104    overlay0: Color
+105    """@public"""
+106    surface2: Color
+107    """@public"""
+108    surface1: Color
+109    """@public"""
+110    surface0: Color
+111    """@public"""
+112    base: Color
+113    """@public"""
+114    mantle: Color
+115    """@public"""
+116    crust: Color
+117    """@public"""
+118
+119    def __iter__(self) -> Iterator[Color]:
+120        """Iterate over colors in the flavor."""
+121        yield from [
+122            self.rosewater,
+123            self.flamingo,
+124            self.pink,
+125            self.mauve,
+126            self.red,
+127            self.maroon,
+128            self.peach,
+129            self.yellow,
+130            self.green,
+131            self.teal,
+132            self.sky,
+133            self.sapphire,
+134            self.blue,
+135            self.lavender,
+136            self.text,
+137            self.subtext1,
+138            self.subtext0,
+139            self.overlay2,
+140            self.overlay1,
+141            self.overlay0,
+142            self.surface2,
+143            self.surface1,
+144            self.surface0,
+145            self.base,
+146            self.mantle,
+147            self.crust,
+148        ]
+
+ + +

All of the colors for a particular flavor of Catppuccin.

+ +

Can be iterated over, in which case the colors are yielded in order.

+
+ + +
+
+ rosewater: Color + + +
+ + +

+
+ + +
+
+
+ flamingo: Color + + +
+ + +

+
+ + +
+
+
+ pink: Color + + +
+ + +

+
+ + +
+
+
+ mauve: Color + + +
+ + +

+
+ + +
+
+
+ red: Color + + +
+ + +

+
+ + +
+
+
+ maroon: Color + + +
+ + +

+
+ + +
+
+
+ peach: Color + + +
+ + +

+
+ + +
+
+
+ yellow: Color + + +
+ + +

+
+ + +
+
+
+ green: Color + + +
+ + +

+
+ + +
+
+
+ teal: Color + + +
+ + +

+
+ + +
+
+
+ sky: Color + + +
+ + +

+
+ + +
+
+
+ sapphire: Color + + +
+ + +

+
+ + +
+
+
+ blue: Color + + +
+ + +

+
+ + +
+
+
+ lavender: Color + + +
+ + +

+
+ + +
+
+
+ text: Color + + +
+ + +

+
+ + +
+
+
+ subtext1: Color + + +
+ + +

+
+ + +
+
+
+ subtext0: Color + + +
+ + +

+
+ + +
+
+
+ overlay2: Color + + +
+ + +

+
+ + +
+
+
+ overlay1: Color + + +
+ + +

+
+ + +
+
+
+ overlay0: Color + + +
+ + +

+
+ + +
+
+
+ surface2: Color + + +
+ + +

+
+ + +
+
+
+ surface1: Color + + +
+ + +

+
+ + +
+
+
+ surface0: Color + + +
+ + +

+
+ + +
+
+
+ base: Color + + +
+ + +

+
+ + +
+
+
+ mantle: Color + + +
+ + +

+
+ + +
+
+
+ crust: Color + + +
+ + +

+
+ + +
+
+
+ +
+
@dataclass(frozen=True)
+ + class + Color: + + + +
+ +
34@dataclass(frozen=True)
+35class Color:
+36    """A single color in the Catppuccin palette."""
+37
+38    name: str
+39    """A human-readable name such as `Pink` or `Surface0`."""
+40    identifier: str
+41    """The lowercase key used to identify the color. This differs from `name` in
+42    that it's intended for machine usage rather than presentation."""
+43    accent: bool
+44    """Whether the color is considered an accent color. Accent colors are the
+45    first 14 colors in the palette, also called the analogous colours. The
+46    remaining 12 non-accent colors are also referred to as the monochromatic
+47    colors."""
+48    order: int
+49    """Order of the color in the palette spec."""
+50    hex: str
+51    """The color represented as a six-digit hex string with a leading hash (#)."""
+52    rgb: RGB
+53    """The color represented as individual red, green, and blue channels. (0-255)"""
+54    hsl: HSL
+55    """The color represented as individual hue (0-359), saturation (0-1), and
+56    lightness (0-1) channels."""
+
+ + +

A single color in the Catppuccin palette.

+
+ + +
+
+ name: str + + +
+ + +

A human-readable name such as Pink or Surface0.

+
+ + +
+
+
+ identifier: str + + +
+ + +

The lowercase key used to identify the color. This differs from name in +that it's intended for machine usage rather than presentation.

+
+ + +
+
+
+ accent: bool + + +
+ + +

Whether the color is considered an accent color. Accent colors are the +first 14 colors in the palette, also called the analogous colours. The +remaining 12 non-accent colors are also referred to as the monochromatic +colors.

+
+ + +
+
+
+ order: int + + +
+ + +

Order of the color in the palette spec.

+
+ + +
+
+
+ hex: str + + +
+ + +

The color represented as a six-digit hex string with a leading hash (#).

+
+ + +
+
+
+ rgb: RGB + + +
+ + +

The color represented as individual red, green, and blue channels. (0-255)

+
+ + +
+
+
+ hsl: HSL + + +
+ + +

The color represented as individual hue (0-359), saturation (0-1), and +lightness (0-1) channels.

+
+ + +
+
+
+ +
+
@dataclass(frozen=True)
+ + class + RGB: + + + +
+ +
10@dataclass(frozen=True)
+11class RGB:
+12    """Color represented as red, green, and blue (all 0-255)."""
+13
+14    r: int
+15    """@public"""
+16    g: int
+17    """@public"""
+18    b: int
+19    """@public"""
+
+ + +

Color represented as red, green, and blue (all 0-255).

+
+ + +
+
+ r: int + + +
+ + +

+
+ + +
+
+
+ g: int + + +
+ + +

+
+ + +
+
+
+ b: int + + +
+ + +

+
+ + +
+
+
+ +
+
@dataclass(frozen=True)
+ + class + HSL: + + + +
+ +
22@dataclass(frozen=True)
+23class HSL:
+24    """Color represented as hue (0-359), saturation (0-1), and lightness (0-1)."""
+25
+26    h: float
+27    """@public"""
+28    s: float
+29    """@public"""
+30    l: float  # noqa: E741
+31    """@public"""
+
+ + +

Color represented as hue (0-359), saturation (0-1), and lightness (0-1).

+
+ + +
+
+ h: float + + +
+ + +

+
+ + +
+
+
+ s: float + + +
+ + +

+
+ + +
+
+
+ l: float + + +
+ + +

+
+ + +
+
+
+ + \ No newline at end of file diff --git a/docs/catppuccin/palette.html b/docs/catppuccin/palette.html new file mode 100644 index 0000000..0d60809 --- /dev/null +++ b/docs/catppuccin/palette.html @@ -0,0 +1,1387 @@ + + + + + + + catppuccin.palette API documentation + + + + + + + + + + +
+
+

+catppuccin.palette

+ +

Catppuccin palette definition.

+
+ + + + + +
   1"""Catppuccin palette definition."""
+   2
+   3from catppuccin.models import HSL, RGB, Color, Flavor, FlavorColors, Palette
+   4
+   5PALETTE = Palette(
+   6    latte=Flavor(
+   7        name="Latte",
+   8        identifier="latte",
+   9        order=0,
+  10        dark=False,
+  11        colors=FlavorColors(
+  12            rosewater=Color(
+  13                name="Rosewater",
+  14                identifier="rosewater",
+  15                accent=True,
+  16                order=0,
+  17                hex="#dc8a78",
+  18                rgb=RGB(r=220, g=138, b=120),
+  19                hsl=HSL(
+  20                    h=10.799999999999995, s=0.5882352941176472, l=0.6666666666666667
+  21                ),
+  22            ),
+  23            flamingo=Color(
+  24                name="Flamingo",
+  25                identifier="flamingo",
+  26                accent=True,
+  27                order=1,
+  28                hex="#dd7878",
+  29                rgb=RGB(r=221, g=120, b=120),
+  30                hsl=HSL(h=0, s=0.5976331360946746, l=0.6686274509803922),
+  31            ),
+  32            pink=Color(
+  33                name="Pink",
+  34                identifier="pink",
+  35                accent=True,
+  36                order=2,
+  37                hex="#ea76cb",
+  38                rgb=RGB(r=234, g=118, b=203),
+  39                hsl=HSL(
+  40                    h=316.0344827586207, s=0.7341772151898731, l=0.6901960784313725
+  41                ),
+  42            ),
+  43            mauve=Color(
+  44                name="Mauve",
+  45                identifier="mauve",
+  46                accent=True,
+  47                order=3,
+  48                hex="#8839ef",
+  49                rgb=RGB(r=136, g=57, b=239),
+  50                hsl=HSL(
+  51                    h=266.0439560439561, s=0.8504672897196262, l=0.5803921568627451
+  52                ),
+  53            ),
+  54            red=Color(
+  55                name="Red",
+  56                identifier="red",
+  57                accent=True,
+  58                order=4,
+  59                hex="#d20f39",
+  60                rgb=RGB(r=210, g=15, b=57),
+  61                hsl=HSL(
+  62                    h=347.0769230769231, s=0.8666666666666666, l=0.4411764705882353
+  63                ),
+  64            ),
+  65            maroon=Color(
+  66                name="Maroon",
+  67                identifier="maroon",
+  68                accent=True,
+  69                order=5,
+  70                hex="#e64553",
+  71                rgb=RGB(r=230, g=69, b=83),
+  72                hsl=HSL(h=354.78260869565213, s=0.76303317535545, l=0.5862745098039216),
+  73            ),
+  74            peach=Color(
+  75                name="Peach",
+  76                identifier="peach",
+  77                accent=True,
+  78                order=6,
+  79                hex="#fe640b",
+  80                rgb=RGB(r=254, g=100, b=11),
+  81                hsl=HSL(
+  82                    h=21.975308641975307, s=0.9918367346938776, l=0.5196078431372549
+  83                ),
+  84            ),
+  85            yellow=Color(
+  86                name="Yellow",
+  87                identifier="yellow",
+  88                accent=True,
+  89                order=7,
+  90                hex="#df8e1d",
+  91                rgb=RGB(r=223, g=142, b=29),
+  92                hsl=HSL(
+  93                    h=34.948453608247426, s=0.7698412698412698, l=0.49411764705882355
+  94                ),
+  95            ),
+  96            green=Color(
+  97                name="Green",
+  98                identifier="green",
+  99                accent=True,
+ 100                order=8,
+ 101                hex="#40a02b",
+ 102                rgb=RGB(r=64, g=160, b=43),
+ 103                hsl=HSL(
+ 104                    h=109.23076923076923, s=0.5763546798029556, l=0.39803921568627454
+ 105                ),
+ 106            ),
+ 107            teal=Color(
+ 108                name="Teal",
+ 109                identifier="teal",
+ 110                accent=True,
+ 111                order=9,
+ 112                hex="#179299",
+ 113                rgb=RGB(r=23, g=146, b=153),
+ 114                hsl=HSL(
+ 115                    h=183.23076923076923, s=0.7386363636363636, l=0.34509803921568627
+ 116                ),
+ 117            ),
+ 118            sky=Color(
+ 119                name="Sky",
+ 120                identifier="sky",
+ 121                accent=True,
+ 122                order=10,
+ 123                hex="#04a5e5",
+ 124                rgb=RGB(r=4, g=165, b=229),
+ 125                hsl=HSL(
+ 126                    h=197.0666666666667, s=0.965665236051502, l=0.45686274509803926
+ 127                ),
+ 128            ),
+ 129            sapphire=Color(
+ 130                name="Sapphire",
+ 131                identifier="sapphire",
+ 132                accent=True,
+ 133                order=11,
+ 134                hex="#209fb5",
+ 135                rgb=RGB(r=32, g=159, b=181),
+ 136                hsl=HSL(
+ 137                    h=188.85906040268458, s=0.6995305164319249, l=0.4176470588235294
+ 138                ),
+ 139            ),
+ 140            blue=Color(
+ 141                name="Blue",
+ 142                identifier="blue",
+ 143                accent=True,
+ 144                order=12,
+ 145                hex="#1e66f5",
+ 146                rgb=RGB(r=30, g=102, b=245),
+ 147                hsl=HSL(
+ 148                    h=219.90697674418607, s=0.9148936170212768, l=0.5392156862745098
+ 149                ),
+ 150            ),
+ 151            lavender=Color(
+ 152                name="Lavender",
+ 153                identifier="lavender",
+ 154                accent=True,
+ 155                order=13,
+ 156                hex="#7287fd",
+ 157                rgb=RGB(r=114, g=135, b=253),
+ 158                hsl=HSL(
+ 159                    h=230.93525179856115, s=0.9720279720279721, l=0.7196078431372549
+ 160                ),
+ 161            ),
+ 162            text=Color(
+ 163                name="Text",
+ 164                identifier="text",
+ 165                accent=False,
+ 166                order=14,
+ 167                hex="#4c4f69",
+ 168                rgb=RGB(r=76, g=79, b=105),
+ 169                hsl=HSL(
+ 170                    h=233.79310344827587, s=0.16022099447513813, l=0.3549019607843137
+ 171                ),
+ 172            ),
+ 173            subtext1=Color(
+ 174                name="Subtext 1",
+ 175                identifier="subtext1",
+ 176                accent=False,
+ 177                order=15,
+ 178                hex="#5c5f77",
+ 179                rgb=RGB(r=92, g=95, b=119),
+ 180                hsl=HSL(
+ 181                    h=233.33333333333334, s=0.1279620853080569, l=0.4137254901960784
+ 182                ),
+ 183            ),
+ 184            subtext0=Color(
+ 185                name="Subtext 0",
+ 186                identifier="subtext0",
+ 187                accent=False,
+ 188                order=16,
+ 189                hex="#6c6f85",
+ 190                rgb=RGB(r=108, g=111, b=133),
+ 191                hsl=HSL(
+ 192                    h=232.79999999999998, s=0.10373443983402494, l=0.4725490196078431
+ 193                ),
+ 194            ),
+ 195            overlay2=Color(
+ 196                name="Overlay 2",
+ 197                identifier="overlay2",
+ 198                accent=False,
+ 199                order=17,
+ 200                hex="#7c7f93",
+ 201                rgb=RGB(r=124, g=127, b=147),
+ 202                hsl=HSL(
+ 203                    h=232.17391304347825, s=0.09623430962343092, l=0.5313725490196078
+ 204                ),
+ 205            ),
+ 206            overlay1=Color(
+ 207                name="Overlay 1",
+ 208                identifier="overlay1",
+ 209                accent=False,
+ 210                order=18,
+ 211                hex="#8c8fa1",
+ 212                rgb=RGB(r=140, g=143, b=161),
+ 213                hsl=HSL(
+ 214                    h=231.42857142857144, s=0.10047846889952144, l=0.5901960784313726
+ 215                ),
+ 216            ),
+ 217            overlay0=Color(
+ 218                name="Overlay 0",
+ 219                identifier="overlay0",
+ 220                accent=False,
+ 221                order=19,
+ 222                hex="#9ca0b0",
+ 223                rgb=RGB(r=156, g=160, b=176),
+ 224                hsl=HSL(
+ 225                    h=228.00000000000003, s=0.11235955056179768, l=0.6509803921568628
+ 226                ),
+ 227            ),
+ 228            surface2=Color(
+ 229                name="Surface 2",
+ 230                identifier="surface2",
+ 231                accent=False,
+ 232                order=20,
+ 233                hex="#acb0be",
+ 234                rgb=RGB(r=172, g=176, b=190),
+ 235                hsl=HSL(
+ 236                    h=226.6666666666667, s=0.12162162162162159, l=0.7098039215686275
+ 237                ),
+ 238            ),
+ 239            surface1=Color(
+ 240                name="Surface 1",
+ 241                identifier="surface1",
+ 242                accent=False,
+ 243                order=21,
+ 244                hex="#bcc0cc",
+ 245                rgb=RGB(r=188, g=192, b=204),
+ 246                hsl=HSL(
+ 247                    h=225.00000000000003, s=0.13559322033898308, l=0.7686274509803922
+ 248                ),
+ 249            ),
+ 250            surface0=Color(
+ 251                name="Surface 0",
+ 252                identifier="surface0",
+ 253                accent=False,
+ 254                order=22,
+ 255                hex="#ccd0da",
+ 256                rgb=RGB(r=204, g=208, b=218),
+ 257                hsl=HSL(
+ 258                    h=222.85714285714292, s=0.1590909090909089, l=0.8274509803921568
+ 259                ),
+ 260            ),
+ 261            base=Color(
+ 262                name="Base",
+ 263                identifier="base",
+ 264                accent=False,
+ 265                order=23,
+ 266                hex="#eff1f5",
+ 267                rgb=RGB(r=239, g=241, b=245),
+ 268                hsl=HSL(
+ 269                    h=220.00000000000009, s=0.23076923076923136, l=0.9490196078431372
+ 270                ),
+ 271            ),
+ 272            mantle=Color(
+ 273                name="Mantle",
+ 274                identifier="mantle",
+ 275                accent=False,
+ 276                order=24,
+ 277                hex="#e6e9ef",
+ 278                rgb=RGB(r=230, g=233, b=239),
+ 279                hsl=HSL(
+ 280                    h=220.00000000000006, s=0.21951219512195116, l=0.919607843137255
+ 281                ),
+ 282            ),
+ 283            crust=Color(
+ 284                name="Crust",
+ 285                identifier="crust",
+ 286                accent=False,
+ 287                order=25,
+ 288                hex="#dce0e8",
+ 289                rgb=RGB(r=220, g=224, b=232),
+ 290                hsl=HSL(
+ 291                    h=220.00000000000006, s=0.20689655172413762, l=0.8862745098039215
+ 292                ),
+ 293            ),
+ 294        ),
+ 295    ),
+ 296    frappe=Flavor(
+ 297        name="Frappé",
+ 298        identifier="frappe",
+ 299        order=1,
+ 300        dark=True,
+ 301        colors=FlavorColors(
+ 302            rosewater=Color(
+ 303                name="Rosewater",
+ 304                identifier="rosewater",
+ 305                accent=True,
+ 306                order=0,
+ 307                hex="#f2d5cf",
+ 308                rgb=RGB(r=242, g=213, b=207),
+ 309                hsl=HSL(h=10.2857142857143, s=0.5737704918032784, l=0.8803921568627451),
+ 310            ),
+ 311            flamingo=Color(
+ 312                name="Flamingo",
+ 313                identifier="flamingo",
+ 314                accent=True,
+ 315                order=1,
+ 316                hex="#eebebe",
+ 317                rgb=RGB(r=238, g=190, b=190),
+ 318                hsl=HSL(h=0, s=0.5853658536585367, l=0.8392156862745098),
+ 319            ),
+ 320            pink=Color(
+ 321                name="Pink",
+ 322                identifier="pink",
+ 323                accent=True,
+ 324                order=2,
+ 325                hex="#f4b8e4",
+ 326                rgb=RGB(r=244, g=184, b=228),
+ 327                hsl=HSL(h=316, s=0.7317073170731713, l=0.8392156862745098),
+ 328            ),
+ 329            mauve=Color(
+ 330                name="Mauve",
+ 331                identifier="mauve",
+ 332                accent=True,
+ 333                order=3,
+ 334                hex="#ca9ee6",
+ 335                rgb=RGB(r=202, g=158, b=230),
+ 336                hsl=HSL(
+ 337                    h=276.66666666666663, s=0.5901639344262294, l=0.7607843137254902
+ 338                ),
+ 339            ),
+ 340            red=Color(
+ 341                name="Red",
+ 342                identifier="red",
+ 343                accent=True,
+ 344                order=4,
+ 345                hex="#e78284",
+ 346                rgb=RGB(r=231, g=130, b=132),
+ 347                hsl=HSL(
+ 348                    h=358.8118811881188, s=0.6778523489932885, l=0.7078431372549019
+ 349                ),
+ 350            ),
+ 351            maroon=Color(
+ 352                name="Maroon",
+ 353                identifier="maroon",
+ 354                accent=True,
+ 355                order=5,
+ 356                hex="#ea999c",
+ 357                rgb=RGB(r=234, g=153, b=156),
+ 358                hsl=HSL(
+ 359                    h=357.77777777777777, s=0.6585365853658534, l=0.7588235294117647
+ 360                ),
+ 361            ),
+ 362            peach=Color(
+ 363                name="Peach",
+ 364                identifier="peach",
+ 365                accent=True,
+ 366                order=6,
+ 367                hex="#ef9f76",
+ 368                rgb=RGB(r=239, g=159, b=118),
+ 369                hsl=HSL(h=20.33057851239669, s=0.7908496732026143, l=0.7),
+ 370            ),
+ 371            yellow=Color(
+ 372                name="Yellow",
+ 373                identifier="yellow",
+ 374                accent=True,
+ 375                order=7,
+ 376                hex="#e5c890",
+ 377                rgb=RGB(r=229, g=200, b=144),
+ 378                hsl=HSL(
+ 379                    h=39.52941176470588, s=0.6204379562043796, l=0.7313725490196079
+ 380                ),
+ 381            ),
+ 382            green=Color(
+ 383                name="Green",
+ 384                identifier="green",
+ 385                accent=True,
+ 386                order=8,
+ 387                hex="#a6d189",
+ 388                rgb=RGB(r=166, g=209, b=137),
+ 389                hsl=HSL(
+ 390                    h=95.83333333333331, s=0.4390243902439024, l=0.6784313725490196
+ 391                ),
+ 392            ),
+ 393            teal=Color(
+ 394                name="Teal",
+ 395                identifier="teal",
+ 396                accent=True,
+ 397                order=9,
+ 398                hex="#81c8be",
+ 399                rgb=RGB(r=129, g=200, b=190),
+ 400                hsl=HSL(
+ 401                    h=171.5492957746479, s=0.3922651933701657, l=0.6450980392156862
+ 402                ),
+ 403            ),
+ 404            sky=Color(
+ 405                name="Sky",
+ 406                identifier="sky",
+ 407                accent=True,
+ 408                order=10,
+ 409                hex="#99d1db",
+ 410                rgb=RGB(r=153, g=209, b=219),
+ 411                hsl=HSL(
+ 412                    h=189.09090909090907, s=0.47826086956521735, l=0.7294117647058823
+ 413                ),
+ 414            ),
+ 415            sapphire=Color(
+ 416                name="Sapphire",
+ 417                identifier="sapphire",
+ 418                accent=True,
+ 419                order=11,
+ 420                hex="#85c1dc",
+ 421                rgb=RGB(r=133, g=193, b=220),
+ 422                hsl=HSL(
+ 423                    h=198.62068965517244, s=0.5541401273885351, l=0.692156862745098
+ 424                ),
+ 425            ),
+ 426            blue=Color(
+ 427                name="Blue",
+ 428                identifier="blue",
+ 429                accent=True,
+ 430                order=12,
+ 431                hex="#8caaee",
+ 432                rgb=RGB(r=140, g=170, b=238),
+ 433                hsl=HSL(
+ 434                    h=221.6326530612245, s=0.7424242424242424, l=0.7411764705882353
+ 435                ),
+ 436            ),
+ 437            lavender=Color(
+ 438                name="Lavender",
+ 439                identifier="lavender",
+ 440                accent=True,
+ 441                order=13,
+ 442                hex="#babbf1",
+ 443                rgb=RGB(r=186, g=187, b=241),
+ 444                hsl=HSL(
+ 445                    h=238.90909090909093, s=0.6626506024096385, l=0.8372549019607842
+ 446                ),
+ 447            ),
+ 448            text=Color(
+ 449                name="Text",
+ 450                identifier="text",
+ 451                accent=False,
+ 452                order=14,
+ 453                hex="#c6d0f5",
+ 454                rgb=RGB(r=198, g=208, b=245),
+ 455                hsl=HSL(
+ 456                    h=227.2340425531915, s=0.7014925373134333, l=0.8686274509803922
+ 457                ),
+ 458            ),
+ 459            subtext1=Color(
+ 460                name="Subtext 1",
+ 461                identifier="subtext1",
+ 462                accent=False,
+ 463                order=15,
+ 464                hex="#b5bfe2",
+ 465                rgb=RGB(r=181, g=191, b=226),
+ 466                hsl=HSL(
+ 467                    h=226.66666666666669, s=0.43689320388349495, l=0.7980392156862746
+ 468                ),
+ 469            ),
+ 470            subtext0=Color(
+ 471                name="Subtext 0",
+ 472                identifier="subtext0",
+ 473                accent=False,
+ 474                order=16,
+ 475                hex="#a5adce",
+ 476                rgb=RGB(r=165, g=173, b=206),
+ 477                hsl=HSL(
+ 478                    h=228.29268292682926, s=0.2949640287769784, l=0.7274509803921569
+ 479                ),
+ 480            ),
+ 481            overlay2=Color(
+ 482                name="Overlay 2",
+ 483                identifier="overlay2",
+ 484                accent=False,
+ 485                order=17,
+ 486                hex="#949cbb",
+ 487                rgb=RGB(r=148, g=156, b=187),
+ 488                hsl=HSL(
+ 489                    h=227.69230769230768, s=0.22285714285714275, l=0.6568627450980392
+ 490                ),
+ 491            ),
+ 492            overlay1=Color(
+ 493                name="Overlay 1",
+ 494                identifier="overlay1",
+ 495                accent=False,
+ 496                order=18,
+ 497                hex="#838ba7",
+ 498                rgb=RGB(r=131, g=139, b=167),
+ 499                hsl=HSL(
+ 500                    h=226.66666666666669, s=0.16981132075471703, l=0.584313725490196
+ 501                ),
+ 502            ),
+ 503            overlay0=Color(
+ 504                name="Overlay 0",
+ 505                identifier="overlay0",
+ 506                accent=False,
+ 507                order=19,
+ 508                hex="#737994",
+ 509                rgb=RGB(r=115, g=121, b=148),
+ 510                hsl=HSL(
+ 511                    h=229.0909090909091, s=0.13360323886639683, l=0.515686274509804
+ 512                ),
+ 513            ),
+ 514            surface2=Color(
+ 515                name="Surface 2",
+ 516                identifier="surface2",
+ 517                accent=False,
+ 518                order=20,
+ 519                hex="#626880",
+ 520                rgb=RGB(r=98, g=104, b=128),
+ 521                hsl=HSL(
+ 522                    h=228.00000000000003, s=0.1327433628318584, l=0.44313725490196076
+ 523                ),
+ 524            ),
+ 525            surface1=Color(
+ 526                name="Surface 1",
+ 527                identifier="surface1",
+ 528                accent=False,
+ 529                order=21,
+ 530                hex="#51576d",
+ 531                rgb=RGB(r=81, g=87, b=109),
+ 532                hsl=HSL(
+ 533                    h=227.14285714285714, s=0.14736842105263157, l=0.37254901960784315
+ 534                ),
+ 535            ),
+ 536            surface0=Color(
+ 537                name="Surface 0",
+ 538                identifier="surface0",
+ 539                accent=False,
+ 540                order=22,
+ 541                hex="#414559",
+ 542                rgb=RGB(r=65, g=69, b=89),
+ 543                hsl=HSL(
+ 544                    h=230.00000000000003, s=0.15584415584415584, l=0.30196078431372547
+ 545                ),
+ 546            ),
+ 547            base=Color(
+ 548                name="Base",
+ 549                identifier="base",
+ 550                accent=False,
+ 551                order=23,
+ 552                hex="#303446",
+ 553                rgb=RGB(r=48, g=52, b=70),
+ 554                hsl=HSL(
+ 555                    h=229.0909090909091, s=0.18644067796610175, l=0.23137254901960785
+ 556                ),
+ 557            ),
+ 558            mantle=Color(
+ 559                name="Mantle",
+ 560                identifier="mantle",
+ 561                accent=False,
+ 562                order=24,
+ 563                hex="#292c3c",
+ 564                rgb=RGB(r=41, g=44, b=60),
+ 565                hsl=HSL(
+ 566                    h=230.52631578947367, s=0.18811881188118806, l=0.19803921568627453
+ 567                ),
+ 568            ),
+ 569            crust=Color(
+ 570                name="Crust",
+ 571                identifier="crust",
+ 572                accent=False,
+ 573                order=25,
+ 574                hex="#232634",
+ 575                rgb=RGB(r=35, g=38, b=52),
+ 576                hsl=HSL(
+ 577                    h=229.41176470588238, s=0.19540229885057467, l=0.17058823529411765
+ 578                ),
+ 579            ),
+ 580        ),
+ 581    ),
+ 582    macchiato=Flavor(
+ 583        name="Macchiato",
+ 584        identifier="macchiato",
+ 585        order=2,
+ 586        dark=True,
+ 587        colors=FlavorColors(
+ 588            rosewater=Color(
+ 589                name="Rosewater",
+ 590                identifier="rosewater",
+ 591                accent=True,
+ 592                order=0,
+ 593                hex="#f4dbd6",
+ 594                rgb=RGB(r=244, g=219, b=214),
+ 595                hsl=HSL(
+ 596                    h=9.999999999999963, s=0.5769230769230775, l=0.8980392156862745
+ 597                ),
+ 598            ),
+ 599            flamingo=Color(
+ 600                name="Flamingo",
+ 601                identifier="flamingo",
+ 602                accent=True,
+ 603                order=1,
+ 604                hex="#f0c6c6",
+ 605                rgb=RGB(r=240, g=198, b=198),
+ 606                hsl=HSL(h=0, s=0.5833333333333333, l=0.8588235294117648),
+ 607            ),
+ 608            pink=Color(
+ 609                name="Pink",
+ 610                identifier="pink",
+ 611                accent=True,
+ 612                order=2,
+ 613                hex="#f5bde6",
+ 614                rgb=RGB(r=245, g=189, b=230),
+ 615                hsl=HSL(
+ 616                    h=316.0714285714286, s=0.7368421052631583, l=0.8509803921568628
+ 617                ),
+ 618            ),
+ 619            mauve=Color(
+ 620                name="Mauve",
+ 621                identifier="mauve",
+ 622                accent=True,
+ 623                order=3,
+ 624                hex="#c6a0f6",
+ 625                rgb=RGB(r=198, g=160, b=246),
+ 626                hsl=HSL(
+ 627                    h=266.51162790697674, s=0.8269230769230772, l=0.7960784313725491
+ 628                ),
+ 629            ),
+ 630            red=Color(
+ 631                name="Red",
+ 632                identifier="red",
+ 633                accent=True,
+ 634                order=4,
+ 635                hex="#ed8796",
+ 636                rgb=RGB(r=237, g=135, b=150),
+ 637                hsl=HSL(
+ 638                    h=351.1764705882353, s=0.7391304347826088, l=0.7294117647058824
+ 639                ),
+ 640            ),
+ 641            maroon=Color(
+ 642                name="Maroon",
+ 643                identifier="maroon",
+ 644                accent=True,
+ 645                order=5,
+ 646                hex="#ee99a0",
+ 647                rgb=RGB(r=238, g=153, b=160),
+ 648                hsl=HSL(
+ 649                    h=355.05882352941177, s=0.7142857142857143, l=0.7666666666666666
+ 650                ),
+ 651            ),
+ 652            peach=Color(
+ 653                name="Peach",
+ 654                identifier="peach",
+ 655                accent=True,
+ 656                order=6,
+ 657                hex="#f5a97f",
+ 658                rgb=RGB(r=245, g=169, b=127),
+ 659                hsl=HSL(
+ 660                    h=21.355932203389827, s=0.8550724637681162, l=0.7294117647058824
+ 661                ),
+ 662            ),
+ 663            yellow=Color(
+ 664                name="Yellow",
+ 665                identifier="yellow",
+ 666                accent=True,
+ 667                order=7,
+ 668                hex="#eed49f",
+ 669                rgb=RGB(r=238, g=212, b=159),
+ 670                hsl=HSL(
+ 671                    h=40.253164556962034, s=0.6991150442477877, l=0.7784313725490196
+ 672                ),
+ 673            ),
+ 674            green=Color(
+ 675                name="Green",
+ 676                identifier="green",
+ 677                accent=True,
+ 678                order=8,
+ 679                hex="#a6da95",
+ 680                rgb=RGB(r=166, g=218, b=149),
+ 681                hsl=HSL(
+ 682                    h=105.21739130434783, s=0.4825174825174825, l=0.7196078431372549
+ 683                ),
+ 684            ),
+ 685            teal=Color(
+ 686                name="Teal",
+ 687                identifier="teal",
+ 688                accent=True,
+ 689                order=9,
+ 690                hex="#8bd5ca",
+ 691                rgb=RGB(r=139, g=213, b=202),
+ 692                hsl=HSL(
+ 693                    h=171.08108108108107, s=0.46835443037974706, l=0.6901960784313725
+ 694                ),
+ 695            ),
+ 696            sky=Color(
+ 697                name="Sky",
+ 698                identifier="sky",
+ 699                accent=True,
+ 700                order=10,
+ 701                hex="#91d7e3",
+ 702                rgb=RGB(r=145, g=215, b=227),
+ 703                hsl=HSL(
+ 704                    h=188.78048780487802, s=0.5942028985507245, l=0.7294117647058823
+ 705                ),
+ 706            ),
+ 707            sapphire=Color(
+ 708                name="Sapphire",
+ 709                identifier="sapphire",
+ 710                accent=True,
+ 711                order=11,
+ 712                hex="#7dc4e4",
+ 713                rgb=RGB(r=125, g=196, b=228),
+ 714                hsl=HSL(
+ 715                    h=198.64077669902912, s=0.6560509554140128, l=0.692156862745098
+ 716                ),
+ 717            ),
+ 718            blue=Color(
+ 719                name="Blue",
+ 720                identifier="blue",
+ 721                accent=True,
+ 722                order=12,
+ 723                hex="#8aadf4",
+ 724                rgb=RGB(r=138, g=173, b=244),
+ 725                hsl=HSL(h=220.188679245283, s=0.8281250000000003, l=0.7490196078431373),
+ 726            ),
+ 727            lavender=Color(
+ 728                name="Lavender",
+ 729                identifier="lavender",
+ 730                accent=True,
+ 731                order=13,
+ 732                hex="#b7bdf8",
+ 733                rgb=RGB(r=183, g=189, b=248),
+ 734                hsl=HSL(
+ 735                    h=234.46153846153848, s=0.8227848101265824, l=0.8450980392156863
+ 736                ),
+ 737            ),
+ 738            text=Color(
+ 739                name="Text",
+ 740                identifier="text",
+ 741                accent=False,
+ 742                order=14,
+ 743                hex="#cad3f5",
+ 744                rgb=RGB(r=202, g=211, b=245),
+ 745                hsl=HSL(
+ 746                    h=227.4418604651163, s=0.6825396825396831, l=0.8764705882352941
+ 747                ),
+ 748            ),
+ 749            subtext1=Color(
+ 750                name="Subtext 1",
+ 751                identifier="subtext1",
+ 752                accent=False,
+ 753                order=15,
+ 754                hex="#b8c0e0",
+ 755                rgb=RGB(r=184, g=192, b=224),
+ 756                hsl=HSL(h=228, s=0.39215686274509803, l=0.8),
+ 757            ),
+ 758            subtext0=Color(
+ 759                name="Subtext 0",
+ 760                identifier="subtext0",
+ 761                accent=False,
+ 762                order=16,
+ 763                hex="#a5adcb",
+ 764                rgb=RGB(r=165, g=173, b=203),
+ 765                hsl=HSL(
+ 766                    h=227.36842105263156, s=0.2676056338028167, l=0.7215686274509804
+ 767                ),
+ 768            ),
+ 769            overlay2=Color(
+ 770                name="Overlay 2",
+ 771                identifier="overlay2",
+ 772                accent=False,
+ 773                order=17,
+ 774                hex="#939ab7",
+ 775                rgb=RGB(r=147, g=154, b=183),
+ 776                hsl=HSL(
+ 777                    h=228.33333333333331, s=0.2000000000000001, l=0.6470588235294117
+ 778                ),
+ 779            ),
+ 780            overlay1=Color(
+ 781                name="Overlay 1",
+ 782                identifier="overlay1",
+ 783                accent=False,
+ 784                order=18,
+ 785                hex="#8087a2",
+ 786                rgb=RGB(r=128, g=135, b=162),
+ 787                hsl=HSL(
+ 788                    h=227.6470588235294, s=0.1545454545454545, l=0.5686274509803921
+ 789                ),
+ 790            ),
+ 791            overlay0=Color(
+ 792                name="Overlay 0",
+ 793                identifier="overlay0",
+ 794                accent=False,
+ 795                order=19,
+ 796                hex="#6e738d",
+ 797                rgb=RGB(r=110, g=115, b=141),
+ 798                hsl=HSL(
+ 799                    h=230.32258064516128, s=0.12350597609561753, l=0.49215686274509807
+ 800                ),
+ 801            ),
+ 802            surface2=Color(
+ 803                name="Surface 2",
+ 804                identifier="surface2",
+ 805                accent=False,
+ 806                order=20,
+ 807                hex="#5b6078",
+ 808                rgb=RGB(r=91, g=96, b=120),
+ 809                hsl=HSL(
+ 810                    h=229.65517241379308, s=0.13744075829383887, l=0.4137254901960784
+ 811                ),
+ 812            ),
+ 813            surface1=Color(
+ 814                name="Surface 1",
+ 815                identifier="surface1",
+ 816                accent=False,
+ 817                order=21,
+ 818                hex="#494d64",
+ 819                rgb=RGB(r=73, g=77, b=100),
+ 820                hsl=HSL(
+ 821                    h=231.11111111111114, s=0.15606936416184972, l=0.3392156862745098
+ 822                ),
+ 823            ),
+ 824            surface0=Color(
+ 825                name="Surface 0",
+ 826                identifier="surface0",
+ 827                accent=False,
+ 828                order=22,
+ 829                hex="#363a4f",
+ 830                rgb=RGB(r=54, g=58, b=79),
+ 831                hsl=HSL(h=230.4, s=0.1879699248120301, l=0.2607843137254902),
+ 832            ),
+ 833            base=Color(
+ 834                name="Base",
+ 835                identifier="base",
+ 836                accent=False,
+ 837                order=23,
+ 838                hex="#24273a",
+ 839                rgb=RGB(r=36, g=39, b=58),
+ 840                hsl=HSL(
+ 841                    h=231.8181818181818, s=0.23404255319148934, l=0.1843137254901961
+ 842                ),
+ 843            ),
+ 844            mantle=Color(
+ 845                name="Mantle",
+ 846                identifier="mantle",
+ 847                accent=False,
+ 848                order=24,
+ 849                hex="#1e2030",
+ 850                rgb=RGB(r=30, g=32, b=48),
+ 851                hsl=HSL(
+ 852                    h=233.33333333333334, s=0.23076923076923075, l=0.15294117647058825
+ 853                ),
+ 854            ),
+ 855            crust=Color(
+ 856                name="Crust",
+ 857                identifier="crust",
+ 858                accent=False,
+ 859                order=25,
+ 860                hex="#181926",
+ 861                rgb=RGB(r=24, g=25, b=38),
+ 862                hsl=HSL(
+ 863                    h=235.71428571428572, s=0.22580645161290322, l=0.12156862745098039
+ 864                ),
+ 865            ),
+ 866        ),
+ 867    ),
+ 868    mocha=Flavor(
+ 869        name="Mocha",
+ 870        identifier="mocha",
+ 871        order=3,
+ 872        dark=True,
+ 873        colors=FlavorColors(
+ 874            rosewater=Color(
+ 875                name="Rosewater",
+ 876                identifier="rosewater",
+ 877                accent=True,
+ 878                order=0,
+ 879                hex="#f5e0dc",
+ 880                rgb=RGB(r=245, g=224, b=220),
+ 881                hsl=HSL(h=9.599999999999968, s=0.555555555555556, l=0.911764705882353),
+ 882            ),
+ 883            flamingo=Color(
+ 884                name="Flamingo",
+ 885                identifier="flamingo",
+ 886                accent=True,
+ 887                order=1,
+ 888                hex="#f2cdcd",
+ 889                rgb=RGB(r=242, g=205, b=205),
+ 890                hsl=HSL(h=0, s=0.587301587301587, l=0.8764705882352941),
+ 891            ),
+ 892            pink=Color(
+ 893                name="Pink",
+ 894                identifier="pink",
+ 895                accent=True,
+ 896                order=2,
+ 897                hex="#f5c2e7",
+ 898                rgb=RGB(r=245, g=194, b=231),
+ 899                hsl=HSL(
+ 900                    h=316.4705882352941, s=0.7183098591549301, l=0.8607843137254902
+ 901                ),
+ 902            ),
+ 903            mauve=Color(
+ 904                name="Mauve",
+ 905                identifier="mauve",
+ 906                accent=True,
+ 907                order=3,
+ 908                hex="#cba6f7",
+ 909                rgb=RGB(r=203, g=166, b=247),
+ 910                hsl=HSL(
+ 911                    h=267.4074074074074, s=0.8350515463917528, l=0.8098039215686275
+ 912                ),
+ 913            ),
+ 914            red=Color(
+ 915                name="Red",
+ 916                identifier="red",
+ 917                accent=True,
+ 918                order=4,
+ 919                hex="#f38ba8",
+ 920                rgb=RGB(r=243, g=139, b=168),
+ 921                hsl=HSL(
+ 922                    h=343.2692307692308, s=0.8124999999999998, l=0.7490196078431373
+ 923                ),
+ 924            ),
+ 925            maroon=Color(
+ 926                name="Maroon",
+ 927                identifier="maroon",
+ 928                accent=True,
+ 929                order=5,
+ 930                hex="#eba0ac",
+ 931                rgb=RGB(r=235, g=160, b=172),
+ 932                hsl=HSL(h=350.4, s=0.6521739130434779, l=0.7745098039215685),
+ 933            ),
+ 934            peach=Color(
+ 935                name="Peach",
+ 936                identifier="peach",
+ 937                accent=True,
+ 938                order=6,
+ 939                hex="#fab387",
+ 940                rgb=RGB(r=250, g=179, b=135),
+ 941                hsl=HSL(h=22.95652173913043, s=0.92, l=0.7549019607843137),
+ 942            ),
+ 943            yellow=Color(
+ 944                name="Yellow",
+ 945                identifier="yellow",
+ 946                accent=True,
+ 947                order=7,
+ 948                hex="#f9e2af",
+ 949                rgb=RGB(r=249, g=226, b=175),
+ 950                hsl=HSL(
+ 951                    h=41.35135135135135, s=0.8604651162790699, l=0.8313725490196078
+ 952                ),
+ 953            ),
+ 954            green=Color(
+ 955                name="Green",
+ 956                identifier="green",
+ 957                accent=True,
+ 958                order=8,
+ 959                hex="#a6e3a1",
+ 960                rgb=RGB(r=166, g=227, b=161),
+ 961                hsl=HSL(
+ 962                    h=115.45454545454544, s=0.5409836065573769, l=0.7607843137254902
+ 963                ),
+ 964            ),
+ 965            teal=Color(
+ 966                name="Teal",
+ 967                identifier="teal",
+ 968                accent=True,
+ 969                order=9,
+ 970                hex="#94e2d5",
+ 971                rgb=RGB(r=148, g=226, b=213),
+ 972                hsl=HSL(
+ 973                    h=170.00000000000003, s=0.5735294117647057, l=0.7333333333333334
+ 974                ),
+ 975            ),
+ 976            sky=Color(
+ 977                name="Sky",
+ 978                identifier="sky",
+ 979                accent=True,
+ 980                order=10,
+ 981                hex="#89dceb",
+ 982                rgb=RGB(r=137, g=220, b=235),
+ 983                hsl=HSL(
+ 984                    h=189.18367346938774, s=0.7101449275362316, l=0.7294117647058823
+ 985                ),
+ 986            ),
+ 987            sapphire=Color(
+ 988                name="Sapphire",
+ 989                identifier="sapphire",
+ 990                accent=True,
+ 991                order=11,
+ 992                hex="#74c7ec",
+ 993                rgb=RGB(r=116, g=199, b=236),
+ 994                hsl=HSL(h=198.5, s=0.759493670886076, l=0.6901960784313725),
+ 995            ),
+ 996            blue=Color(
+ 997                name="Blue",
+ 998                identifier="blue",
+ 999                accent=True,
+1000                order=12,
+1001                hex="#89b4fa",
+1002                rgb=RGB(r=137, g=180, b=250),
+1003                hsl=HSL(
+1004                    h=217.1681415929203, s=0.9186991869918699, l=0.7588235294117647
+1005                ),
+1006            ),
+1007            lavender=Color(
+1008                name="Lavender",
+1009                identifier="lavender",
+1010                accent=True,
+1011                order=13,
+1012                hex="#b4befe",
+1013                rgb=RGB(r=180, g=190, b=254),
+1014                hsl=HSL(
+1015                    h=231.89189189189187, s=0.9736842105263159, l=0.8509803921568628
+1016                ),
+1017            ),
+1018            text=Color(
+1019                name="Text",
+1020                identifier="text",
+1021                accent=False,
+1022                order=14,
+1023                hex="#cdd6f4",
+1024                rgb=RGB(r=205, g=214, b=244),
+1025                hsl=HSL(
+1026                    h=226.15384615384616, s=0.6393442622950825, l=0.8803921568627451
+1027                ),
+1028            ),
+1029            subtext1=Color(
+1030                name="Subtext 1",
+1031                identifier="subtext1",
+1032                accent=False,
+1033                order=15,
+1034                hex="#bac2de",
+1035                rgb=RGB(r=186, g=194, b=222),
+1036                hsl=HSL(h=226.66666666666669, s=0.35294117647058837, l=0.8),
+1037            ),
+1038            subtext0=Color(
+1039                name="Subtext 0",
+1040                identifier="subtext0",
+1041                accent=False,
+1042                order=16,
+1043                hex="#a6adc8",
+1044                rgb=RGB(r=166, g=173, b=200),
+1045                hsl=HSL(
+1046                    h=227.6470588235294, s=0.23611111111111102, l=0.7176470588235294
+1047                ),
+1048            ),
+1049            overlay2=Color(
+1050                name="Overlay 2",
+1051                identifier="overlay2",
+1052                accent=False,
+1053                order=17,
+1054                hex="#9399b2",
+1055                rgb=RGB(r=147, g=153, b=178),
+1056                hsl=HSL(
+1057                    h=228.38709677419354, s=0.16756756756756758, l=0.6372549019607843
+1058                ),
+1059            ),
+1060            overlay1=Color(
+1061                name="Overlay 1",
+1062                identifier="overlay1",
+1063                accent=False,
+1064                order=18,
+1065                hex="#7f849c",
+1066                rgb=RGB(r=127, g=132, b=156),
+1067                hsl=HSL(
+1068                    h=229.65517241379308, s=0.12775330396475776, l=0.5549019607843138
+1069                ),
+1070            ),
+1071            overlay0=Color(
+1072                name="Overlay 0",
+1073                identifier="overlay0",
+1074                accent=False,
+1075                order=19,
+1076                hex="#6c7086",
+1077                rgb=RGB(r=108, g=112, b=134),
+1078                hsl=HSL(
+1079                    h=230.7692307692308, s=0.10743801652892565, l=0.4745098039215686
+1080                ),
+1081            ),
+1082            surface2=Color(
+1083                name="Surface 2",
+1084                identifier="surface2",
+1085                accent=False,
+1086                order=20,
+1087                hex="#585b70",
+1088                rgb=RGB(r=88, g=91, b=112),
+1089                hsl=HSL(h=232.5, s=0.12, l=0.39215686274509803),
+1090            ),
+1091            surface1=Color(
+1092                name="Surface 1",
+1093                identifier="surface1",
+1094                accent=False,
+1095                order=21,
+1096                hex="#45475a",
+1097                rgb=RGB(r=69, g=71, b=90),
+1098                hsl=HSL(
+1099                    h=234.2857142857143, s=0.13207547169811326, l=0.31176470588235294
+1100                ),
+1101            ),
+1102            surface0=Color(
+1103                name="Surface 0",
+1104                identifier="surface0",
+1105                accent=False,
+1106                order=22,
+1107                hex="#313244",
+1108                rgb=RGB(r=49, g=50, b=68),
+1109                hsl=HSL(
+1110                    h=236.84210526315792, s=0.16239316239316234, l=0.22941176470588237
+1111                ),
+1112            ),
+1113            base=Color(
+1114                name="Base",
+1115                identifier="base",
+1116                accent=False,
+1117                order=23,
+1118                hex="#1e1e2e",
+1119                rgb=RGB(r=30, g=30, b=46),
+1120                hsl=HSL(h=240, s=0.21052631578947367, l=0.14901960784313725),
+1121            ),
+1122            mantle=Color(
+1123                name="Mantle",
+1124                identifier="mantle",
+1125                accent=False,
+1126                order=24,
+1127                hex="#181825",
+1128                rgb=RGB(r=24, g=24, b=37),
+1129                hsl=HSL(h=240, s=0.2131147540983607, l=0.11960784313725491),
+1130            ),
+1131            crust=Color(
+1132                name="Crust",
+1133                identifier="crust",
+1134                accent=False,
+1135                order=25,
+1136                hex="#11111b",
+1137                rgb=RGB(r=17, g=17, b=27),
+1138                hsl=HSL(h=240, s=0.22727272727272727, l=0.08627450980392157),
+1139            ),
+1140        ),
+1141    ),
+1142)
+
+ + +
+
+ + \ No newline at end of file diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..ec29f64 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,7 @@ + + + + + + + diff --git a/docs/search.js b/docs/search.js new file mode 100644 index 0000000..b041b2f --- /dev/null +++ b/docs/search.js @@ -0,0 +1,46 @@ +window.pdocSearch = (function(){ +/** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o\ud83d\udc0d Soothing pastel theme for Python.

\n\n

Basic Usage

\n\n

Get access to the palette with the catppuccin.PALETTE constant:

\n\n
\n
from catppuccin import PALETTE\n\nPALETTE.latte.colors.mauve.hex\n# '#8839ef'\nPALETTE.mocha.colors.teal.rgb\n# RGB(r=148, g=226, b=213)\n
\n
\n\n

The Palette data structure matches the palette\nJSON.

\n\n

Iteration

\n\n

Both Palette and FlavorColors can be iterated to yield flavors and colors\nrespectively:

\n\n
\n
for flavor in PALETTE:\n    print(flavor.name)\n\n# Latte\n# Frapp\u00e9\n# Macchiato\n# Mocha\n\nfor color in PALETTE.latte.colors:\n    print(f"{color.name}: {color.hex}")\n\n# Rosewater: #f2d5cf\n# Flamingo: #eebebe\n# Pink: #f4b8e4\n# ...\n# Base: #303446\n# Mantle: #292c3c\n# Crust: #232634\n
\n
\n\n

Dataclasses

\n\n

Palette, Flavor, Color et cetera are all\ndataclasses,\nso you can also inspect and iterate their fields using methods from the\ndataclass module.

\n\n

For example, to list all color names and their hex codes:

\n\n
\n
from dataclasses import fields\nfrom catppuccin import PALETTE\n\nflavor = PALETTE.frappe\nfor field in fields(flavor.colors):\n    color = getattr(flavor.colors, field.name)\n    print(f"{field.name}: {color.hex}")\n\n# rosewater: #f2d5cf\n# flamingo: #eebebe\n# pink: #f4b8e4\n# ...\n# base: #303446\n# mantle: #292c3c\n# crust: #232634\n
\n
\n\n

Types

\n\n

This package is fully type annotated with data structures located in the models\nmodule.

\n\n

Integrations

\n\n

This package includes optional support for several libraries. Click a link below\nto see the documentation for that integration.

\n\n\n"}, "catppuccin.extras": {"fullname": "catppuccin.extras", "modulename": "catppuccin.extras", "kind": "module", "doc": "

The extras submodule contains code for integration with other packages.

\n"}, "catppuccin.extras.matplotlib": {"fullname": "catppuccin.extras.matplotlib", "modulename": "catppuccin.extras.matplotlib", "kind": "module", "doc": "

Soothing pastel theme for matplotlib.

\n\n

The following code was ported from catppuccin/matplotlib.\nThanks to Bram de Wilde for the original source code and\nfor allowing this port.

\n\n

The library tries to register styles and colormaps if matplotlib is installed.\nSee the examples below for some use cases:

\n\n
    \n
  1. Load a style, using mpl.style.use

    \n\n
    \n
    import catppuccin\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\n\nmpl.style.use(catppuccin.PALETTE.mocha.identifier)\nplt.plot([0,1,2,3], [1,2,3,4])\nplt.show()\n
    \n
  2. \n\n
  3. Mix it with different stylesheets!

    \n\n
    \n
    import catppuccin\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\n\nmpl.style.use(["ggplot", catppuccin.PALETTE.mocha.identifier])\nplt.plot([0,1,2,3], [1,2,3,4])\nplt.show()\n
    \n
  4. \n\n
  5. Load individual colors

    \n\n
    \n
    import matplotlib.pyplot as plt\nimport catppuccin\nfrom catppuccin.extras.matplotlib import load_color\n\ncolor = load_color(catppuccin.PALETTE.latte.identifier, "peach")\nplt.plot([0,1,2,3], [1,2,3,4], color=color)\nplt.show()\n
    \n
  6. \n\n
  7. Define custom colormaps

    \n\n
    \n
    import matplotlib.pyplot as plt\nimport numpy as np\nimport catppuccin\nfrom catppuccin.extras.matplotlib import get_colormap_from_list\n\ncmap = get_colormap_from_list(\n    catppuccin.PALETTE.frappe.identifier,\n    ["red", "peach", "yellow", "green"],\n)\nrng = np.random.default_rng()\ndata = rng.integers(2, size=(30, 30))\n\nplt.imshow(data, cmap=cmap)\nplt.show()\n
    \n
  8. \n
\n"}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"fullname": "catppuccin.extras.matplotlib.get_colormap_from_list", "modulename": "catppuccin.extras.matplotlib", "qualname": "get_colormap_from_list", "kind": "function", "doc": "

Get a matplotlib colormap from a list of colors for a specific palette.

\n", "signature": "(\tpalette_name: str,\tcolor_names: Iterable[str]) -> matplotlib.colors.LinearSegmentedColormap:", "funcdef": "def"}, "catppuccin.extras.matplotlib.load_color": {"fullname": "catppuccin.extras.matplotlib.load_color", "modulename": "catppuccin.extras.matplotlib", "qualname": "load_color", "kind": "function", "doc": "

Load the color for a given palette and color name.

\n", "signature": "(palette_name: str, color_name: str) -> str:", "funcdef": "def"}, "catppuccin.extras.pygments": {"fullname": "catppuccin.extras.pygments", "modulename": "catppuccin.extras.pygments", "kind": "module", "doc": "

Pygments styles for all Catppuccin flavors.

\n\n

This package provides a Pygments style for each of the four Catppuccin flavors.

\n\n

Install Catppuccin with the pygments feature to include the relevant dependencies:

\n\n
pip install catppuccin[pygments]\n
\n\n

The styles are registered as importlib entrypoints, which allows Pygments to\nfind them by name:

\n\n
\n
from pygments.styles import get_style_by_name\n\nget_style_by_name("catppuccin-frappe")\n# catppuccin.extras.pygments.FrappeStyle\n
\n
\n\n

The following style names are available:

\n\n
    \n
  • catppuccin-latte
  • \n
  • catppuccin-frappe
  • \n
  • catppuccin-macchiato
  • \n
  • catppuccin-mocha
  • \n
\n\n

They can also be accessed by directly importing them:

\n\n
\n
from catppuccin.extras.pygments import MacchiatoStyle\n
\n
\n"}, "catppuccin.extras.pygments.LatteStyle": {"fullname": "catppuccin.extras.pygments.LatteStyle", "modulename": "catppuccin.extras.pygments", "qualname": "LatteStyle", "kind": "class", "doc": "

Catppuccin Latte pygments style.

\n", "bases": "pygments.style.Style"}, "catppuccin.extras.pygments.FrappeStyle": {"fullname": "catppuccin.extras.pygments.FrappeStyle", "modulename": "catppuccin.extras.pygments", "qualname": "FrappeStyle", "kind": "class", "doc": "

Catppuccin Frapp\u00e9 pygments style.

\n", "bases": "pygments.style.Style"}, "catppuccin.extras.pygments.MacchiatoStyle": {"fullname": "catppuccin.extras.pygments.MacchiatoStyle", "modulename": "catppuccin.extras.pygments", "qualname": "MacchiatoStyle", "kind": "class", "doc": "

Catppuccin Macchiato pygments style.

\n", "bases": "pygments.style.Style"}, "catppuccin.extras.pygments.MochaStyle": {"fullname": "catppuccin.extras.pygments.MochaStyle", "modulename": "catppuccin.extras.pygments", "qualname": "MochaStyle", "kind": "class", "doc": "

Catppuccin Mocha pygments style.

\n", "bases": "pygments.style.Style"}, "catppuccin.extras.rich_ctp": {"fullname": "catppuccin.extras.rich_ctp", "modulename": "catppuccin.extras.rich_ctp", "kind": "module", "doc": "

Rich themes for all Catppuccin flavors.

\n\n

Install Catppuccin with the rich feature to include the relevant dependencies:

\n\n
pip install catppuccin[rich]\n
\n\n

Pass one of the four flavors as your Console theme:

\n\n
\n
from rich.console import Console\nfrom catppuccin.extras.rich_ctp import latte, frappe, macchiato, mocha\n\nc = Console(theme=mocha)\nc.print("Hello", style="yellow")\n
\n
\n"}, "catppuccin.models": {"fullname": "catppuccin.models", "modulename": "catppuccin.models", "kind": "module", "doc": "

Dataclass definitions for the Catppuccin palette data structure.

\n"}, "catppuccin.models.Palette": {"fullname": "catppuccin.models.Palette", "modulename": "catppuccin.models", "qualname": "Palette", "kind": "class", "doc": "

The top-level type that encompasses the Catppuccin palette data structure.

\n\n

Primarily used via the PALETTE constant.\nCan be iterated over, in which case the flavors are yielded in the canonical\norder: Latte, Frapp\u00e9, Macchiato, Mocha.

\n"}, "catppuccin.models.Palette.latte": {"fullname": "catppuccin.models.Palette.latte", "modulename": "catppuccin.models", "qualname": "Palette.latte", "kind": "variable", "doc": "

The light flavor.

\n", "annotation": ": catppuccin.models.Flavor"}, "catppuccin.models.Palette.frappe": {"fullname": "catppuccin.models.Palette.frappe", "modulename": "catppuccin.models", "qualname": "Palette.frappe", "kind": "variable", "doc": "

The lightest dark flavor.

\n", "annotation": ": catppuccin.models.Flavor"}, "catppuccin.models.Palette.macchiato": {"fullname": "catppuccin.models.Palette.macchiato", "modulename": "catppuccin.models", "qualname": "Palette.macchiato", "kind": "variable", "doc": "

The medium dark flavor.

\n", "annotation": ": catppuccin.models.Flavor"}, "catppuccin.models.Palette.mocha": {"fullname": "catppuccin.models.Palette.mocha", "modulename": "catppuccin.models", "qualname": "Palette.mocha", "kind": "variable", "doc": "

The darkest dark flavor.

\n", "annotation": ": catppuccin.models.Flavor"}, "catppuccin.models.Flavor": {"fullname": "catppuccin.models.Flavor", "modulename": "catppuccin.models", "qualname": "Flavor", "kind": "class", "doc": "

A flavor is a collection of colors.

\n\n

Catppuccin has four flavors; Latte, Frapp\u00e9, Macchiato, and Mocha.

\n"}, "catppuccin.models.Flavor.name": {"fullname": "catppuccin.models.Flavor.name", "modulename": "catppuccin.models", "qualname": "Flavor.name", "kind": "variable", "doc": "

A human-readable name such as Latte or Mocha.

\n", "annotation": ": str"}, "catppuccin.models.Flavor.identifier": {"fullname": "catppuccin.models.Flavor.identifier", "modulename": "catppuccin.models", "qualname": "Flavor.identifier", "kind": "variable", "doc": "

The lowercase key used to identify the flavor. This differs from name\nin that it's intended for machine usage rather than presentation

\n", "annotation": ": str"}, "catppuccin.models.Flavor.order": {"fullname": "catppuccin.models.Flavor.order", "modulename": "catppuccin.models", "qualname": "Flavor.order", "kind": "variable", "doc": "

Order of the flavor in the palette spec.

\n", "annotation": ": int"}, "catppuccin.models.Flavor.dark": {"fullname": "catppuccin.models.Flavor.dark", "modulename": "catppuccin.models", "qualname": "Flavor.dark", "kind": "variable", "doc": "

Whether this flavor is dark or light oriented. Latte is light, the other\nthree flavors are dark.

\n", "annotation": ": bool"}, "catppuccin.models.Flavor.colors": {"fullname": "catppuccin.models.Flavor.colors", "modulename": "catppuccin.models", "qualname": "Flavor.colors", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.FlavorColors"}, "catppuccin.models.FlavorColors": {"fullname": "catppuccin.models.FlavorColors", "modulename": "catppuccin.models", "qualname": "FlavorColors", "kind": "class", "doc": "

All of the colors for a particular flavor of Catppuccin.

\n\n

Can be iterated over, in which case the colors are yielded in order.

\n"}, "catppuccin.models.FlavorColors.rosewater": {"fullname": "catppuccin.models.FlavorColors.rosewater", "modulename": "catppuccin.models", "qualname": "FlavorColors.rosewater", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.flamingo": {"fullname": "catppuccin.models.FlavorColors.flamingo", "modulename": "catppuccin.models", "qualname": "FlavorColors.flamingo", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.pink": {"fullname": "catppuccin.models.FlavorColors.pink", "modulename": "catppuccin.models", "qualname": "FlavorColors.pink", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.mauve": {"fullname": "catppuccin.models.FlavorColors.mauve", "modulename": "catppuccin.models", "qualname": "FlavorColors.mauve", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.red": {"fullname": "catppuccin.models.FlavorColors.red", "modulename": "catppuccin.models", "qualname": "FlavorColors.red", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.maroon": {"fullname": "catppuccin.models.FlavorColors.maroon", "modulename": "catppuccin.models", "qualname": "FlavorColors.maroon", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.peach": {"fullname": "catppuccin.models.FlavorColors.peach", "modulename": "catppuccin.models", "qualname": "FlavorColors.peach", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.yellow": {"fullname": "catppuccin.models.FlavorColors.yellow", "modulename": "catppuccin.models", "qualname": "FlavorColors.yellow", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.green": {"fullname": "catppuccin.models.FlavorColors.green", "modulename": "catppuccin.models", "qualname": "FlavorColors.green", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.teal": {"fullname": "catppuccin.models.FlavorColors.teal", "modulename": "catppuccin.models", "qualname": "FlavorColors.teal", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.sky": {"fullname": "catppuccin.models.FlavorColors.sky", "modulename": "catppuccin.models", "qualname": "FlavorColors.sky", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.sapphire": {"fullname": "catppuccin.models.FlavorColors.sapphire", "modulename": "catppuccin.models", "qualname": "FlavorColors.sapphire", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.blue": {"fullname": "catppuccin.models.FlavorColors.blue", "modulename": "catppuccin.models", "qualname": "FlavorColors.blue", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.lavender": {"fullname": "catppuccin.models.FlavorColors.lavender", "modulename": "catppuccin.models", "qualname": "FlavorColors.lavender", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.text": {"fullname": "catppuccin.models.FlavorColors.text", "modulename": "catppuccin.models", "qualname": "FlavorColors.text", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.subtext1": {"fullname": "catppuccin.models.FlavorColors.subtext1", "modulename": "catppuccin.models", "qualname": "FlavorColors.subtext1", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.subtext0": {"fullname": "catppuccin.models.FlavorColors.subtext0", "modulename": "catppuccin.models", "qualname": "FlavorColors.subtext0", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.overlay2": {"fullname": "catppuccin.models.FlavorColors.overlay2", "modulename": "catppuccin.models", "qualname": "FlavorColors.overlay2", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.overlay1": {"fullname": "catppuccin.models.FlavorColors.overlay1", "modulename": "catppuccin.models", "qualname": "FlavorColors.overlay1", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.overlay0": {"fullname": "catppuccin.models.FlavorColors.overlay0", "modulename": "catppuccin.models", "qualname": "FlavorColors.overlay0", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.surface2": {"fullname": "catppuccin.models.FlavorColors.surface2", "modulename": "catppuccin.models", "qualname": "FlavorColors.surface2", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.surface1": {"fullname": "catppuccin.models.FlavorColors.surface1", "modulename": "catppuccin.models", "qualname": "FlavorColors.surface1", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.surface0": {"fullname": "catppuccin.models.FlavorColors.surface0", "modulename": "catppuccin.models", "qualname": "FlavorColors.surface0", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.base": {"fullname": "catppuccin.models.FlavorColors.base", "modulename": "catppuccin.models", "qualname": "FlavorColors.base", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.mantle": {"fullname": "catppuccin.models.FlavorColors.mantle", "modulename": "catppuccin.models", "qualname": "FlavorColors.mantle", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.FlavorColors.crust": {"fullname": "catppuccin.models.FlavorColors.crust", "modulename": "catppuccin.models", "qualname": "FlavorColors.crust", "kind": "variable", "doc": "

@public

\n", "annotation": ": catppuccin.models.Color"}, "catppuccin.models.Color": {"fullname": "catppuccin.models.Color", "modulename": "catppuccin.models", "qualname": "Color", "kind": "class", "doc": "

A single color in the Catppuccin palette.

\n"}, "catppuccin.models.Color.name": {"fullname": "catppuccin.models.Color.name", "modulename": "catppuccin.models", "qualname": "Color.name", "kind": "variable", "doc": "

A human-readable name such as Pink or Surface0.

\n", "annotation": ": str"}, "catppuccin.models.Color.identifier": {"fullname": "catppuccin.models.Color.identifier", "modulename": "catppuccin.models", "qualname": "Color.identifier", "kind": "variable", "doc": "

The lowercase key used to identify the color. This differs from name in\nthat it's intended for machine usage rather than presentation.

\n", "annotation": ": str"}, "catppuccin.models.Color.accent": {"fullname": "catppuccin.models.Color.accent", "modulename": "catppuccin.models", "qualname": "Color.accent", "kind": "variable", "doc": "

Whether the color is considered an accent color. Accent colors are the\nfirst 14 colors in the palette, also called the analogous colours. The\nremaining 12 non-accent colors are also referred to as the monochromatic\ncolors.

\n", "annotation": ": bool"}, "catppuccin.models.Color.order": {"fullname": "catppuccin.models.Color.order", "modulename": "catppuccin.models", "qualname": "Color.order", "kind": "variable", "doc": "

Order of the color in the palette spec.

\n", "annotation": ": int"}, "catppuccin.models.Color.hex": {"fullname": "catppuccin.models.Color.hex", "modulename": "catppuccin.models", "qualname": "Color.hex", "kind": "variable", "doc": "

The color represented as a six-digit hex string with a leading hash (#).

\n", "annotation": ": str"}, "catppuccin.models.Color.rgb": {"fullname": "catppuccin.models.Color.rgb", "modulename": "catppuccin.models", "qualname": "Color.rgb", "kind": "variable", "doc": "

The color represented as individual red, green, and blue channels. (0-255)

\n", "annotation": ": catppuccin.models.RGB"}, "catppuccin.models.Color.hsl": {"fullname": "catppuccin.models.Color.hsl", "modulename": "catppuccin.models", "qualname": "Color.hsl", "kind": "variable", "doc": "

The color represented as individual hue (0-359), saturation (0-1), and\nlightness (0-1) channels.

\n", "annotation": ": catppuccin.models.HSL"}, "catppuccin.models.RGB": {"fullname": "catppuccin.models.RGB", "modulename": "catppuccin.models", "qualname": "RGB", "kind": "class", "doc": "

Color represented as red, green, and blue (all 0-255).

\n"}, "catppuccin.models.RGB.r": {"fullname": "catppuccin.models.RGB.r", "modulename": "catppuccin.models", "qualname": "RGB.r", "kind": "variable", "doc": "

@public

\n", "annotation": ": int"}, "catppuccin.models.RGB.g": {"fullname": "catppuccin.models.RGB.g", "modulename": "catppuccin.models", "qualname": "RGB.g", "kind": "variable", "doc": "

@public

\n", "annotation": ": int"}, "catppuccin.models.RGB.b": {"fullname": "catppuccin.models.RGB.b", "modulename": "catppuccin.models", "qualname": "RGB.b", "kind": "variable", "doc": "

@public

\n", "annotation": ": int"}, "catppuccin.models.HSL": {"fullname": "catppuccin.models.HSL", "modulename": "catppuccin.models", "qualname": "HSL", "kind": "class", "doc": "

Color represented as hue (0-359), saturation (0-1), and lightness (0-1).

\n"}, "catppuccin.models.HSL.h": {"fullname": "catppuccin.models.HSL.h", "modulename": "catppuccin.models", "qualname": "HSL.h", "kind": "variable", "doc": "

@public

\n", "annotation": ": float"}, "catppuccin.models.HSL.s": {"fullname": "catppuccin.models.HSL.s", "modulename": "catppuccin.models", "qualname": "HSL.s", "kind": "variable", "doc": "

@public

\n", "annotation": ": float"}, "catppuccin.models.HSL.l": {"fullname": "catppuccin.models.HSL.l", "modulename": "catppuccin.models", "qualname": "HSL.l", "kind": "variable", "doc": "

@public

\n", "annotation": ": float"}, "catppuccin.palette": {"fullname": "catppuccin.palette", "modulename": "catppuccin.palette", "kind": "module", "doc": "

Catppuccin palette definition.

\n"}}, "docInfo": {"catppuccin": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 627}, "catppuccin.extras": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "catppuccin.extras.matplotlib": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 869}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 18}, "catppuccin.extras.matplotlib.load_color": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 13}, "catppuccin.extras.pygments": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 198}, "catppuccin.extras.pygments.LatteStyle": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 7}, "catppuccin.extras.pygments.FrappeStyle": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 7}, "catppuccin.extras.pygments.MacchiatoStyle": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 7}, "catppuccin.extras.pygments.MochaStyle": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 7}, "catppuccin.extras.rich_ctp": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 169}, "catppuccin.models": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "catppuccin.models.Palette": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 44}, "catppuccin.models.Palette.latte": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "catppuccin.models.Palette.frappe": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "catppuccin.models.Palette.macchiato": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "catppuccin.models.Palette.mocha": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "catppuccin.models.Flavor": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 22}, "catppuccin.models.Flavor.name": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "catppuccin.models.Flavor.identifier": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 27}, "catppuccin.models.Flavor.order": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "catppuccin.models.Flavor.dark": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 20}, "catppuccin.models.Flavor.colors": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 29}, "catppuccin.models.FlavorColors.rosewater": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.flamingo": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.pink": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.mauve": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.red": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.maroon": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.peach": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.yellow": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.green": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.teal": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.sky": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.sapphire": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.blue": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.lavender": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.text": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.subtext1": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.subtext0": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.overlay2": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.overlay1": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.overlay0": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.surface2": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.surface1": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.surface0": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.base": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.mantle": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.FlavorColors.crust": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.Color": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "catppuccin.models.Color.name": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "catppuccin.models.Color.identifier": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 28}, "catppuccin.models.Color.accent": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 40}, "catppuccin.models.Color.order": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "catppuccin.models.Color.hex": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 17}, "catppuccin.models.Color.rgb": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 15}, "catppuccin.models.Color.hsl": {"qualname": 2, "fullname": 4, "annotation": 4, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "catppuccin.models.RGB": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "catppuccin.models.RGB.r": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.RGB.g": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.RGB.b": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.HSL": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "catppuccin.models.HSL.h": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.HSL.s": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.models.HSL.l": {"qualname": 2, "fullname": 4, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "catppuccin.palette": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}}, "length": 67, "save": true}, "index": {"qualname": {"root": {"docs": {}, "df": 0, "g": {"docs": {"catppuccin.models.RGB.g": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin.models.FlavorColors.green": {"tf": 1}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.extras.matplotlib.load_color": {"tf": 1}, "catppuccin.models.Color": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1}, "catppuccin.models.Color.order": {"tf": 1}, "catppuccin.models.Color.hex": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}}, "df": 9, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"catppuccin.models.Flavor.colors": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.FlavorColors.crust": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Palette.frappe": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments.FrappeStyle": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.Flavor": {"tf": 1}, "catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1}, "catppuccin.models.Flavor.colors": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.models.FlavorColors": {"tf": 1}, "catppuccin.models.FlavorColors.rosewater": {"tf": 1}, "catppuccin.models.FlavorColors.flamingo": {"tf": 1}, "catppuccin.models.FlavorColors.pink": {"tf": 1}, "catppuccin.models.FlavorColors.mauve": {"tf": 1}, "catppuccin.models.FlavorColors.red": {"tf": 1}, "catppuccin.models.FlavorColors.maroon": {"tf": 1}, "catppuccin.models.FlavorColors.peach": {"tf": 1}, "catppuccin.models.FlavorColors.yellow": {"tf": 1}, "catppuccin.models.FlavorColors.green": {"tf": 1}, "catppuccin.models.FlavorColors.teal": {"tf": 1}, "catppuccin.models.FlavorColors.sky": {"tf": 1}, "catppuccin.models.FlavorColors.sapphire": {"tf": 1}, "catppuccin.models.FlavorColors.blue": {"tf": 1}, "catppuccin.models.FlavorColors.lavender": {"tf": 1}, "catppuccin.models.FlavorColors.text": {"tf": 1}, "catppuccin.models.FlavorColors.subtext1": {"tf": 1}, "catppuccin.models.FlavorColors.subtext0": {"tf": 1}, "catppuccin.models.FlavorColors.overlay2": {"tf": 1}, "catppuccin.models.FlavorColors.overlay1": {"tf": 1}, "catppuccin.models.FlavorColors.overlay0": {"tf": 1}, "catppuccin.models.FlavorColors.surface2": {"tf": 1}, "catppuccin.models.FlavorColors.surface1": {"tf": 1}, "catppuccin.models.FlavorColors.surface0": {"tf": 1}, "catppuccin.models.FlavorColors.base": {"tf": 1}, "catppuccin.models.FlavorColors.mantle": {"tf": 1}, "catppuccin.models.FlavorColors.crust": {"tf": 1}}, "df": 27}}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {"catppuccin.models.FlavorColors.flamingo": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {"catppuccin.models.HSL.l": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.extras.matplotlib.load_color": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Palette.latte": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments.LatteStyle": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.FlavorColors.lavender": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"catppuccin.models.Palette.macchiato": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments.MacchiatoStyle": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.FlavorColors.mauve": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin.models.FlavorColors.maroon": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.FlavorColors.mantle": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {"catppuccin.models.Palette.mocha": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments.MochaStyle": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Palette.latte": {"tf": 1}, "catppuccin.models.Palette.frappe": {"tf": 1}, "catppuccin.models.Palette.macchiato": {"tf": 1}, "catppuccin.models.Palette.mocha": {"tf": 1}}, "df": 5}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"catppuccin.models.FlavorColors.pink": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"catppuccin.models.FlavorColors.peach": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 2}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.Color.order": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"0": {"docs": {"catppuccin.models.FlavorColors.overlay0": {"tf": 1}}, "df": 1}, "1": {"docs": {"catppuccin.models.FlavorColors.overlay1": {"tf": 1}}, "df": 1}, "2": {"docs": {"catppuccin.models.FlavorColors.overlay2": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"catppuccin.models.Flavor.dark": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {"catppuccin.models.RGB.r": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.FlavorColors.rosewater": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.models.FlavorColors.red": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "b": {"docs": {"catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.RGB": {"tf": 1}, "catppuccin.models.RGB.r": {"tf": 1}, "catppuccin.models.RGB.g": {"tf": 1}, "catppuccin.models.RGB.b": {"tf": 1}}, "df": 5}}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"catppuccin.models.FlavorColors.yellow": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin.models.FlavorColors.teal": {"tf": 1}}, "df": 1}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.FlavorColors.text": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"catppuccin.models.HSL.s": {"tf": 1}}, "df": 1, "k": {"docs": {}, "df": 0, "y": {"docs": {"catppuccin.models.FlavorColors.sky": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.FlavorColors.sapphire": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"0": {"docs": {"catppuccin.models.FlavorColors.subtext0": {"tf": 1}}, "df": 1}, "1": {"docs": {"catppuccin.models.FlavorColors.subtext1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"0": {"docs": {"catppuccin.models.FlavorColors.surface0": {"tf": 1}}, "df": 1}, "1": {"docs": {"catppuccin.models.FlavorColors.surface1": {"tf": 1}}, "df": 1}, "2": {"docs": {"catppuccin.models.FlavorColors.surface2": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}, "b": {"docs": {"catppuccin.models.RGB.b": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.FlavorColors.blue": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.FlavorColors.base": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {"catppuccin.models.HSL.h": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "x": {"docs": {"catppuccin.models.Color.hex": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin.models.Color.hsl": {"tf": 1}, "catppuccin.models.HSL": {"tf": 1}, "catppuccin.models.HSL.h": {"tf": 1}, "catppuccin.models.HSL.s": {"tf": 1}, "catppuccin.models.HSL.l": {"tf": 1}}, "df": 5}}}}}, "fullname": {"root": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}, "catppuccin.extras.matplotlib.load_color": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.pygments.LatteStyle": {"tf": 1}, "catppuccin.extras.pygments.FrappeStyle": {"tf": 1}, "catppuccin.extras.pygments.MacchiatoStyle": {"tf": 1}, "catppuccin.extras.pygments.MochaStyle": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}, "catppuccin.models": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Palette.latte": {"tf": 1}, "catppuccin.models.Palette.frappe": {"tf": 1}, "catppuccin.models.Palette.macchiato": {"tf": 1}, "catppuccin.models.Palette.mocha": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}, "catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1}, "catppuccin.models.Flavor.colors": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}, "catppuccin.models.FlavorColors.rosewater": {"tf": 1}, "catppuccin.models.FlavorColors.flamingo": {"tf": 1}, "catppuccin.models.FlavorColors.pink": {"tf": 1}, "catppuccin.models.FlavorColors.mauve": {"tf": 1}, "catppuccin.models.FlavorColors.red": {"tf": 1}, "catppuccin.models.FlavorColors.maroon": {"tf": 1}, "catppuccin.models.FlavorColors.peach": {"tf": 1}, "catppuccin.models.FlavorColors.yellow": {"tf": 1}, "catppuccin.models.FlavorColors.green": {"tf": 1}, "catppuccin.models.FlavorColors.teal": {"tf": 1}, "catppuccin.models.FlavorColors.sky": {"tf": 1}, "catppuccin.models.FlavorColors.sapphire": {"tf": 1}, "catppuccin.models.FlavorColors.blue": {"tf": 1}, "catppuccin.models.FlavorColors.lavender": {"tf": 1}, "catppuccin.models.FlavorColors.text": {"tf": 1}, "catppuccin.models.FlavorColors.subtext1": {"tf": 1}, "catppuccin.models.FlavorColors.subtext0": {"tf": 1}, "catppuccin.models.FlavorColors.overlay2": {"tf": 1}, "catppuccin.models.FlavorColors.overlay1": {"tf": 1}, "catppuccin.models.FlavorColors.overlay0": {"tf": 1}, "catppuccin.models.FlavorColors.surface2": {"tf": 1}, "catppuccin.models.FlavorColors.surface1": {"tf": 1}, "catppuccin.models.FlavorColors.surface0": {"tf": 1}, "catppuccin.models.FlavorColors.base": {"tf": 1}, "catppuccin.models.FlavorColors.mantle": {"tf": 1}, "catppuccin.models.FlavorColors.crust": {"tf": 1}, "catppuccin.models.Color": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1}, "catppuccin.models.Color.order": {"tf": 1}, "catppuccin.models.Color.hex": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}, "catppuccin.models.RGB": {"tf": 1}, "catppuccin.models.RGB.r": {"tf": 1}, "catppuccin.models.RGB.g": {"tf": 1}, "catppuccin.models.RGB.b": {"tf": 1}, "catppuccin.models.HSL": {"tf": 1}, "catppuccin.models.HSL.h": {"tf": 1}, "catppuccin.models.HSL.s": {"tf": 1}, "catppuccin.models.HSL.l": {"tf": 1}, "catppuccin.palette": {"tf": 1}}, "df": 67}}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.extras.matplotlib.load_color": {"tf": 1}, "catppuccin.models.Color": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1}, "catppuccin.models.Color.order": {"tf": 1}, "catppuccin.models.Color.hex": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}}, "df": 9, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"catppuccin.models.Flavor.colors": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "p": {"docs": {"catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.FlavorColors.crust": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}, "catppuccin.extras.matplotlib.load_color": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.pygments.LatteStyle": {"tf": 1}, "catppuccin.extras.pygments.FrappeStyle": {"tf": 1}, "catppuccin.extras.pygments.MacchiatoStyle": {"tf": 1}, "catppuccin.extras.pygments.MochaStyle": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 10}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}, "catppuccin.extras.matplotlib.load_color": {"tf": 1}}, "df": 3}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"catppuccin.models.Palette.macchiato": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments.MacchiatoStyle": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.FlavorColors.mauve": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin.models.FlavorColors.maroon": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.FlavorColors.mantle": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {"catppuccin.models.Palette.mocha": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments.MochaStyle": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.models": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Palette.latte": {"tf": 1}, "catppuccin.models.Palette.frappe": {"tf": 1}, "catppuccin.models.Palette.macchiato": {"tf": 1}, "catppuccin.models.Palette.mocha": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}, "catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1}, "catppuccin.models.Flavor.colors": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}, "catppuccin.models.FlavorColors.rosewater": {"tf": 1}, "catppuccin.models.FlavorColors.flamingo": {"tf": 1}, "catppuccin.models.FlavorColors.pink": {"tf": 1}, "catppuccin.models.FlavorColors.mauve": {"tf": 1}, "catppuccin.models.FlavorColors.red": {"tf": 1}, "catppuccin.models.FlavorColors.maroon": {"tf": 1}, "catppuccin.models.FlavorColors.peach": {"tf": 1}, "catppuccin.models.FlavorColors.yellow": {"tf": 1}, "catppuccin.models.FlavorColors.green": {"tf": 1}, "catppuccin.models.FlavorColors.teal": {"tf": 1}, "catppuccin.models.FlavorColors.sky": {"tf": 1}, "catppuccin.models.FlavorColors.sapphire": {"tf": 1}, "catppuccin.models.FlavorColors.blue": {"tf": 1}, "catppuccin.models.FlavorColors.lavender": {"tf": 1}, "catppuccin.models.FlavorColors.text": {"tf": 1}, "catppuccin.models.FlavorColors.subtext1": {"tf": 1}, "catppuccin.models.FlavorColors.subtext0": {"tf": 1}, "catppuccin.models.FlavorColors.overlay2": {"tf": 1}, "catppuccin.models.FlavorColors.overlay1": {"tf": 1}, "catppuccin.models.FlavorColors.overlay0": {"tf": 1}, "catppuccin.models.FlavorColors.surface2": {"tf": 1}, "catppuccin.models.FlavorColors.surface1": {"tf": 1}, "catppuccin.models.FlavorColors.surface0": {"tf": 1}, "catppuccin.models.FlavorColors.base": {"tf": 1}, "catppuccin.models.FlavorColors.mantle": {"tf": 1}, "catppuccin.models.FlavorColors.crust": {"tf": 1}, "catppuccin.models.Color": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1}, "catppuccin.models.Color.order": {"tf": 1}, "catppuccin.models.Color.hex": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}, "catppuccin.models.RGB": {"tf": 1}, "catppuccin.models.RGB.r": {"tf": 1}, "catppuccin.models.RGB.g": {"tf": 1}, "catppuccin.models.RGB.b": {"tf": 1}, "catppuccin.models.HSL": {"tf": 1}, "catppuccin.models.HSL.h": {"tf": 1}, "catppuccin.models.HSL.s": {"tf": 1}, "catppuccin.models.HSL.l": {"tf": 1}}, "df": 55}}}}}}, "g": {"docs": {"catppuccin.models.RGB.g": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin.models.FlavorColors.green": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Palette.frappe": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments.FrappeStyle": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.Flavor": {"tf": 1}, "catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1}, "catppuccin.models.Flavor.colors": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.models.FlavorColors": {"tf": 1}, "catppuccin.models.FlavorColors.rosewater": {"tf": 1}, "catppuccin.models.FlavorColors.flamingo": {"tf": 1}, "catppuccin.models.FlavorColors.pink": {"tf": 1}, "catppuccin.models.FlavorColors.mauve": {"tf": 1}, "catppuccin.models.FlavorColors.red": {"tf": 1}, "catppuccin.models.FlavorColors.maroon": {"tf": 1}, "catppuccin.models.FlavorColors.peach": {"tf": 1}, "catppuccin.models.FlavorColors.yellow": {"tf": 1}, "catppuccin.models.FlavorColors.green": {"tf": 1}, "catppuccin.models.FlavorColors.teal": {"tf": 1}, "catppuccin.models.FlavorColors.sky": {"tf": 1}, "catppuccin.models.FlavorColors.sapphire": {"tf": 1}, "catppuccin.models.FlavorColors.blue": {"tf": 1}, "catppuccin.models.FlavorColors.lavender": {"tf": 1}, "catppuccin.models.FlavorColors.text": {"tf": 1}, "catppuccin.models.FlavorColors.subtext1": {"tf": 1}, "catppuccin.models.FlavorColors.subtext0": {"tf": 1}, "catppuccin.models.FlavorColors.overlay2": {"tf": 1}, "catppuccin.models.FlavorColors.overlay1": {"tf": 1}, "catppuccin.models.FlavorColors.overlay0": {"tf": 1}, "catppuccin.models.FlavorColors.surface2": {"tf": 1}, "catppuccin.models.FlavorColors.surface1": {"tf": 1}, "catppuccin.models.FlavorColors.surface0": {"tf": 1}, "catppuccin.models.FlavorColors.base": {"tf": 1}, "catppuccin.models.FlavorColors.mantle": {"tf": 1}, "catppuccin.models.FlavorColors.crust": {"tf": 1}}, "df": 27}}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {"catppuccin.models.FlavorColors.flamingo": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {"catppuccin.models.HSL.l": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.extras.matplotlib.load_color": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Palette.latte": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments.LatteStyle": {"tf": 1}}, "df": 1}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.FlavorColors.lavender": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.pygments.LatteStyle": {"tf": 1}, "catppuccin.extras.pygments.FrappeStyle": {"tf": 1}, "catppuccin.extras.pygments.MacchiatoStyle": {"tf": 1}, "catppuccin.extras.pygments.MochaStyle": {"tf": 1}}, "df": 5}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Palette.latte": {"tf": 1}, "catppuccin.models.Palette.frappe": {"tf": 1}, "catppuccin.models.Palette.macchiato": {"tf": 1}, "catppuccin.models.Palette.mocha": {"tf": 1}, "catppuccin.palette": {"tf": 1}}, "df": 6}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"catppuccin.models.FlavorColors.pink": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"catppuccin.models.FlavorColors.peach": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {"catppuccin.models.RGB.r": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.FlavorColors.rosewater": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.models.FlavorColors.red": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "b": {"docs": {"catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.RGB": {"tf": 1}, "catppuccin.models.RGB.r": {"tf": 1}, "catppuccin.models.RGB.g": {"tf": 1}, "catppuccin.models.RGB.b": {"tf": 1}}, "df": 5}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 2}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.Color.order": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"0": {"docs": {"catppuccin.models.FlavorColors.overlay0": {"tf": 1}}, "df": 1}, "1": {"docs": {"catppuccin.models.FlavorColors.overlay1": {"tf": 1}}, "df": 1}, "2": {"docs": {"catppuccin.models.FlavorColors.overlay2": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"catppuccin.models.Flavor.dark": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"catppuccin.models.FlavorColors.yellow": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin.models.FlavorColors.teal": {"tf": 1}}, "df": 1}}, "x": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.FlavorColors.text": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"catppuccin.models.HSL.s": {"tf": 1}}, "df": 1, "k": {"docs": {}, "df": 0, "y": {"docs": {"catppuccin.models.FlavorColors.sky": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.FlavorColors.sapphire": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"0": {"docs": {"catppuccin.models.FlavorColors.subtext0": {"tf": 1}}, "df": 1}, "1": {"docs": {"catppuccin.models.FlavorColors.subtext1": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"0": {"docs": {"catppuccin.models.FlavorColors.surface0": {"tf": 1}}, "df": 1}, "1": {"docs": {"catppuccin.models.FlavorColors.surface1": {"tf": 1}}, "df": 1}, "2": {"docs": {"catppuccin.models.FlavorColors.surface2": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}}, "b": {"docs": {"catppuccin.models.RGB.b": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.FlavorColors.blue": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.FlavorColors.base": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {"catppuccin.models.HSL.h": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "x": {"docs": {"catppuccin.models.Color.hex": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin.models.Color.hsl": {"tf": 1}, "catppuccin.models.HSL": {"tf": 1}, "catppuccin.models.HSL.h": {"tf": 1}, "catppuccin.models.HSL.s": {"tf": 1}, "catppuccin.models.HSL.l": {"tf": 1}}, "df": 5}}}}}, "annotation": {"root": {"docs": {"catppuccin.models.Palette.latte": {"tf": 1}, "catppuccin.models.Palette.frappe": {"tf": 1}, "catppuccin.models.Palette.macchiato": {"tf": 1}, "catppuccin.models.Palette.mocha": {"tf": 1}, "catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1}, "catppuccin.models.Flavor.colors": {"tf": 1}, "catppuccin.models.FlavorColors.rosewater": {"tf": 1}, "catppuccin.models.FlavorColors.flamingo": {"tf": 1}, "catppuccin.models.FlavorColors.pink": {"tf": 1}, "catppuccin.models.FlavorColors.mauve": {"tf": 1}, "catppuccin.models.FlavorColors.red": {"tf": 1}, "catppuccin.models.FlavorColors.maroon": {"tf": 1}, "catppuccin.models.FlavorColors.peach": {"tf": 1}, "catppuccin.models.FlavorColors.yellow": {"tf": 1}, "catppuccin.models.FlavorColors.green": {"tf": 1}, "catppuccin.models.FlavorColors.teal": {"tf": 1}, "catppuccin.models.FlavorColors.sky": {"tf": 1}, "catppuccin.models.FlavorColors.sapphire": {"tf": 1}, "catppuccin.models.FlavorColors.blue": {"tf": 1}, "catppuccin.models.FlavorColors.lavender": {"tf": 1}, "catppuccin.models.FlavorColors.text": {"tf": 1}, "catppuccin.models.FlavorColors.subtext1": {"tf": 1}, "catppuccin.models.FlavorColors.subtext0": {"tf": 1}, "catppuccin.models.FlavorColors.overlay2": {"tf": 1}, "catppuccin.models.FlavorColors.overlay1": {"tf": 1}, "catppuccin.models.FlavorColors.overlay0": {"tf": 1}, "catppuccin.models.FlavorColors.surface2": {"tf": 1}, "catppuccin.models.FlavorColors.surface1": {"tf": 1}, "catppuccin.models.FlavorColors.surface0": {"tf": 1}, "catppuccin.models.FlavorColors.base": {"tf": 1}, "catppuccin.models.FlavorColors.mantle": {"tf": 1}, "catppuccin.models.FlavorColors.crust": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1}, "catppuccin.models.Color.order": {"tf": 1}, "catppuccin.models.Color.hex": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}, "catppuccin.models.RGB.r": {"tf": 1}, "catppuccin.models.RGB.g": {"tf": 1}, "catppuccin.models.RGB.b": {"tf": 1}, "catppuccin.models.HSL.h": {"tf": 1}, "catppuccin.models.HSL.s": {"tf": 1}, "catppuccin.models.HSL.l": {"tf": 1}}, "df": 48, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin.models.Palette.latte": {"tf": 1}, "catppuccin.models.Palette.frappe": {"tf": 1}, "catppuccin.models.Palette.macchiato": {"tf": 1}, "catppuccin.models.Palette.mocha": {"tf": 1}, "catppuccin.models.Flavor.colors": {"tf": 1}, "catppuccin.models.FlavorColors.rosewater": {"tf": 1}, "catppuccin.models.FlavorColors.flamingo": {"tf": 1}, "catppuccin.models.FlavorColors.pink": {"tf": 1}, "catppuccin.models.FlavorColors.mauve": {"tf": 1}, "catppuccin.models.FlavorColors.red": {"tf": 1}, "catppuccin.models.FlavorColors.maroon": {"tf": 1}, "catppuccin.models.FlavorColors.peach": {"tf": 1}, "catppuccin.models.FlavorColors.yellow": {"tf": 1}, "catppuccin.models.FlavorColors.green": {"tf": 1}, "catppuccin.models.FlavorColors.teal": {"tf": 1}, "catppuccin.models.FlavorColors.sky": {"tf": 1}, "catppuccin.models.FlavorColors.sapphire": {"tf": 1}, "catppuccin.models.FlavorColors.blue": {"tf": 1}, "catppuccin.models.FlavorColors.lavender": {"tf": 1}, "catppuccin.models.FlavorColors.text": {"tf": 1}, "catppuccin.models.FlavorColors.subtext1": {"tf": 1}, "catppuccin.models.FlavorColors.subtext0": {"tf": 1}, "catppuccin.models.FlavorColors.overlay2": {"tf": 1}, "catppuccin.models.FlavorColors.overlay1": {"tf": 1}, "catppuccin.models.FlavorColors.overlay0": {"tf": 1}, "catppuccin.models.FlavorColors.surface2": {"tf": 1}, "catppuccin.models.FlavorColors.surface1": {"tf": 1}, "catppuccin.models.FlavorColors.surface0": {"tf": 1}, "catppuccin.models.FlavorColors.base": {"tf": 1}, "catppuccin.models.FlavorColors.mantle": {"tf": 1}, "catppuccin.models.FlavorColors.crust": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}}, "df": 33}}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.FlavorColors.rosewater": {"tf": 1}, "catppuccin.models.FlavorColors.flamingo": {"tf": 1}, "catppuccin.models.FlavorColors.pink": {"tf": 1}, "catppuccin.models.FlavorColors.mauve": {"tf": 1}, "catppuccin.models.FlavorColors.red": {"tf": 1}, "catppuccin.models.FlavorColors.maroon": {"tf": 1}, "catppuccin.models.FlavorColors.peach": {"tf": 1}, "catppuccin.models.FlavorColors.yellow": {"tf": 1}, "catppuccin.models.FlavorColors.green": {"tf": 1}, "catppuccin.models.FlavorColors.teal": {"tf": 1}, "catppuccin.models.FlavorColors.sky": {"tf": 1}, "catppuccin.models.FlavorColors.sapphire": {"tf": 1}, "catppuccin.models.FlavorColors.blue": {"tf": 1}, "catppuccin.models.FlavorColors.lavender": {"tf": 1}, "catppuccin.models.FlavorColors.text": {"tf": 1}, "catppuccin.models.FlavorColors.subtext1": {"tf": 1}, "catppuccin.models.FlavorColors.subtext0": {"tf": 1}, "catppuccin.models.FlavorColors.overlay2": {"tf": 1}, "catppuccin.models.FlavorColors.overlay1": {"tf": 1}, "catppuccin.models.FlavorColors.overlay0": {"tf": 1}, "catppuccin.models.FlavorColors.surface2": {"tf": 1}, "catppuccin.models.FlavorColors.surface1": {"tf": 1}, "catppuccin.models.FlavorColors.surface0": {"tf": 1}, "catppuccin.models.FlavorColors.base": {"tf": 1}, "catppuccin.models.FlavorColors.mantle": {"tf": 1}, "catppuccin.models.FlavorColors.crust": {"tf": 1}}, "df": 26}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.models.Palette.latte": {"tf": 1}, "catppuccin.models.Palette.frappe": {"tf": 1}, "catppuccin.models.Palette.macchiato": {"tf": 1}, "catppuccin.models.Palette.mocha": {"tf": 1}, "catppuccin.models.Flavor.colors": {"tf": 1}, "catppuccin.models.FlavorColors.rosewater": {"tf": 1}, "catppuccin.models.FlavorColors.flamingo": {"tf": 1}, "catppuccin.models.FlavorColors.pink": {"tf": 1}, "catppuccin.models.FlavorColors.mauve": {"tf": 1}, "catppuccin.models.FlavorColors.red": {"tf": 1}, "catppuccin.models.FlavorColors.maroon": {"tf": 1}, "catppuccin.models.FlavorColors.peach": {"tf": 1}, "catppuccin.models.FlavorColors.yellow": {"tf": 1}, "catppuccin.models.FlavorColors.green": {"tf": 1}, "catppuccin.models.FlavorColors.teal": {"tf": 1}, "catppuccin.models.FlavorColors.sky": {"tf": 1}, "catppuccin.models.FlavorColors.sapphire": {"tf": 1}, "catppuccin.models.FlavorColors.blue": {"tf": 1}, "catppuccin.models.FlavorColors.lavender": {"tf": 1}, "catppuccin.models.FlavorColors.text": {"tf": 1}, "catppuccin.models.FlavorColors.subtext1": {"tf": 1}, "catppuccin.models.FlavorColors.subtext0": {"tf": 1}, "catppuccin.models.FlavorColors.overlay2": {"tf": 1}, "catppuccin.models.FlavorColors.overlay1": {"tf": 1}, "catppuccin.models.FlavorColors.overlay0": {"tf": 1}, "catppuccin.models.FlavorColors.surface2": {"tf": 1}, "catppuccin.models.FlavorColors.surface1": {"tf": 1}, "catppuccin.models.FlavorColors.surface0": {"tf": 1}, "catppuccin.models.FlavorColors.base": {"tf": 1}, "catppuccin.models.FlavorColors.mantle": {"tf": 1}, "catppuccin.models.FlavorColors.crust": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}}, "df": 33}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.Palette.latte": {"tf": 1}, "catppuccin.models.Palette.frappe": {"tf": 1}, "catppuccin.models.Palette.macchiato": {"tf": 1}, "catppuccin.models.Palette.mocha": {"tf": 1}}, "df": 4, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.models.Flavor.colors": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.HSL.h": {"tf": 1}, "catppuccin.models.HSL.s": {"tf": 1}, "catppuccin.models.HSL.l": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}, "catppuccin.models.Color.hex": {"tf": 1}}, "df": 5}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.Color.order": {"tf": 1}, "catppuccin.models.RGB.r": {"tf": 1}, "catppuccin.models.RGB.g": {"tf": 1}, "catppuccin.models.RGB.b": {"tf": 1}}, "df": 5}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin.models.Flavor.dark": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {"catppuccin.models.Color.rgb": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin.models.Color.hsl": {"tf": 1}}, "df": 1}}}}}, "default_value": {"root": {"docs": {}, "df": 0}}, "signature": {"root": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 6.244997998398398}, "catppuccin.extras.matplotlib.load_color": {"tf": 4.898979485566356}}, "df": 2, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}, "catppuccin.extras.matplotlib.load_color": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}, "catppuccin.extras.matplotlib.load_color": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1.4142135623730951}, "catppuccin.extras.matplotlib.load_color": {"tf": 1.7320508075688772}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}, "catppuccin.extras.matplotlib.load_color": {"tf": 1}}, "df": 2, "s": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras.pygments.LatteStyle": {"tf": 1}, "catppuccin.extras.pygments.FrappeStyle": {"tf": 1}, "catppuccin.extras.pygments.MacchiatoStyle": {"tf": 1}, "catppuccin.extras.pygments.MochaStyle": {"tf": 1}}, "df": 4}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments.LatteStyle": {"tf": 1.4142135623730951}, "catppuccin.extras.pygments.FrappeStyle": {"tf": 1.4142135623730951}, "catppuccin.extras.pygments.MacchiatoStyle": {"tf": 1.4142135623730951}, "catppuccin.extras.pygments.MochaStyle": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}, "doc": {"root": {"0": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1.7320508075688772}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1.7320508075688772}, "catppuccin.models.RGB": {"tf": 1}, "catppuccin.models.HSL": {"tf": 1.7320508075688772}}, "df": 5}, "1": {"2": {"docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1}, "4": {"8": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}, "docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1}, "docs": {"catppuccin.extras.matplotlib": {"tf": 2.449489742783178}, "catppuccin.models.Color.hsl": {"tf": 1.4142135623730951}, "catppuccin.models.HSL": {"tf": 1.4142135623730951}}, "df": 3}, "2": {"1": {"3": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "2": {"6": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "3": {"2": {"6": {"3": {"4": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"5": {"docs": {"catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.RGB": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "9": {"2": {"docs": {}, "df": 0, "c": {"3": {"docs": {}, "df": 0, "c": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}, "docs": {"catppuccin.extras.matplotlib": {"tf": 2.6457513110645907}}, "df": 1}, "3": {"0": {"3": {"4": {"4": {"6": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"catppuccin.extras.matplotlib": {"tf": 1.4142135623730951}}, "df": 1}, "5": {"9": {"docs": {"catppuccin.models.Color.hsl": {"tf": 1}, "catppuccin.models.HSL": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "9": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"catppuccin.extras.matplotlib": {"tf": 2.449489742783178}}, "df": 1}, "4": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1.7320508075688772}}, "df": 1}, "8": {"8": {"3": {"9": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"catppuccin": {"tf": 20.273134932713294}, "catppuccin.extras": {"tf": 1.7320508075688772}, "catppuccin.extras.matplotlib": {"tf": 25.357444666211933}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 2.23606797749979}, "catppuccin.extras.matplotlib.load_color": {"tf": 1.7320508075688772}, "catppuccin.extras.pygments": {"tf": 10.04987562112089}, "catppuccin.extras.pygments.LatteStyle": {"tf": 1.7320508075688772}, "catppuccin.extras.pygments.FrappeStyle": {"tf": 1.7320508075688772}, "catppuccin.extras.pygments.MacchiatoStyle": {"tf": 1.7320508075688772}, "catppuccin.extras.pygments.MochaStyle": {"tf": 1.7320508075688772}, "catppuccin.extras.rich_ctp": {"tf": 10.535653752852738}, "catppuccin.models": {"tf": 1.7320508075688772}, "catppuccin.models.Palette": {"tf": 2.8284271247461903}, "catppuccin.models.Palette.latte": {"tf": 1.7320508075688772}, "catppuccin.models.Palette.frappe": {"tf": 1.7320508075688772}, "catppuccin.models.Palette.macchiato": {"tf": 1.7320508075688772}, "catppuccin.models.Palette.mocha": {"tf": 1.7320508075688772}, "catppuccin.models.Flavor": {"tf": 2.449489742783178}, "catppuccin.models.Flavor.name": {"tf": 2.6457513110645907}, "catppuccin.models.Flavor.identifier": {"tf": 2}, "catppuccin.models.Flavor.order": {"tf": 1.7320508075688772}, "catppuccin.models.Flavor.dark": {"tf": 1.7320508075688772}, "catppuccin.models.Flavor.colors": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors": {"tf": 2.449489742783178}, "catppuccin.models.FlavorColors.rosewater": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.flamingo": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.pink": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.mauve": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.red": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.maroon": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.peach": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.yellow": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.green": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.teal": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.sky": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.sapphire": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.blue": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.lavender": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.text": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.subtext1": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.subtext0": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.overlay2": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.overlay1": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.overlay0": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.surface2": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.surface1": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.surface0": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.base": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.mantle": {"tf": 1.4142135623730951}, "catppuccin.models.FlavorColors.crust": {"tf": 1.4142135623730951}, "catppuccin.models.Color": {"tf": 1.7320508075688772}, "catppuccin.models.Color.name": {"tf": 2.6457513110645907}, "catppuccin.models.Color.identifier": {"tf": 2.23606797749979}, "catppuccin.models.Color.accent": {"tf": 1.7320508075688772}, "catppuccin.models.Color.order": {"tf": 1.7320508075688772}, "catppuccin.models.Color.hex": {"tf": 2}, "catppuccin.models.Color.rgb": {"tf": 1.7320508075688772}, "catppuccin.models.Color.hsl": {"tf": 1.7320508075688772}, "catppuccin.models.RGB": {"tf": 1.7320508075688772}, "catppuccin.models.RGB.r": {"tf": 1.4142135623730951}, "catppuccin.models.RGB.g": {"tf": 1.4142135623730951}, "catppuccin.models.RGB.b": {"tf": 1.4142135623730951}, "catppuccin.models.HSL": {"tf": 1.7320508075688772}, "catppuccin.models.HSL.h": {"tf": 1.4142135623730951}, "catppuccin.models.HSL.s": {"tf": 1.4142135623730951}, "catppuccin.models.HSL.l": {"tf": 1.4142135623730951}, "catppuccin.palette": {"tf": 1.7320508075688772}}, "df": 67, "s": {"docs": {"catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 2, "o": {"docs": {"catppuccin": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.models": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}}, "df": 3, "s": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"catppuccin.models.Color.hex": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.matplotlib": {"tf": 2}, "catppuccin.extras.pygments": {"tf": 2}, "catppuccin.extras.pygments.LatteStyle": {"tf": 1}, "catppuccin.extras.pygments.FrappeStyle": {"tf": 1}, "catppuccin.extras.pygments.MacchiatoStyle": {"tf": 1}, "catppuccin.extras.pygments.MochaStyle": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 7, "s": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1.7320508075688772}}, "df": 2, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"0": {"docs": {"catppuccin.models.Color.name": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1}}, "df": 2}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"catppuccin.extras.matplotlib": {"tf": 2}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Color": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {"catppuccin.models.Color.hex": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.Color.order": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin.models.Color.hsl": {"tf": 1}, "catppuccin.models.HSL": {"tf": 1}}, "df": 2}}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 3.605551275463989}, "catppuccin.extras.matplotlib": {"tf": 2}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}, "catppuccin.extras.matplotlib.load_color": {"tf": 1}, "catppuccin.models": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1.4142135623730951}, "catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.Color": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1}, "catppuccin.models.Color.order": {"tf": 1}, "catppuccin.palette": {"tf": 1}}, "df": 11}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 1.4142135623730951}, "catppuccin.extras.pygments": {"tf": 1}}, "df": 2, "s": {"docs": {"catppuccin.extras": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.FlavorColors": {"tf": 1}}, "df": 1}}}}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 2.6457513110645907}, "catppuccin.extras.pygments.LatteStyle": {"tf": 1}, "catppuccin.extras.pygments.FrappeStyle": {"tf": 1}, "catppuccin.extras.pygments.MacchiatoStyle": {"tf": 1}, "catppuccin.extras.pygments.MochaStyle": {"tf": 1}}, "df": 6}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.extras.matplotlib": {"tf": 2}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin": {"tf": 1.7320508075688772}, "catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"catppuccin.models.Palette": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 2}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"catppuccin": {"tf": 1.4142135623730951}, "catppuccin.models.Color.name": {"tf": 1}}, "df": 2}}, "p": {"docs": {"catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.extras.matplotlib": {"tf": 3.4641016151377544}}, "df": 1}, "o": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1.7320508075688772}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1.4142135623730951}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"catppuccin.models.Flavor.colors": {"tf": 1}, "catppuccin.models.FlavorColors.rosewater": {"tf": 1}, "catppuccin.models.FlavorColors.flamingo": {"tf": 1}, "catppuccin.models.FlavorColors.pink": {"tf": 1}, "catppuccin.models.FlavorColors.mauve": {"tf": 1}, "catppuccin.models.FlavorColors.red": {"tf": 1}, "catppuccin.models.FlavorColors.maroon": {"tf": 1}, "catppuccin.models.FlavorColors.peach": {"tf": 1}, "catppuccin.models.FlavorColors.yellow": {"tf": 1}, "catppuccin.models.FlavorColors.green": {"tf": 1}, "catppuccin.models.FlavorColors.teal": {"tf": 1}, "catppuccin.models.FlavorColors.sky": {"tf": 1}, "catppuccin.models.FlavorColors.sapphire": {"tf": 1}, "catppuccin.models.FlavorColors.blue": {"tf": 1}, "catppuccin.models.FlavorColors.lavender": {"tf": 1}, "catppuccin.models.FlavorColors.text": {"tf": 1}, "catppuccin.models.FlavorColors.subtext1": {"tf": 1}, "catppuccin.models.FlavorColors.subtext0": {"tf": 1}, "catppuccin.models.FlavorColors.overlay2": {"tf": 1}, "catppuccin.models.FlavorColors.overlay1": {"tf": 1}, "catppuccin.models.FlavorColors.overlay0": {"tf": 1}, "catppuccin.models.FlavorColors.surface2": {"tf": 1}, "catppuccin.models.FlavorColors.surface1": {"tf": 1}, "catppuccin.models.FlavorColors.surface0": {"tf": 1}, "catppuccin.models.FlavorColors.base": {"tf": 1}, "catppuccin.models.FlavorColors.mantle": {"tf": 1}, "catppuccin.models.FlavorColors.crust": {"tf": 1}, "catppuccin.models.RGB.r": {"tf": 1}, "catppuccin.models.RGB.g": {"tf": 1}, "catppuccin.models.RGB.b": {"tf": 1}, "catppuccin.models.HSL.h": {"tf": 1}, "catppuccin.models.HSL.s": {"tf": 1}, "catppuccin.models.HSL.l": {"tf": 1}}, "df": 33}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 2.6457513110645907}, "catppuccin.extras": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 2}, "catppuccin.extras.matplotlib.load_color": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 2.23606797749979}, "catppuccin.extras.rich_ctp": {"tf": 1.7320508075688772}, "catppuccin.models": {"tf": 1}, "catppuccin.models.Palette": {"tf": 2.23606797749979}, "catppuccin.models.Palette.latte": {"tf": 1}, "catppuccin.models.Palette.frappe": {"tf": 1}, "catppuccin.models.Palette.macchiato": {"tf": 1}, "catppuccin.models.Palette.mocha": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1.4142135623730951}, "catppuccin.models.Flavor.order": {"tf": 1.4142135623730951}, "catppuccin.models.Flavor.dark": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1.4142135623730951}, "catppuccin.models.Color": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1.4142135623730951}, "catppuccin.models.Color.accent": {"tf": 2.449489742783178}, "catppuccin.models.Color.order": {"tf": 1.4142135623730951}, "catppuccin.models.Color.hex": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}}, "df": 23, "m": {"docs": {"catppuccin.extras.pygments": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}}, "y": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin": {"tf": 1.4142135623730951}, "catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 6}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 4}, "n": {"docs": {"catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 2, "k": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Flavor.dark": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {"catppuccin": {"tf": 2}, "catppuccin.extras.matplotlib": {"tf": 1.4142135623730951}, "catppuccin.extras.pygments": {"tf": 1.4142135623730951}, "catppuccin.extras.rich_ctp": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1}}, "df": 7, "p": {"docs": {"catppuccin.models.Palette": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}}, "df": 2, "s": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}}, "f": {"2": {"docs": {}, "df": 0, "d": {"5": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "f": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}}}, "docs": {}, "df": 0}}, "4": {"docs": {}, "df": 0, "b": {"8": {"docs": {}, "df": 0, "e": {"4": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}}, "docs": {}, "df": 0}}, "docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1, "o": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin": {"tf": 2.6457513110645907}, "catppuccin.extras": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 2}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}, "catppuccin.extras.matplotlib.load_color": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1.4142135623730951}, "catppuccin.extras.rich_ctp": {"tf": 1}, "catppuccin.models": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 11}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"catppuccin": {"tf": 2}, "catppuccin.extras.matplotlib": {"tf": 2.23606797749979}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1.4142135623730951}, "catppuccin.extras.rich_ctp": {"tf": 1.4142135623730951}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 7}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.pygments.FrappeStyle": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}}, "df": 4, "e": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1.4142135623730951}, "catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin": {"tf": 2.449489742783178}, "catppuccin.models.Palette.latte": {"tf": 1}, "catppuccin.models.Palette.frappe": {"tf": 1}, "catppuccin.models.Palette.macchiato": {"tf": 1}, "catppuccin.models.Palette.mocha": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}}, "df": 10, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1.4142135623730951}, "catppuccin.extras.rich_ctp": {"tf": 1.4142135623730951}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1}}, "df": 6}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {"catppuccin": {"tf": 1.7320508075688772}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 2}}}}}}}, "b": {"docs": {"catppuccin": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}, "e": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}}, "df": 4, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"catppuccin.extras.pygments": {"tf": 2}}, "df": 1}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.RGB": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 3}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"catppuccin.extras.matplotlib": {"tf": 2}}, "df": 1, "d": {"docs": {"catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 3}}}}, "g": {"docs": {"catppuccin": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1.4142135623730951}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1.4142135623730951}}, "df": 4, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.RGB": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin.extras.matplotlib.load_color": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1.7320508075688772}, "catppuccin.extras.matplotlib.load_color": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1.4142135623730951}, "catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}, "catppuccin.models.Color": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}, "catppuccin.models.Color.hex": {"tf": 1.4142135623730951}}, "df": 11, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.Color.accent": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "n": {"docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1, "d": {"docs": {"catppuccin": {"tf": 2}, "catppuccin.extras.matplotlib": {"tf": 1.4142135623730951}, "catppuccin.extras.matplotlib.load_color": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}, "catppuccin.models.RGB": {"tf": 1}, "catppuccin.models.HSL": {"tf": 1}}, "df": 8}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1.4142135623730951}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1.4142135623730951}}, "df": 6}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin": {"tf": 1.4142135623730951}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}, "catppuccin.models.RGB": {"tf": 1}}, "df": 5, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1.4142135623730951}}, "df": 3}}}, "s": {"docs": {"catppuccin.extras.matplotlib": {"tf": 2.6457513110645907}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}, "catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1}, "catppuccin.models.Color.hex": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}, "catppuccin.models.RGB": {"tf": 1}, "catppuccin.models.HSL": {"tf": 1}}, "df": 11}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"catppuccin": {"tf": 1.4142135623730951}, "catppuccin.extras": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}, "catppuccin.models.Color.hex": {"tf": 1}}, "df": 6}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"catppuccin.extras.pygments": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.Flavor.dark": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {"catppuccin.extras.rich_ctp": {"tf": 1.4142135623730951}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin": {"tf": 1.7320508075688772}, "catppuccin.extras.matplotlib": {"tf": 3.1622776601683795}, "catppuccin.extras.pygments": {"tf": 3.1622776601683795}, "catppuccin.extras.pygments.LatteStyle": {"tf": 1}, "catppuccin.extras.pygments.FrappeStyle": {"tf": 1}, "catppuccin.extras.pygments.MacchiatoStyle": {"tf": 1}, "catppuccin.extras.pygments.MochaStyle": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1.7320508075688772}, "catppuccin.models": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}, "catppuccin.models.Color": {"tf": 1}, "catppuccin.palette": {"tf": 1}}, "df": 14, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}}}}}}}}, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "n": {"docs": {"catppuccin": {"tf": 1.4142135623730951}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}}, "df": 4, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin.models.Palette": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}}, "df": 2, "s": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.rich_ctp": {"tf": 2}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin": {"tf": 2.6457513110645907}, "catppuccin.extras.matplotlib": {"tf": 2.23606797749979}, "catppuccin.extras.matplotlib.load_color": {"tf": 1.4142135623730951}, "catppuccin.models.Color": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1.4142135623730951}, "catppuccin.models.Color.order": {"tf": 1}, "catppuccin.models.Color.hex": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}, "catppuccin.models.RGB": {"tf": 1}, "catppuccin.models.HSL": {"tf": 1}}, "df": 12, "s": {"docs": {"catppuccin": {"tf": 2.449489742783178}, "catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1.4142135623730951}, "catppuccin.models.Color.accent": {"tf": 2}}, "df": 6}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1.4142135623730951}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 2, "s": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin.models.Flavor": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1.7320508075688772}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "p": {"docs": {"catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin": {"tf": 1.7320508075688772}, "catppuccin.extras.matplotlib": {"tf": 3.605551275463989}, "catppuccin.extras.pygments": {"tf": 1.4142135623730951}, "catppuccin.extras.rich_ctp": {"tf": 1.4142135623730951}}, "df": 4, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"catppuccin": {"tf": 1}}, "df": 1, "d": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}}, "df": 3}}}}}}}, "n": {"docs": {"catppuccin": {"tf": 2}, "catppuccin.models.Palette": {"tf": 1.4142135623730951}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1.4142135623730951}, "catppuccin.models.Color": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}, "catppuccin.models.Color.accent": {"tf": 1}, "catppuccin.models.Color.order": {"tf": 1}}, "df": 9, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin.extras.pygments": {"tf": 1.4142135623730951}, "catppuccin.extras.rich_ctp": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras": {"tf": 1}}, "df": 2, "s": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 2, "s": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}}, "df": 3}}}}}}}}}, "s": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1.4142135623730951}, "catppuccin.models.Color.accent": {"tf": 1}}, "df": 5}, "f": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.extras.matplotlib": {"tf": 2}}, "df": 1}}}, "y": {"docs": {"catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 2}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 1.7320508075688772}, "catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.pygments.LatteStyle": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}, "catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1}}, "df": 9}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1.4142135623730951}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 3}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}}, "n": {"docs": {}, "df": 0, "k": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.Palette.latte": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1.4142135623730951}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.Palette.frappe": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.models.Color.hsl": {"tf": 1}, "catppuccin.models.HSL": {"tf": 1}}, "df": 2}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.extras.matplotlib": {"tf": 2}, "catppuccin.extras.matplotlib.load_color": {"tf": 1}}, "df": 2}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin.models.Palette": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"catppuccin.models.Color.hex": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 3.1622776601683795}, "catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}}, "df": 3}}}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.pygments.MacchiatoStyle": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}}, "df": 6, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 2}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {"catppuccin": {"tf": 1.4142135623730951}, "catppuccin.extras.matplotlib": {"tf": 1.4142135623730951}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.pygments.MochaStyle": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1.4142135623730951}, "catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}, "catppuccin.models.Flavor.name": {"tf": 1}}, "df": 8}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"catppuccin.models.Palette.macchiato": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin.extras.matplotlib": {"tf": 2.23606797749979}}, "df": 1}}, "i": {"docs": {}, "df": 0, "x": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"catppuccin": {"tf": 2}, "catppuccin.models.Color.hex": {"tf": 1}}, "df": 2}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.models.Flavor": {"tf": 1}}, "df": 1, "h": {"docs": {"catppuccin.models.Color.hex": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"catppuccin.models.Color.hsl": {"tf": 1}, "catppuccin.models.HSL": {"tf": 1}}, "df": 2}}}, "r": {"docs": {"catppuccin": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "b": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.RGB": {"tf": 1}}, "df": 3}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}}, "df": 2}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.models.Color.hex": {"tf": 1}, "catppuccin.models.Color.rgb": {"tf": 1}, "catppuccin.models.Color.hsl": {"tf": 1}, "catppuccin.models.RGB": {"tf": 1}, "catppuccin.models.HSL": {"tf": 1}}, "df": 5}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 2}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1.7320508075688772}}, "df": 1}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 2}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"catppuccin": {"tf": 1.4142135623730951}, "catppuccin.extras.matplotlib": {"tf": 1.4142135623730951}, "catppuccin.models": {"tf": 1}, "catppuccin.models.Palette": {"tf": 1}}, "df": 4, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.models": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {"catppuccin.models.Palette.frappe": {"tf": 1}, "catppuccin.models.Palette.macchiato": {"tf": 1}, "catppuccin.models.Palette.mocha": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1.4142135623730951}}, "df": 4, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.Palette.mocha": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin.palette": {"tf": 1}}, "df": 1, "s": {"docs": {"catppuccin.models": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 2}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin.models.Color.hex": {"tf": 1}}, "df": 1}}}}}, "j": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {"catppuccin": {"tf": 1}}, "df": 1, "r": {"docs": {"catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 2}, "catppuccin.extras.matplotlib.load_color": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1.7320508075688772}, "catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 7, "s": {"docs": {"catppuccin": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1.4142135623730951}}, "df": 1}, "o": {"docs": {}, "df": 0, "n": {"docs": {"catppuccin.models.Color.accent": {"tf": 1}}, "df": 1}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"catppuccin": {"tf": 2}, "catppuccin.extras.matplotlib": {"tf": 3.4641016151377544}, "catppuccin.extras.pygments": {"tf": 1.4142135623730951}, "catppuccin.extras.rich_ctp": {"tf": 2}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "t": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin": {"tf": 1}}, "df": 1, "s": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras": {"tf": 1}, "catppuccin.extras.matplotlib": {"tf": 1.4142135623730951}, "catppuccin.extras.pygments": {"tf": 1.4142135623730951}, "catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 4}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.extras.pygments": {"tf": 1}}, "df": 1}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"catppuccin.models.Palette": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.extras": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {"catppuccin.models.Flavor.name": {"tf": 1}, "catppuccin.models.Flavor.dark": {"tf": 1}, "catppuccin.models.Color.name": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"catppuccin.extras.matplotlib": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"catppuccin.models.Flavor.dark": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}, "catppuccin.models.Color.order": {"tf": 1}}, "df": 4}}}}, "f": {"docs": {"catppuccin.extras.matplotlib.get_colormap_from_list": {"tf": 1}, "catppuccin.extras.pygments": {"tf": 1}, "catppuccin.extras.rich_ctp": {"tf": 1}, "catppuccin.models.Flavor": {"tf": 1}, "catppuccin.models.Flavor.order": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1.4142135623730951}, "catppuccin.models.Color.order": {"tf": 1}}, "df": 7}, "n": {"docs": {}, "df": 0, "e": {"docs": {"catppuccin.extras.rich_ctp": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"catppuccin.models.Palette": {"tf": 1}, "catppuccin.models.FlavorColors": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {"catppuccin.models.Palette": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"catppuccin.models.Flavor.identifier": {"tf": 1}, "catppuccin.models.Color.identifier": {"tf": 1}}, "df": 2}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; + + // mirrored in build-search-index.js (part 1) + // Also split on html tags. this is a cheap heuristic, but good enough. + elasticlunr.tokenizer.setSeperator(/[\s\-.;&_'"=,()]+|<[^>]*>/); + + let searchIndex; + if (docs._isPrebuiltIndex) { + console.info("using precompiled search index"); + searchIndex = elasticlunr.Index.load(docs); + } else { + console.time("building search index"); + // mirrored in build-search-index.js (part 2) + searchIndex = elasticlunr(function () { + this.pipeline.remove(elasticlunr.stemmer); + this.pipeline.remove(elasticlunr.stopWordFilter); + this.addField("qualname"); + this.addField("fullname"); + this.addField("annotation"); + this.addField("default_value"); + this.addField("signature"); + this.addField("bases"); + this.addField("doc"); + this.setRef("fullname"); + }); + for (let doc of docs) { + searchIndex.addDoc(doc); + } + console.timeEnd("building search index"); + } + + return (term) => searchIndex.search(term, { + fields: { + qualname: {boost: 4}, + fullname: {boost: 2}, + annotation: {boost: 2}, + default_value: {boost: 2}, + signature: {boost: 2}, + bases: {boost: 2}, + doc: {boost: 1}, + }, + expand: true + }); +})(); \ No newline at end of file