Skip to content

omnipy.shared.enums.colorstyles

CLASS DESCRIPTION
AllColorStyles

All color styles available for syntax highlighting. See superclasses for

DarkColorStyles

All dark color styles for syntax highlighting. See subclasses for more

DarkHighContrastColorStyles

All dark, high contrast color styles for syntax highlighting. See

DarkHighContrastPygmentsColorStyles
DarkHighContrastTintedThemingBase16ColorStyles
DarkLowContrastColorStyles

All dark, lower contrast color styles for syntax highlighting. See

DarkLowContrastPygmentsColorStyles
DarkLowContrastTintedThemingBase16ColorStyles
DarkTintedThemingBase16ColorStyles
LightColorStyles

All light color styles for syntax highlighting. See subclasses for more

LightHighContrastColorStyles

All light, high contrast color styles for syntax highlighting. See

LightHighContrastPygmentsColorStyles
LightHighContrastTintedThemingBase16ColorStyles
LightLowContrastColorStyles

All light, lower contrast color styles for syntax highlighting. See

LightLowContrastPygmentsColorStyles
LightLowContrastTintedThemingBase16ColorStyles
LightTintedThemingBase16ColorStyles
RecommendedColorStyles

Recommended color styles for syntax highlighting, provided through the

TintedThemingBase16ColorStyles

AllColorStyles

Bases: RecommendedColorStyles, DarkColorStyles, LightColorStyles, TintedThemingBase16ColorStyles

All color styles available for syntax highlighting. See superclasses for more details on the color styles.

METHOD DESCRIPTION
get_supercls_for_random_choice

Returns the superclass that contains the given choice.

ATTRIBUTE DESCRIPTION
Literals

RANDOM_ALL

TYPE: Literal['random']

Source code in src/omnipy/shared/enums/colorstyles.py
class AllColorStyles(
        RecommendedColorStyles,
        DarkColorStyles,
        LightColorStyles,
        TintedThemingBase16ColorStyles,
):
    """
    All color styles available for syntax highlighting. See superclasses for
    more details on the color styles.
    """

    Literals = Literal[RecommendedColorStyles.Literals,
                       DarkColorStyles.Literals,
                       LightColorStyles.Literals,
                       TintedThemingBase16ColorStyles.Literals,
                       'random']

    RANDOM_ALL: Literal['random'] = 'random'

    @classmethod
    def get_supercls_for_random_choice(
            cls, choice: 'AllColorStyles.Literals | str') -> type[LiteralEnum[str]] | None:
        """
        Returns the superclass that contains the given choice.
        """
        for supercls in reversed(cls.__mro__):
            if (issubclass(supercls, LiteralEnum) and supercls is not LiteralEnum
                    and choice in supercls):
                return supercls

Literals class-attribute instance-attribute

RANDOM_ALL class-attribute instance-attribute

RANDOM_ALL: Literal['random'] = 'random'

get_supercls_for_random_choice classmethod

get_supercls_for_random_choice(
    choice: AllColorStyles.Literals | str,
) -> type[LiteralEnum[str]] | None

Returns the superclass that contains the given choice.

Source code in src/omnipy/shared/enums/colorstyles.py
@classmethod
def get_supercls_for_random_choice(
        cls, choice: 'AllColorStyles.Literals | str') -> type[LiteralEnum[str]] | None:
    """
    Returns the superclass that contains the given choice.
    """
    for supercls in reversed(cls.__mro__):
        if (issubclass(supercls, LiteralEnum) and supercls is not LiteralEnum
                and choice in supercls):
            return supercls

DarkColorStyles

Bases: DarkHighContrastColorStyles, DarkLowContrastColorStyles

All dark color styles for syntax highlighting. See subclasses for more details on the color styles.

ATTRIBUTE DESCRIPTION
Literals

RANDOM_DARK

TYPE: Literal['random-dark']

Source code in src/omnipy/shared/enums/colorstyles.py
class DarkColorStyles(
        DarkHighContrastColorStyles,
        DarkLowContrastColorStyles,
):
    """
    All dark color styles for syntax highlighting. See subclasses for more
    details on the color styles.
    """

    Literals = Literal[DarkHighContrastColorStyles.Literals,
                       DarkLowContrastColorStyles.Literals,
                       'random-dark']

    RANDOM_DARK: Literal['random-dark'] = 'random-dark'

Literals class-attribute instance-attribute

RANDOM_DARK class-attribute instance-attribute

RANDOM_DARK: Literal['random-dark'] = 'random-dark'

DarkHighContrastColorStyles

Bases: DarkHighContrastTintedThemingBase16ColorStyles, DarkHighContrastPygmentsColorStyles

All dark, high contrast color styles for syntax highlighting. See subclasses for more details on the color styles.

ATTRIBUTE DESCRIPTION
Literals

RANDOM_DARK_HIGH_CONTRAST

TYPE: Literal['random-dark-high']

Source code in src/omnipy/shared/enums/colorstyles.py
class DarkHighContrastColorStyles(
        DarkHighContrastTintedThemingBase16ColorStyles,
        DarkHighContrastPygmentsColorStyles,
):
    """
    All dark, high contrast color styles for syntax highlighting. See
    subclasses for more details on the color styles.
    """

    Literals = Literal[DarkHighContrastTintedThemingBase16ColorStyles.Literals,
                       DarkHighContrastPygmentsColorStyles.Literals,
                       'random-dark-high']

    RANDOM_DARK_HIGH_CONTRAST: Literal['random-dark-high'] = 'random-dark-high'

Literals class-attribute instance-attribute

RANDOM_DARK_HIGH_CONTRAST class-attribute instance-attribute

RANDOM_DARK_HIGH_CONTRAST: Literal['random-dark-high'] = 'random-dark-high'

DarkHighContrastPygmentsColorStyles

Bases: LiteralEnum[str]

ATTRIBUTE DESCRIPTION
GITHUB_DARK_PYGMENTS

TYPE: Literal['github-dark-pygments']

LIGHTBULB_PYGMENTS

TYPE: Literal['lightbulb-pygments']

Literals

MONOKAI_PYGMENTS

TYPE: Literal['monokai-pygments']

RRT_PYGMENTS

TYPE: Literal['rrt-pygments']

Source code in src/omnipy/shared/enums/colorstyles.py
class DarkHighContrastPygmentsColorStyles(LiteralEnum[str]):
    __doc__ = (
        dedent("""
        High contrast dark color styles for syntax highlighting, """)
        + _GENERAL_PYGMENTS_COLOR_STYLE_DOCSTRING)

    Literals = Literal[
        'github-dark-pygments',
        'lightbulb-pygments',
        'monokai-pygments',
        'rrt-pygments',
    ]

    GITHUB_DARK_PYGMENTS: Literal['github-dark-pygments'] = 'github-dark-pygments'
    LIGHTBULB_PYGMENTS: Literal['lightbulb-pygments'] = 'lightbulb-pygments'
    MONOKAI_PYGMENTS: Literal['monokai-pygments'] = 'monokai-pygments'
    RRT_PYGMENTS: Literal['rrt-pygments'] = 'rrt-pygments'

GITHUB_DARK_PYGMENTS class-attribute instance-attribute

GITHUB_DARK_PYGMENTS: Literal['github-dark-pygments'] = 'github-dark-pygments'

LIGHTBULB_PYGMENTS class-attribute instance-attribute

LIGHTBULB_PYGMENTS: Literal['lightbulb-pygments'] = 'lightbulb-pygments'

Literals class-attribute instance-attribute

Literals = Literal["github-dark-pygments", "lightbulb-pygments", "monokai-pygments", "rrt-pygments"]

MONOKAI_PYGMENTS class-attribute instance-attribute

MONOKAI_PYGMENTS: Literal['monokai-pygments'] = 'monokai-pygments'

RRT_PYGMENTS class-attribute instance-attribute

RRT_PYGMENTS: Literal['rrt-pygments'] = 'rrt-pygments'

DarkHighContrastTintedThemingBase16ColorStyles

Bases: LiteralEnum[str]

ATTRIBUTE DESCRIPTION
APATHY_T16

Apathy: Base-16 color style by "Jannik Siebert".

TYPE: Literal['apathy-t16']

ASHES_T16

Ashes: Base-16 color style by "Jannik Siebert".

TYPE: Literal['ashes-t16']

ATELIER_CAVE_T16

Atelier Cave: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-cave-t16']

ATELIER_DUNE_T16

Atelier Dune: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-dune-t16']

ATELIER_ESTUARY_T16

Atelier Estuary: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-estuary-t16']

ATELIER_FOREST_T16

Atelier Forest: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-forest-t16']

ATELIER_HEATH_T16

Atelier Heath: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-heath-t16']

ATELIER_LAKESIDE_T16

Atelier Lakeside: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-lakeside-t16']

ATELIER_PLATEAU_T16

Atelier Plateau: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-plateau-t16']

ATELIER_SAVANNA_T16

Atelier Savanna: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-savanna-t16']

ATELIER_SEASIDE_T16

Atelier Seaside: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-seaside-t16']

ATELIER_SULPHURPOOL_T16

Atelier Sulphurpool: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-sulphurpool-t16']

ATLAS_T16

Atlas: Base-16 color style by "Alex Lende".

TYPE: Literal['atlas-t16']

AYU_DARK_T16

Ayu Dark: Base-16 color style by "Khue Nguyen".

TYPE: Literal['ayu-dark-t16']

AYU_MIRAGE_T16

Ayu Mirage: Base-16 color style by "Khue Nguyen".

TYPE: Literal['ayu-mirage-t16']

AZTEC_T16

Aztec: Base-16 color style by "TheNeverMan".

TYPE: Literal['aztec-t16']

BESPIN_T16

Bespin: Base-16 color style by "Jan T. Sott".

TYPE: Literal['bespin-t16']

BLACK_METAL_BATHORY_T16

Black Metal (Bathory): Base-16 color style by "metalelf0".

TYPE: Literal['black-metal-bathory-t16']

BLACK_METAL_BURZUM_T16

Black Metal (Burzum): Base-16 color style by "metalelf0".

TYPE: Literal['black-metal-burzum-t16']

BLACK_METAL_DARK_FUNERAL_T16

Black Metal (Dark Funeral): Base-16 color style by "metalelf0".

TYPE: Literal['black-metal-dark-funeral-t16']

BLACK_METAL_GORGOROTH_T16

Black Metal (Gorgoroth): Base-16 color style by "metalelf0".

TYPE: Literal['black-metal-gorgoroth-t16']

BLACK_METAL_IMMORTAL_T16

Black Metal (Immortal): Base-16 color style by "metalelf0".

TYPE: Literal['black-metal-immortal-t16']

BLACK_METAL_KHOLD_T16

Black Metal (Khold): Base-16 color style by "metalelf0".

TYPE: Literal['black-metal-khold-t16']

BLACK_METAL_MARDUK_T16

Black Metal (Marduk): Base-16 color style by "metalelf0".

TYPE: Literal['black-metal-marduk-t16']

BLACK_METAL_MAYHEM_T16

Black Metal (Mayhem): Base-16 color style by "metalelf0".

TYPE: Literal['black-metal-mayhem-t16']

BLACK_METAL_NILE_T16

Black Metal (Nile): Base-16 color style by "metalelf0".

TYPE: Literal['black-metal-nile-t16']

BLACK_METAL_T16

Black Metal: Base-16 color style by "metalelf0".

TYPE: Literal['black-metal-t16']

BLACK_METAL_VENOM_T16

Black Metal (Venom): Base-16 color style by "metalelf0".

TYPE: Literal['black-metal-venom-t16']

BLUEFOREST_T16

Blue Forest: Base-16 color style by "alonsodomin".

TYPE: Literal['blueforest-t16']

BLUEISH_T16

Blueish: Base-16 color style by "Ben Mayoras".

TYPE: Literal['blueish-t16']

BREWER_T16

Brewer: Base-16 color style by "Timothée Poisot".

TYPE: Literal['brewer-t16']

BRIGHT_T16

Bright: Base-16 color style by "Chris Kempson".

TYPE: Literal['bright-t16']

CAROLINE_T16

caroline: Base-16 color style by "ed".

TYPE: Literal['caroline-t16']

CATPPUCCIN_FRAPPE_T16

Catppuccin Frappe: Base-16 color style.

TYPE: Literal['catppuccin-frappe-t16']

CATPPUCCIN_MACCHIATO_T16

Catppuccin Macchiato: Base-16 color style.

TYPE: Literal['catppuccin-macchiato-t16']

CATPPUCCIN_MOCHA_T16

Catppuccin Mocha: Base-16 color style.

TYPE: Literal['catppuccin-mocha-t16']

CHALK_T16

Chalk: Base-16 color style by "Chris Kempson".

TYPE: Literal['chalk-t16']

CHARCOAL_DARK_T16

Charcoal Dark: Base-16 color style by "Mubin Muhammad".

TYPE: Literal['charcoal-dark-t16']

CHICAGO_NIGHT_T16

Chicago Night: Base-16 color style by "Wendell, Ryan".

TYPE: Literal['chicago-night-t16']

CHINOISERIE_MIDNIGHT_T16

Chinoiserie Midnight: Base-16 color style by "Di Wang".

TYPE: Literal['chinoiserie-midnight-t16']

CHINOISERIE_MORANDI_T16

Chinoiserie Morandi: Base-16 color style by "Di Wang".

TYPE: Literal['chinoiserie-morandi-t16']

CHINOISERIE_NIGHT_T16

Chinoiserie Night: Base-16 color style by "Di Wang".

TYPE: Literal['chinoiserie-night-t16']

CIRCUS_T16

Circus: Base-16 color style by "Stephan Boyer".

TYPE: Literal['circus-t16']

CLASSIC_DARK_T16

Classic Dark: Base-16 color style by "Jason Heeris".

TYPE: Literal['classic-dark-t16']

CODESCHOOL_T16

Codeschool: Base-16 color style by "blockloop".

TYPE: Literal['codeschool-t16']

COLORS_T16

Colors: Base-16 color style by "mrmrs".

TYPE: Literal['colors-t16']

DANQING_T16

DanQing: Base-16 color style by "Wenhan Zhu".

TYPE: Literal['danqing-t16']

DARCULA_T16

Darcula: Base-16 color style by "jetbrains".

TYPE: Literal['darcula-t16']

DARKMOSS_T16

darkmoss: Base-16 color style by "Gabriel Avanzi".

TYPE: Literal['darkmoss-t16']

DARKTOOTH_T16

Darktooth: Base-16 color style by "Jason Milkins".

TYPE: Literal['darktooth-t16']

DARKVIOLET_T16

Dark Violet: Base-16 color style by "ruler501".

TYPE: Literal['darkviolet-t16']

DA_ONE_BLACK_T16

Da One Black: Base-16 color style by "NNB".

TYPE: Literal['da-one-black-t16']

DA_ONE_GRAY_T16

Da One Gray: Base-16 color style by "NNB".

TYPE: Literal['da-one-gray-t16']

DA_ONE_OCEAN_T16

Da One Ocean: Base-16 color style by "NNB".

TYPE: Literal['da-one-ocean-t16']

DA_ONE_SEA_T16

Da One Sea: Base-16 color style by "NNB".

TYPE: Literal['da-one-sea-t16']

DECAF_T16

Decaf: Base-16 color style by "Alex Mirrington".

TYPE: Literal['decaf-t16']

DEEP_OCEANIC_NEXT_T16

Deep Oceanic Next: Base-16 color style by "spearkkk".

TYPE: Literal['deep-oceanic-next-t16']

DEFAULT_DARK_T16

Default Dark: Base-16 color style by "Chris Kempson".

TYPE: Literal['default-dark-t16']

DIGITAL_RAIN_T16

Digital Rain: Base-16 color style by "Nathan Byrd".

TYPE: Literal['digital-rain-t16']

DRACULA_T16

Dracula: Base-16 color style by "Jamy Golden".

TYPE: Literal['dracula-t16']

EDGE_DARK_T16

Edge Dark: Base-16 color style by "cjayross".

TYPE: Literal['edge-dark-t16']

EIGHTIES_T16

Eighties: Base-16 color style by "Chris Kempson".

TYPE: Literal['eighties-t16']

EMBERS_T16

Embers: Base-16 color style by "Jannik Siebert".

TYPE: Literal['embers-t16']

EQUILIBRIUM_DARK_T16

Equilibrium Dark: Base-16 color style by "Carlo Abelli".

TYPE: Literal['equilibrium-dark-t16']

EQUILIBRIUM_GRAY_DARK_T16

Equilibrium Gray Dark: Base-16 color style by "Carlo Abelli".

TYPE: Literal['equilibrium-gray-dark-t16']

ESPRESSO_T16

Espresso: Base-16 color style by "Unknown. Maintained by Alex

TYPE: Literal['espresso-t16']

EVENOK_DARK_T16

Evenok Dark: Base-16 color style by "Mekeor Melire".

TYPE: Literal['evenok-dark-t16']

EVERFOREST_DARK_HARD_T16

Everforest Dark Hard: Base-16 color style by "Sainnhe Park".

TYPE: Literal['everforest-dark-hard-t16']

EVERFOREST_DARK_SOFT_T16

Everforest Dark Soft: Base-16 color style by "Sainnhe Park".

TYPE: Literal['everforest-dark-soft-t16']

EVERFOREST_T16

Everforest: Base-16 color style by "Sainnhe Park".

TYPE: Literal['everforest-t16']

FLAT_T16

Flat: Base-16 color style by "Chris Kempson".

TYPE: Literal['flat-t16']

FRAMER_T16

Framer: Base-16 color style by "Framer".

TYPE: Literal['framer-t16']

GIGAVOLT_T16

Gigavolt: Base-16 color style by "Aidan Swope".

TYPE: Literal['gigavolt-t16']

GITHUB_DARK_T16

Github Dark: Base-16 color style by "Tinted Theming".

TYPE: Literal['github-dark-t16']

GOOGLE_DARK_T16

Google Dark: Base-16 color style by "Seth Wright".

TYPE: Literal['google-dark-t16']

GOTHAM_T16

Gotham: Base-16 color style by "Andrea Leopardi".

TYPE: Literal['gotham-t16']

GRAYSCALE_DARK_T16

Grayscale Dark: Base-16 color style by "Alexandre Gavioli".

TYPE: Literal['grayscale-dark-t16']

GREENSCREEN_T16

Green Screen: Base-16 color style by "Chris Kempson".

TYPE: Literal['greenscreen-t16']

GRUBER_T16

Gruber: Base-16 color style by "Patel, Nimai, colors from

TYPE: Literal['gruber-t16']

GRUVBOX_DARK_HARD_T16

Gruvbox dark, hard: Base-16 color style by "Dawid Kurek".

TYPE: Literal['gruvbox-dark-hard-t16']

GRUVBOX_DARK_MEDIUM_T16

Gruvbox dark, medium: Base-16 color style by "Dawid Kurek".

TYPE: Literal['gruvbox-dark-medium-t16']

GRUVBOX_DARK_PALE_T16

Gruvbox dark, pale: Base-16 color style by "Dawid Kurek".

TYPE: Literal['gruvbox-dark-pale-t16']

GRUVBOX_DARK_SOFT_T16

Gruvbox dark, soft: Base-16 color style by "Dawid Kurek".

TYPE: Literal['gruvbox-dark-soft-t16']

GRUVBOX_DARK_T16

Gruvbox dark: Base-16 color style by "Tinted Theming".

TYPE: Literal['gruvbox-dark-t16']

GRUVBOX_MATERIAL_DARK_HARD_T16

Gruvbox Material Dark, Hard: Base-16 color style by "Mayush Kumar".

TYPE: Literal['gruvbox-material-dark-hard-t16']

GRUVBOX_MATERIAL_DARK_MEDIUM_T16

Gruvbox Material Dark, Medium: Base-16 color style by "Mayush Kumar".

TYPE: Literal['gruvbox-material-dark-medium-t16']

GRUVBOX_MATERIAL_DARK_SOFT_T16

Gruvbox Material Dark, Soft: Base-16 color style by "Mayush Kumar".

TYPE: Literal['gruvbox-material-dark-soft-t16']

HARDCORE_T16

Hardcore: Base-16 color style by "Chris Caller".

TYPE: Literal['hardcore-t16']

HARDHACKER_T16

Hardhacker: Base-16 color style by "fe2-Nyxar, based on the

TYPE: Literal['hardhacker-t16']

HARMONIC16_DARK_T16

Harmonic16 Dark: Base-16 color style by "Jannik Siebert".

TYPE: Literal['harmonic16-dark-t16']

HEETCH_T16

Heetch Dark: Base-16 color style by "Geoffrey Teale".

TYPE: Literal['heetch-t16']

HELIOS_T16

Helios: Base-16 color style by "Alex Meyer".

TYPE: Literal['helios-t16']

HOPSCOTCH_T16

Hopscotch: Base-16 color style by "Jan T. Sott".

TYPE: Literal['hopscotch-t16']

HORIZON_DARK_T16

Horizon Dark: Base-16 color style by "Michaël Ball".

TYPE: Literal['horizon-dark-t16']

HORIZON_TERMINAL_DARK_T16

Horizon Terminal Dark: Base-16 color style by "Michaël Ball".

TYPE: Literal['horizon-terminal-dark-t16']

HUMANOID_DARK_T16

Humanoid dark: Base-16 color style by "Thomas Friese".

TYPE: Literal['humanoid-dark-t16']

IA_DARK_T16

iA Dark: Base-16 color style by "iA Inc.".

TYPE: Literal['ia-dark-t16']

IRBLACK_T16

IR Black: Base-16 color style by "Timothée Poisot".

TYPE: Literal['irblack-t16']

ISOTOPE_T16

Isotope: Base-16 color style by "Jan T. Sott".

TYPE: Literal['isotope-t16']

JABUTI_T16

Jabuti: Base-16 color style.

TYPE: Literal['jabuti-t16']

KANAGAWA_DRAGON_T16

Kanagawa Dragon: Base-16 color style by "Tommaso Laurenzi".

TYPE: Literal['kanagawa-dragon-t16']

KANAGAWA_T16

Kanagawa: Base-16 color style by "Tommaso Laurenzi".

TYPE: Literal['kanagawa-t16']

KATY_T16

Katy: Base-16 color style by "George Essig".

TYPE: Literal['katy-t16']

KIMBER_T16

Kimber: Base-16 color style by "Mishka Nguyen".

TYPE: Literal['kimber-t16']

LINUX_VT_T16

Linux VT: Base-16 color style by "j-c-m".

TYPE: Literal['linux-vt-t16']

Literals

MACINTOSH_T16

Macintosh: Base-16 color style by "Rebecca Bettencourt".

TYPE: Literal['macintosh-t16']

MARRAKESH_T16

Marrakesh: Base-16 color style by "Alexandre Gavioli".

TYPE: Literal['marrakesh-t16']

MATERIAL_DARKER_T16

Material Darker: Base-16 color style by "Nate Peterson".

TYPE: Literal['material-darker-t16']

MATERIAL_PALENIGHT_T16

Material Palenight: Base-16 color style by "Nate Peterson".

TYPE: Literal['material-palenight-t16']

MATERIAL_T16

Material: Base-16 color style by "Nate Peterson".

TYPE: Literal['material-t16']

MATERIA_T16

Materia: Base-16 color style by "Defman21".

TYPE: Literal['materia-t16']

MEASURED_DARK_T16

Measured Dark: Base-16 color style by "Measured".

TYPE: Literal['measured-dark-t16']

MELLOW_PURPLE_T16

Mellow Purple: Base-16 color style by "gidsi".

TYPE: Literal['mellow-purple-t16']

MOCHA_T16

Mocha: Base-16 color style by "Chris Kempson".

TYPE: Literal['mocha-t16']

MONOKAI_T16

Monokai: Base-16 color style by "Wimer Hazenberg".

TYPE: Literal['monokai-t16']

MOONLIGHT_T16

Moonlight: Base-16 color style by "Jeremy Swinarton".

TYPE: Literal['moonlight-t16']

MOUNTAIN_T16

Mountain: Base-16 color style by "gnsfujiwara".

TYPE: Literal['mountain-t16']

NEBULA_T16

Nebula: Base-16 color style by "Gabriel Fontes".

TYPE: Literal['nebula-t16']

NORD_T16

Nord: Base-16 color style by "arcticicestudio".

TYPE: Literal['nord-t16']

NOVA_T16

Nova: Base-16 color style by "George Essig".

TYPE: Literal['nova-t16']

NUMBER_0X96F_T16

0x96f: Base-16 color style by "Filip Janevski".

TYPE: Literal['0x96f-t16']

NUMBER_3024_T16

3024: Base-16 color style by "Jan T. Sott".

TYPE: Literal['3024-t16']

OCEANICNEXT_T16

OceanicNext: Base-16 color style.

TYPE: Literal['oceanicnext-t16']

OCEAN_T16

Ocean: Base-16 color style by "Chris Kempson".

TYPE: Literal['ocean-t16']

ONEDARK_DARK_T16

OneDark Dark: Base-16 color style by "olimorris".

TYPE: Literal['onedark-dark-t16']

ONEDARK_T16

OneDark: Base-16 color style by "Lalit Magant".

TYPE: Literal['onedark-t16']

OUTRUN_DARK_T16

Outrun Dark: Base-16 color style by "Hugo Delahousse".

TYPE: Literal['outrun-dark-t16']

OXOCARBON_DARK_T16

Oxocarbon Dark: Base-16 color style by "shaunsingh/IBM".

TYPE: Literal['oxocarbon-dark-t16']

PANDORA_T16

pandora: Base-16 color style by "Cassandra Fox".

TYPE: Literal['pandora-t16']

PARAISO_T16

Paraiso: Base-16 color style by "Jan T. Sott".

TYPE: Literal['paraiso-t16']

PASQUE_T16

Pasque: Base-16 color style by "Gabriel Fontes".

TYPE: Literal['pasque-t16']

PENUMBRA_DARK_CONTRAST_PLUS_PLUS_T16

Penumbra Dark Contrast Plus Plus: Base-16 color style by "Zachary

TYPE: Literal['penumbra-dark-contrast-plus-plus-t16']

PENUMBRA_DARK_CONTRAST_PLUS_T16

Penumbra Dark Contrast Plus: Base-16 color style by "Zachary Weiss".

TYPE: Literal['penumbra-dark-contrast-plus-t16']

PENUMBRA_DARK_T16

Penumbra Dark: Base-16 color style by "Zachary Weiss".

TYPE: Literal['penumbra-dark-t16']

PHD_T16

PhD: Base-16 color style by "Hennig Hasemann".

TYPE: Literal['phd-t16']

PINKY_T16

pinky: Base-16 color style by "Benjamin".

TYPE: Literal['pinky-t16']

POP_T16

Pop: Base-16 color style by "Chris Kempson".

TYPE: Literal['pop-t16']

PORPLE_T16

Porple: Base-16 color style by "Niek den Breeje".

TYPE: Literal['porple-t16']

PRECIOUS_DARK_ELEVEN_T16

Precious Dark Eleven: Base-16 color style by "4lex4".

TYPE: Literal['precious-dark-eleven-t16']

PRECIOUS_DARK_FIFTEEN_T16

Precious Dark Fifteen: Base-16 color style by "4lex4".

TYPE: Literal['precious-dark-fifteen-t16']

PRIMER_DARK_DIMMED_T16

Primer Dark Dimmed: Base-16 color style by "Jimmy Lin".

TYPE: Literal['primer-dark-dimmed-t16']

PRIMER_DARK_T16

Primer Dark: Base-16 color style by "Jimmy Lin".

TYPE: Literal['primer-dark-t16']

PURPLEDREAM_T16

Purpledream: Base-16 color style by "malet".

TYPE: Literal['purpledream-t16']

QUALIA_T16

Qualia: Base-16 color style by "isaacwhanson".

TYPE: Literal['qualia-t16']

RAILSCASTS_T16

Railscasts: Base-16 color style by "Ryan Bates".

TYPE: Literal['railscasts-t16']

RANDOM_DARK_HIGH_CONTRAST_T16

TYPE: Literal['random-dark-high-t16']

REBECCA_T16

Rebecca: Base-16 color style by "Victor Borja".

TYPE: Literal['rebecca-t16']

ROSE_PINE_MOON_T16

Rosé Pine Moon: Base-16 color style by "Emilia Dunfelt".

TYPE: Literal['rose-pine-moon-t16']

ROSE_PINE_T16

Rosé Pine: Base-16 color style by "Emilia Dunfelt".

TYPE: Literal['rose-pine-t16']

SAGA_T16

Saga

Base-16 color style.

TYPE: Literal['saga-t16']

SANDCASTLE_T16

Sandcastle: Base-16 color style by "George Essig".

TYPE: Literal['sandcastle-t16']

SELENIZED_BLACK_T16

selenized-black: Base-16 color style by "Jan Warchol / adapted to base16

TYPE: Literal['selenized-black-t16']

SELENIZED_DARK_T16

selenized-dark: Base-16 color style by "Jan Warchol / adapted to base16

TYPE: Literal['selenized-dark-t16']

SETI_T16

Seti UI: Base-16 color style by "".

TYPE: Literal['seti-t16']

SHADESMEAR_DARK_T16

ShadeSmear Dark: Base-16 color style by "Kyle Giammarco".

TYPE: Literal['shadesmear-dark-t16']

SHADES_OF_PURPLE_T16

Shades of Purple: Base-16 color style by "Iolar Demartini Junior".

TYPE: Literal['shades-of-purple-t16']

SILK_DARK_T16

Silk Dark: Base-16 color style by "Gabriel Fontes".

TYPE: Literal['silk-dark-t16']

SNAZZY_T16

Snazzy: Base-16 color style by "Chawye Hsu".

TYPE: Literal['snazzy-t16']

SOLARFLARE_T16

Solar Flare: Base-16 color style by "Chuck Harmston".

TYPE: Literal['solarflare-t16']

SOLARIZED_DARK_T16

Solarized Dark: Base-16 color style by "Ethan Schoonover".

TYPE: Literal['solarized-dark-t16']

SPACEDUCK_T16

Spaceduck: Base-16 color style by "Guillermo Rodriguez".

TYPE: Literal['spaceduck-t16']

SPACEMACS_T16

Spacemacs: Base-16 color style by "Nasser Alshammari".

TYPE: Literal['spacemacs-t16']

SPARKY_T16

Sparky: Base-16 color style by "Leila Sother".

TYPE: Literal['sparky-t16']

STANDARDIZED_DARK_T16

standardized-dark: Base-16 color style by "ali".

TYPE: Literal['standardized-dark-t16']

STELLA_T16

Stella: Base-16 color style by "Shrimpram".

TYPE: Literal['stella-t16']

SUMMERFRUIT_DARK_T16

Summerfruit Dark: Base-16 color style by "Christopher Corley".

TYPE: Literal['summerfruit-dark-t16']

SYNTH_MIDNIGHT_DARK_T16

Synth Midnight Terminal Dark: Base-16 color style by "Michaël Ball".

TYPE: Literal['synth-midnight-dark-t16']

TANGO_T16

Tango: Base-16 color style by "@Schnouki, based on the Tango Desktop

TYPE: Literal['tango-t16']

TENDER_T16

tender: Base-16 color style by "Jacobo Tabernero".

TYPE: Literal['tender-t16']

TERRACOTTA_DARK_T16

Terracotta Dark: Base-16 color style by "Alexander Rossell Hayes".

TYPE: Literal['terracotta-dark-t16']

TOKYODARK_T16

Tokyodark: Base-16 color style by "Jamy Golden".

TYPE: Literal['tokyodark-t16']

TOKYODARK_TERMINAL_T16

Tokyodark Terminal: Base-16 color style by "Tiagovla".

TYPE: Literal['tokyodark-terminal-t16']

TOKYO_CITY_DARK_T16

Tokyo City Dark: Base-16 color style by "Michaël Ball".

TYPE: Literal['tokyo-city-dark-t16']

TOKYO_CITY_TERMINAL_DARK_T16

Tokyo City Terminal Dark: Base-16 color style by "Michaël Ball".

TYPE: Literal['tokyo-city-terminal-dark-t16']

TOKYO_NIGHT_DARK_T16

Tokyo Night Dark: Base-16 color style by "Michaël Ball".

TYPE: Literal['tokyo-night-dark-t16']

TOKYO_NIGHT_STORM_T16

Tokyo Night Storm: Base-16 color style by "Michaël Ball".

TYPE: Literal['tokyo-night-storm-t16']

TOMORROW_NIGHT_EIGHTIES_T16

Tomorrow Night Eighties: Base-16 color style by "Chris Kempson".

TYPE: Literal['tomorrow-night-eighties-t16']

TOMORROW_NIGHT_T16

Tomorrow Night: Base-16 color style by "Chris Kempson".

TYPE: Literal['tomorrow-night-t16']

TUBE_T16

London Tube: Base-16 color style by "Jan T. Sott".

TYPE: Literal['tube-t16']

TWILIGHT_T16

Twilight: Base-16 color style by "David Hart".

TYPE: Literal['twilight-t16']

UNIKITTY_DARK_T16

Unikitty Dark: Base-16 color style by "Josh W Lewis".

TYPE: Literal['unikitty-dark-t16']

UNIKITTY_REVERSIBLE_T16

Unikitty Reversible: Base-16 color style by "Josh W Lewis".

TYPE: Literal['unikitty-reversible-t16']

UWUNICORN_T16

UwUnicorn: Base-16 color style by "Fernando Marques".

TYPE: Literal['uwunicorn-t16']

VALUA_T16

Valua: Base-16 color style by "Nonetrix".

TYPE: Literal['valua-t16']

VESPER_T16

Vesper: Base-16 color style by "FormalSnake".

TYPE: Literal['vesper-t16']

VICE_T16

vice: Base-16 color style by "Thomas Leon Highbaugh".

TYPE: Literal['vice-t16']

WINDOWS_10_T16

Windows 10: Base-16 color style by "Fergus Collins".

TYPE: Literal['windows-10-t16']

WINDOWS_95_T16

Windows 95: Base-16 color style by "Fergus Collins".

TYPE: Literal['windows-95-t16']

WINDOWS_HIGHCONTRAST_T16

Windows High Contrast: Base-16 color style by "Fergus Collins".

TYPE: Literal['windows-highcontrast-t16']

WINDOWS_NT_T16

Windows NT: Base-16 color style by "Fergus Collins".

TYPE: Literal['windows-nt-t16']

WOODLAND_T16

Woodland: Base-16 color style by "Jay Cornwall".

TYPE: Literal['woodland-t16']

XCODE_DUSK_T16

XCode Dusk: Base-16 color style by "Elsa Gonsiorowski".

TYPE: Literal['xcode-dusk-t16']

ZENBONES_T16

Zenbones: Base-16 color style by "mcchrish".

TYPE: Literal['zenbones-t16']

ZENBURN_T16

Zenburn: Base-16 color style by "elnawe".

TYPE: Literal['zenburn-t16']

Source code in src/omnipy/shared/enums/colorstyles.py
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
class DarkHighContrastTintedThemingBase16ColorStyles(LiteralEnum[str]):
    f"""
    {_GENERAL_T16_COLOR_STYLE_DOCSTRING.format(description='Dark, high-contrast')}

    These styles have high-level contrast that conform to {_COLOR_CONTRAST_TEXT}
    """
    Literals = Literal['0x96f-t16',
                       '3024-t16',
                       'apathy-t16',
                       'ashes-t16',
                       'atelier-cave-t16',
                       'atelier-dune-t16',
                       'atelier-estuary-t16',
                       'atelier-forest-t16',
                       'atelier-heath-t16',
                       'atelier-lakeside-t16',
                       'atelier-plateau-t16',
                       'atelier-savanna-t16',
                       'atelier-seaside-t16',
                       'atelier-sulphurpool-t16',
                       'atlas-t16',
                       'ayu-dark-t16',
                       'ayu-mirage-t16',
                       'aztec-t16',
                       'bespin-t16',
                       'black-metal-bathory-t16',
                       'black-metal-burzum-t16',
                       'black-metal-dark-funeral-t16',
                       'black-metal-gorgoroth-t16',
                       'black-metal-immortal-t16',
                       'black-metal-khold-t16',
                       'black-metal-marduk-t16',
                       'black-metal-mayhem-t16',
                       'black-metal-nile-t16',
                       'black-metal-venom-t16',
                       'black-metal-t16',
                       'blueforest-t16',
                       'blueish-t16',
                       'brewer-t16',
                       'bright-t16',
                       'caroline-t16',
                       'catppuccin-frappe-t16',
                       'catppuccin-macchiato-t16',
                       'catppuccin-mocha-t16',
                       'charcoal-dark-t16',
                       'chalk-t16',
                       'chicago-night-t16',
                       'chinoiserie-midnight-t16',
                       'chinoiserie-morandi-t16',
                       'chinoiserie-night-t16',
                       'circus-t16',
                       'classic-dark-t16',
                       'codeschool-t16',
                       'colors-t16',
                       'da-one-black-t16',
                       'da-one-gray-t16',
                       'da-one-ocean-t16',
                       'da-one-sea-t16',
                       'danqing-t16',
                       'darcula-t16',
                       'darkmoss-t16',
                       'darktooth-t16',
                       'darkviolet-t16',
                       'decaf-t16',
                       'deep-oceanic-next-t16',
                       'default-dark-t16',
                       'digital-rain-t16',
                       'dracula-t16',
                       'edge-dark-t16',
                       'eighties-t16',
                       'embers-t16',
                       'equilibrium-dark-t16',
                       'equilibrium-gray-dark-t16',
                       'espresso-t16',
                       'evenok-dark-t16',
                       'everforest-dark-hard-t16',
                       'everforest-dark-soft-t16',
                       'everforest-t16',
                       'flat-t16',
                       'framer-t16',
                       'gigavolt-t16',
                       'github-dark-t16',
                       'google-dark-t16',
                       'gotham-t16',
                       'grayscale-dark-t16',
                       'greenscreen-t16',
                       'gruber-t16',
                       'gruvbox-dark-hard-t16',
                       'gruvbox-dark-medium-t16',
                       'gruvbox-dark-pale-t16',
                       'gruvbox-dark-soft-t16',
                       'gruvbox-dark-t16',
                       'gruvbox-material-dark-hard-t16',
                       'gruvbox-material-dark-medium-t16',
                       'gruvbox-material-dark-soft-t16',
                       'hardcore-t16',
                       'hardhacker-t16',
                       'harmonic16-dark-t16',
                       'heetch-t16',
                       'helios-t16',
                       'hopscotch-t16',
                       'horizon-dark-t16',
                       'horizon-terminal-dark-t16',
                       'humanoid-dark-t16',
                       'ia-dark-t16',
                       'irblack-t16',
                       'isotope-t16',
                       'jabuti-t16',
                       'kanagawa-dragon-t16',
                       'kanagawa-t16',
                       'katy-t16',
                       'kimber-t16',
                       'linux-vt-t16',
                       'macintosh-t16',
                       'marrakesh-t16',
                       'materia-t16',
                       'material-darker-t16',
                       'material-palenight-t16',
                       'material-t16',
                       'measured-dark-t16',
                       'mellow-purple-t16',
                       'mocha-t16',
                       'monokai-t16',
                       'moonlight-t16',
                       'mountain-t16',
                       'nebula-t16',
                       'nord-t16',
                       'nova-t16',
                       'ocean-t16',
                       'oceanicnext-t16',
                       'onedark-dark-t16',
                       'onedark-t16',
                       'outrun-dark-t16',
                       'oxocarbon-dark-t16',
                       'pandora-t16',
                       'paraiso-t16',
                       'pasque-t16',
                       'penumbra-dark-contrast-plus-plus-t16',
                       'penumbra-dark-contrast-plus-t16',
                       'penumbra-dark-t16',
                       'phd-t16',
                       'pinky-t16',
                       'pop-t16',
                       'porple-t16',
                       'precious-dark-eleven-t16',
                       'precious-dark-fifteen-t16',
                       'primer-dark-dimmed-t16',
                       'primer-dark-t16',
                       'purpledream-t16',
                       'qualia-t16',
                       'railscasts-t16',
                       'rebecca-t16',
                       'rose-pine-moon-t16',
                       'rose-pine-t16',
                       'saga-t16',
                       'sandcastle-t16',
                       'selenized-black-t16',
                       'selenized-dark-t16',
                       'seti-t16',
                       'shades-of-purple-t16',
                       'shadesmear-dark-t16',
                       'silk-dark-t16',
                       'snazzy-t16',
                       'solarflare-t16',
                       'solarized-dark-t16',
                       'spaceduck-t16',
                       'spacemacs-t16',
                       'sparky-t16',
                       'standardized-dark-t16',
                       'stella-t16',
                       'summerfruit-dark-t16',
                       'synth-midnight-dark-t16',
                       'tango-t16',
                       'tender-t16',
                       'terracotta-dark-t16',
                       'tokyo-city-dark-t16',
                       'tokyo-city-terminal-dark-t16',
                       'tokyo-night-dark-t16',
                       'tokyo-night-storm-t16',
                       'tokyodark-terminal-t16',
                       'tokyodark-t16',
                       'tomorrow-night-eighties-t16',
                       'tomorrow-night-t16',
                       'tube-t16',
                       'twilight-t16',
                       'unikitty-dark-t16',
                       'unikitty-reversible-t16',
                       'uwunicorn-t16',
                       'valua-t16',
                       'vesper-t16',
                       'vice-t16',
                       'windows-10-t16',
                       'windows-95-t16',
                       'windows-highcontrast-t16',
                       'windows-nt-t16',
                       'woodland-t16',
                       'xcode-dusk-t16',
                       'zenbones-t16',
                       'zenburn-t16',
                       'random-dark-high-t16']

    NUMBER_0X96F_T16: Literal['0x96f-t16'] = '0x96f-t16'
    """
    0x96f: Base-16 color style by "Filip Janevski".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    NUMBER_3024_T16: Literal['3024-t16'] = '3024-t16'
    """
    3024: Base-16 color style by "Jan T. Sott".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    APATHY_T16: Literal['apathy-t16'] = 'apathy-t16'
    """
    Apathy: Base-16 color style by "Jannik Siebert".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ASHES_T16: Literal['ashes-t16'] = 'ashes-t16'
    """
    Ashes: Base-16 color style by "Jannik Siebert".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_CAVE_T16: Literal['atelier-cave-t16'] = 'atelier-cave-t16'
    """
    Atelier Cave: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_DUNE_T16: Literal['atelier-dune-t16'] = 'atelier-dune-t16'
    """
    Atelier Dune: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_ESTUARY_T16: Literal['atelier-estuary-t16'] = 'atelier-estuary-t16'
    """
    Atelier Estuary: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_FOREST_T16: Literal['atelier-forest-t16'] = 'atelier-forest-t16'
    """
    Atelier Forest: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_HEATH_T16: Literal['atelier-heath-t16'] = 'atelier-heath-t16'
    """
    Atelier Heath: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_LAKESIDE_T16: Literal['atelier-lakeside-t16'] = 'atelier-lakeside-t16'
    """
    Atelier Lakeside: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_PLATEAU_T16: Literal['atelier-plateau-t16'] = 'atelier-plateau-t16'
    """
    Atelier Plateau: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_SAVANNA_T16: Literal['atelier-savanna-t16'] = 'atelier-savanna-t16'
    """
    Atelier Savanna: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_SEASIDE_T16: Literal['atelier-seaside-t16'] = 'atelier-seaside-t16'
    """
    Atelier Seaside: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_SULPHURPOOL_T16: Literal['atelier-sulphurpool-t16'] = 'atelier-sulphurpool-t16'
    """
    Atelier Sulphurpool: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATLAS_T16: Literal['atlas-t16'] = 'atlas-t16'
    """
    Atlas: Base-16 color style by "Alex Lende".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    AYU_DARK_T16: Literal['ayu-dark-t16'] = 'ayu-dark-t16'
    """
    Ayu Dark: Base-16 color style by "Khue Nguyen".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    AYU_MIRAGE_T16: Literal['ayu-mirage-t16'] = 'ayu-mirage-t16'
    """
    Ayu Mirage: Base-16 color style by "Khue Nguyen".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    AZTEC_T16: Literal['aztec-t16'] = 'aztec-t16'
    """
    Aztec: Base-16 color style by "TheNeverMan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BESPIN_T16: Literal['bespin-t16'] = 'bespin-t16'
    """
    Bespin: Base-16 color style by "Jan T. Sott".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BLACK_METAL_BATHORY_T16: Literal['black-metal-bathory-t16'] = 'black-metal-bathory-t16'
    """
    Black Metal (Bathory): Base-16 color style by "metalelf0".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BLACK_METAL_BURZUM_T16: Literal['black-metal-burzum-t16'] = 'black-metal-burzum-t16'
    """
    Black Metal (Burzum): Base-16 color style by "metalelf0".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BLACK_METAL_DARK_FUNERAL_T16: Literal[
        'black-metal-dark-funeral-t16'] = 'black-metal-dark-funeral-t16'
    """
    Black Metal (Dark Funeral): Base-16 color style by "metalelf0".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BLACK_METAL_GORGOROTH_T16: Literal['black-metal-gorgoroth-t16'] = 'black-metal-gorgoroth-t16'
    """
    Black Metal (Gorgoroth): Base-16 color style by "metalelf0".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BLACK_METAL_IMMORTAL_T16: Literal['black-metal-immortal-t16'] = 'black-metal-immortal-t16'
    """
    Black Metal (Immortal): Base-16 color style by "metalelf0".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BLACK_METAL_KHOLD_T16: Literal['black-metal-khold-t16'] = 'black-metal-khold-t16'
    """
    Black Metal (Khold): Base-16 color style by "metalelf0".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BLACK_METAL_MARDUK_T16: Literal['black-metal-marduk-t16'] = 'black-metal-marduk-t16'
    """
    Black Metal (Marduk): Base-16 color style by "metalelf0".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BLACK_METAL_MAYHEM_T16: Literal['black-metal-mayhem-t16'] = 'black-metal-mayhem-t16'
    """
    Black Metal (Mayhem): Base-16 color style by "metalelf0".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BLACK_METAL_NILE_T16: Literal['black-metal-nile-t16'] = 'black-metal-nile-t16'
    """
    Black Metal (Nile): Base-16 color style by "metalelf0".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BLACK_METAL_VENOM_T16: Literal['black-metal-venom-t16'] = 'black-metal-venom-t16'
    """
    Black Metal (Venom): Base-16 color style by "metalelf0".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BLACK_METAL_T16: Literal['black-metal-t16'] = 'black-metal-t16'
    """
    Black Metal: Base-16 color style by "metalelf0".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BLUEFOREST_T16: Literal['blueforest-t16'] = 'blueforest-t16'
    """
    Blue Forest: Base-16 color style by "alonsodomin".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BLUEISH_T16: Literal['blueish-t16'] = 'blueish-t16'
    """
    Blueish: Base-16 color style by "Ben Mayoras".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BREWER_T16: Literal['brewer-t16'] = 'brewer-t16'
    """
    Brewer: Base-16 color style by "Timothée Poisot".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    BRIGHT_T16: Literal['bright-t16'] = 'bright-t16'
    """
    Bright: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CAROLINE_T16: Literal['caroline-t16'] = 'caroline-t16'
    """
    caroline: Base-16 color style by "ed".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CATPPUCCIN_FRAPPE_T16: Literal['catppuccin-frappe-t16'] = 'catppuccin-frappe-t16'
    """
    Catppuccin Frappe: Base-16 color style.

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CATPPUCCIN_MACCHIATO_T16: Literal['catppuccin-macchiato-t16'] = 'catppuccin-macchiato-t16'
    """
    Catppuccin Macchiato: Base-16 color style.

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CATPPUCCIN_MOCHA_T16: Literal['catppuccin-mocha-t16'] = 'catppuccin-mocha-t16'
    """
    Catppuccin Mocha: Base-16 color style.

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CHALK_T16: Literal['chalk-t16'] = 'chalk-t16'
    """
    Chalk: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CHARCOAL_DARK_T16: Literal['charcoal-dark-t16'] = 'charcoal-dark-t16'
    """
    Charcoal Dark: Base-16 color style by "Mubin Muhammad".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CHICAGO_NIGHT_T16: Literal['chicago-night-t16'] = 'chicago-night-t16'
    """
    Chicago Night: Base-16 color style by "Wendell, Ryan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CHINOISERIE_MIDNIGHT_T16: Literal['chinoiserie-midnight-t16'] = 'chinoiserie-midnight-t16'
    """
    Chinoiserie Midnight: Base-16 color style by "Di Wang".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CHINOISERIE_MORANDI_T16: Literal['chinoiserie-morandi-t16'] = 'chinoiserie-morandi-t16'
    """
    Chinoiserie Morandi: Base-16 color style by "Di Wang".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CHINOISERIE_NIGHT_T16: Literal['chinoiserie-night-t16'] = 'chinoiserie-night-t16'
    """
    Chinoiserie Night: Base-16 color style by "Di Wang".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CIRCUS_T16: Literal['circus-t16'] = 'circus-t16'
    """
    Circus: Base-16 color style by "Stephan Boyer".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CLASSIC_DARK_T16: Literal['classic-dark-t16'] = 'classic-dark-t16'
    """
    Classic Dark: Base-16 color style by "Jason Heeris".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CODESCHOOL_T16: Literal['codeschool-t16'] = 'codeschool-t16'
    """
    Codeschool: Base-16 color style by "blockloop".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    COLORS_T16: Literal['colors-t16'] = 'colors-t16'
    """
    Colors: Base-16 color style by "mrmrs".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DA_ONE_BLACK_T16: Literal['da-one-black-t16'] = 'da-one-black-t16'
    """
    Da One Black: Base-16 color style by "NNB".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DA_ONE_GRAY_T16: Literal['da-one-gray-t16'] = 'da-one-gray-t16'
    """
    Da One Gray: Base-16 color style by "NNB".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DA_ONE_OCEAN_T16: Literal['da-one-ocean-t16'] = 'da-one-ocean-t16'
    """
    Da One Ocean: Base-16 color style by "NNB".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DA_ONE_SEA_T16: Literal['da-one-sea-t16'] = 'da-one-sea-t16'
    """
    Da One Sea: Base-16 color style by "NNB".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DANQING_T16: Literal['danqing-t16'] = 'danqing-t16'
    """
    DanQing: Base-16 color style by "Wenhan Zhu".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DARCULA_T16: Literal['darcula-t16'] = 'darcula-t16'
    """
    Darcula: Base-16 color style by "jetbrains".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DARKMOSS_T16: Literal['darkmoss-t16'] = 'darkmoss-t16'
    """
    darkmoss: Base-16 color style by "Gabriel Avanzi".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DARKTOOTH_T16: Literal['darktooth-t16'] = 'darktooth-t16'
    """
    Darktooth: Base-16 color style by "Jason Milkins".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DARKVIOLET_T16: Literal['darkviolet-t16'] = 'darkviolet-t16'
    """
    Dark Violet: Base-16 color style by "ruler501".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DECAF_T16: Literal['decaf-t16'] = 'decaf-t16'
    """
    Decaf: Base-16 color style by "Alex Mirrington".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DEEP_OCEANIC_NEXT_T16: Literal['deep-oceanic-next-t16'] = 'deep-oceanic-next-t16'
    """
    Deep Oceanic Next: Base-16 color style by "spearkkk".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DEFAULT_DARK_T16: Literal['default-dark-t16'] = 'default-dark-t16'
    """
    Default Dark: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DIGITAL_RAIN_T16: Literal['digital-rain-t16'] = 'digital-rain-t16'
    """
    Digital Rain: Base-16 color style by "Nathan Byrd".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DRACULA_T16: Literal['dracula-t16'] = 'dracula-t16'
    """
    Dracula: Base-16 color style by "Jamy Golden".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EDGE_DARK_T16: Literal['edge-dark-t16'] = 'edge-dark-t16'
    """
    Edge Dark: Base-16 color style by "cjayross".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EIGHTIES_T16: Literal['eighties-t16'] = 'eighties-t16'
    """
    Eighties: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EMBERS_T16: Literal['embers-t16'] = 'embers-t16'
    """
    Embers: Base-16 color style by "Jannik Siebert".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EQUILIBRIUM_DARK_T16: Literal['equilibrium-dark-t16'] = 'equilibrium-dark-t16'
    """
    Equilibrium Dark: Base-16 color style by "Carlo Abelli".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EQUILIBRIUM_GRAY_DARK_T16: Literal['equilibrium-gray-dark-t16'] = 'equilibrium-gray-dark-t16'
    """
    Equilibrium Gray Dark: Base-16 color style by "Carlo Abelli".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ESPRESSO_T16: Literal['espresso-t16'] = 'espresso-t16'
    """
    Espresso: Base-16 color style by "Unknown. Maintained by Alex
    Mirrington".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EVENOK_DARK_T16: Literal['evenok-dark-t16'] = 'evenok-dark-t16'
    """
    Evenok Dark: Base-16 color style by "Mekeor Melire".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EVERFOREST_DARK_HARD_T16: Literal['everforest-dark-hard-t16'] = 'everforest-dark-hard-t16'
    """
    Everforest Dark Hard: Base-16 color style by "Sainnhe Park".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EVERFOREST_DARK_SOFT_T16: Literal['everforest-dark-soft-t16'] = 'everforest-dark-soft-t16'
    """
    Everforest Dark Soft: Base-16 color style by "Sainnhe Park".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EVERFOREST_T16: Literal['everforest-t16'] = 'everforest-t16'
    """
    Everforest: Base-16 color style by "Sainnhe Park".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    FLAT_T16: Literal['flat-t16'] = 'flat-t16'
    """
    Flat: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    FRAMER_T16: Literal['framer-t16'] = 'framer-t16'
    """
    Framer: Base-16 color style by "Framer".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GIGAVOLT_T16: Literal['gigavolt-t16'] = 'gigavolt-t16'
    """
    Gigavolt: Base-16 color style by "Aidan Swope".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GITHUB_DARK_T16: Literal['github-dark-t16'] = 'github-dark-t16'
    """
    Github Dark: Base-16 color style by "Tinted Theming".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GOOGLE_DARK_T16: Literal['google-dark-t16'] = 'google-dark-t16'
    """
    Google Dark: Base-16 color style by "Seth Wright".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GOTHAM_T16: Literal['gotham-t16'] = 'gotham-t16'
    """
    Gotham: Base-16 color style by "Andrea Leopardi".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRAYSCALE_DARK_T16: Literal['grayscale-dark-t16'] = 'grayscale-dark-t16'
    """
    Grayscale Dark: Base-16 color style by "Alexandre Gavioli".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GREENSCREEN_T16: Literal['greenscreen-t16'] = 'greenscreen-t16'
    """
    Green Screen: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUBER_T16: Literal['gruber-t16'] = 'gruber-t16'
    """
    Gruber: Base-16 color style by "Patel, Nimai, colors from
    www.github.com/rexim/gruber-darker-theme".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_DARK_HARD_T16: Literal['gruvbox-dark-hard-t16'] = 'gruvbox-dark-hard-t16'
    """
    Gruvbox dark, hard: Base-16 color style by "Dawid Kurek".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_DARK_MEDIUM_T16: Literal['gruvbox-dark-medium-t16'] = 'gruvbox-dark-medium-t16'
    """
    Gruvbox dark, medium: Base-16 color style by "Dawid Kurek".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_DARK_PALE_T16: Literal['gruvbox-dark-pale-t16'] = 'gruvbox-dark-pale-t16'
    """
    Gruvbox dark, pale: Base-16 color style by "Dawid Kurek".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_DARK_SOFT_T16: Literal['gruvbox-dark-soft-t16'] = 'gruvbox-dark-soft-t16'
    """
    Gruvbox dark, soft: Base-16 color style by "Dawid Kurek".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_DARK_T16: Literal['gruvbox-dark-t16'] = 'gruvbox-dark-t16'
    """
    Gruvbox dark: Base-16 color style by "Tinted Theming".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_MATERIAL_DARK_HARD_T16: Literal[
        'gruvbox-material-dark-hard-t16'] = 'gruvbox-material-dark-hard-t16'
    """
    Gruvbox Material Dark, Hard: Base-16 color style by "Mayush Kumar".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_MATERIAL_DARK_MEDIUM_T16: Literal[
        'gruvbox-material-dark-medium-t16'] = 'gruvbox-material-dark-medium-t16'
    """
    Gruvbox Material Dark, Medium: Base-16 color style by "Mayush Kumar".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_MATERIAL_DARK_SOFT_T16: Literal[
        'gruvbox-material-dark-soft-t16'] = 'gruvbox-material-dark-soft-t16'
    """
    Gruvbox Material Dark, Soft: Base-16 color style by "Mayush Kumar".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HARDCORE_T16: Literal['hardcore-t16'] = 'hardcore-t16'
    """
    Hardcore: Base-16 color style by "Chris Caller".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HARDHACKER_T16: Literal['hardhacker-t16'] = 'hardhacker-t16'
    """
    Hardhacker: Base-16 color style by "fe2-Nyxar, based on the
    https://github.com/hardhackerlabs".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HARMONIC16_DARK_T16: Literal['harmonic16-dark-t16'] = 'harmonic16-dark-t16'
    """
    Harmonic16 Dark: Base-16 color style by "Jannik Siebert".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HEETCH_T16: Literal['heetch-t16'] = 'heetch-t16'
    """
    Heetch Dark: Base-16 color style by "Geoffrey Teale".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HELIOS_T16: Literal['helios-t16'] = 'helios-t16'
    """
    Helios: Base-16 color style by "Alex Meyer".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HOPSCOTCH_T16: Literal['hopscotch-t16'] = 'hopscotch-t16'
    """
    Hopscotch: Base-16 color style by "Jan T. Sott".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HORIZON_DARK_T16: Literal['horizon-dark-t16'] = 'horizon-dark-t16'
    """
    Horizon Dark: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HORIZON_TERMINAL_DARK_T16: Literal['horizon-terminal-dark-t16'] = 'horizon-terminal-dark-t16'
    """
    Horizon Terminal Dark: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HUMANOID_DARK_T16: Literal['humanoid-dark-t16'] = 'humanoid-dark-t16'
    """
    Humanoid dark: Base-16 color style by "Thomas Friese".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    IA_DARK_T16: Literal['ia-dark-t16'] = 'ia-dark-t16'
    """
    iA Dark: Base-16 color style by "iA Inc.".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    IRBLACK_T16: Literal['irblack-t16'] = 'irblack-t16'
    """
    IR Black: Base-16 color style by "Timothée Poisot".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ISOTOPE_T16: Literal['isotope-t16'] = 'isotope-t16'
    """
    Isotope: Base-16 color style by "Jan T. Sott".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    JABUTI_T16: Literal['jabuti-t16'] = 'jabuti-t16'
    """
    Jabuti: Base-16 color style.

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    KANAGAWA_DRAGON_T16: Literal['kanagawa-dragon-t16'] = 'kanagawa-dragon-t16'
    """
    Kanagawa Dragon: Base-16 color style by "Tommaso Laurenzi".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    KANAGAWA_T16: Literal['kanagawa-t16'] = 'kanagawa-t16'
    """
    Kanagawa: Base-16 color style by "Tommaso Laurenzi".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    KATY_T16: Literal['katy-t16'] = 'katy-t16'
    """
    Katy: Base-16 color style by "George Essig".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    KIMBER_T16: Literal['kimber-t16'] = 'kimber-t16'
    """
    Kimber: Base-16 color style by "Mishka Nguyen".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    LINUX_VT_T16: Literal['linux-vt-t16'] = 'linux-vt-t16'
    """
    Linux VT: Base-16 color style by "j-c-m".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MACINTOSH_T16: Literal['macintosh-t16'] = 'macintosh-t16'
    """
    Macintosh: Base-16 color style by "Rebecca Bettencourt".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MARRAKESH_T16: Literal['marrakesh-t16'] = 'marrakesh-t16'
    """
    Marrakesh: Base-16 color style by "Alexandre Gavioli".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MATERIA_T16: Literal['materia-t16'] = 'materia-t16'
    """
    Materia: Base-16 color style by "Defman21".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MATERIAL_DARKER_T16: Literal['material-darker-t16'] = 'material-darker-t16'
    """
    Material Darker: Base-16 color style by "Nate Peterson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MATERIAL_PALENIGHT_T16: Literal['material-palenight-t16'] = 'material-palenight-t16'
    """
    Material Palenight: Base-16 color style by "Nate Peterson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MATERIAL_T16: Literal['material-t16'] = 'material-t16'
    """
    Material: Base-16 color style by "Nate Peterson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MEASURED_DARK_T16: Literal['measured-dark-t16'] = 'measured-dark-t16'
    """
    Measured Dark: Base-16 color style by "Measured".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MELLOW_PURPLE_T16: Literal['mellow-purple-t16'] = 'mellow-purple-t16'
    """
    Mellow Purple: Base-16 color style by "gidsi".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MOCHA_T16: Literal['mocha-t16'] = 'mocha-t16'
    """
    Mocha: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MONOKAI_T16: Literal['monokai-t16'] = 'monokai-t16'
    """
    Monokai: Base-16 color style by "Wimer Hazenberg".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MOONLIGHT_T16: Literal['moonlight-t16'] = 'moonlight-t16'
    """
    Moonlight: Base-16 color style by "Jeremy Swinarton".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MOUNTAIN_T16: Literal['mountain-t16'] = 'mountain-t16'
    """
    Mountain: Base-16 color style by "gnsfujiwara".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    NEBULA_T16: Literal['nebula-t16'] = 'nebula-t16'
    """
    Nebula: Base-16 color style by "Gabriel Fontes".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    NORD_T16: Literal['nord-t16'] = 'nord-t16'
    """
    Nord: Base-16 color style by "arcticicestudio".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    NOVA_T16: Literal['nova-t16'] = 'nova-t16'
    """
    Nova: Base-16 color style by "George Essig".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    OCEAN_T16: Literal['ocean-t16'] = 'ocean-t16'
    """
    Ocean: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    OCEANICNEXT_T16: Literal['oceanicnext-t16'] = 'oceanicnext-t16'
    """
    OceanicNext: Base-16 color style.

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ONEDARK_DARK_T16: Literal['onedark-dark-t16'] = 'onedark-dark-t16'
    """
    OneDark Dark: Base-16 color style by "olimorris".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ONEDARK_T16: Literal['onedark-t16'] = 'onedark-t16'
    """
    OneDark: Base-16 color style by "Lalit Magant".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    OUTRUN_DARK_T16: Literal['outrun-dark-t16'] = 'outrun-dark-t16'
    """
    Outrun Dark: Base-16 color style by "Hugo Delahousse".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    OXOCARBON_DARK_T16: Literal['oxocarbon-dark-t16'] = 'oxocarbon-dark-t16'
    """
    Oxocarbon Dark: Base-16 color style by "shaunsingh/IBM".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PANDORA_T16: Literal['pandora-t16'] = 'pandora-t16'
    """
    pandora: Base-16 color style by "Cassandra Fox".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PARAISO_T16: Literal['paraiso-t16'] = 'paraiso-t16'
    """
    Paraiso: Base-16 color style by "Jan T. Sott".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PASQUE_T16: Literal['pasque-t16'] = 'pasque-t16'
    """
    Pasque: Base-16 color style by "Gabriel Fontes".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PENUMBRA_DARK_CONTRAST_PLUS_PLUS_T16: Literal[
        'penumbra-dark-contrast-plus-plus-t16'] = 'penumbra-dark-contrast-plus-plus-t16'
    """
    Penumbra Dark Contrast Plus Plus: Base-16 color style by "Zachary
    Weiss".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PENUMBRA_DARK_CONTRAST_PLUS_T16: Literal[
        'penumbra-dark-contrast-plus-t16'] = 'penumbra-dark-contrast-plus-t16'
    """
    Penumbra Dark Contrast Plus: Base-16 color style by "Zachary Weiss".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PENUMBRA_DARK_T16: Literal['penumbra-dark-t16'] = 'penumbra-dark-t16'
    """
    Penumbra Dark: Base-16 color style by "Zachary Weiss".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PHD_T16: Literal['phd-t16'] = 'phd-t16'
    """
    PhD: Base-16 color style by "Hennig Hasemann".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PINKY_T16: Literal['pinky-t16'] = 'pinky-t16'
    """
    pinky: Base-16 color style by "Benjamin".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    POP_T16: Literal['pop-t16'] = 'pop-t16'
    """
    Pop: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PORPLE_T16: Literal['porple-t16'] = 'porple-t16'
    """
    Porple: Base-16 color style by "Niek den Breeje".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PRECIOUS_DARK_ELEVEN_T16: Literal['precious-dark-eleven-t16'] = 'precious-dark-eleven-t16'
    """
    Precious Dark Eleven: Base-16 color style by "4lex4".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PRECIOUS_DARK_FIFTEEN_T16: Literal['precious-dark-fifteen-t16'] = 'precious-dark-fifteen-t16'
    """
    Precious Dark Fifteen: Base-16 color style by "4lex4".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PRIMER_DARK_DIMMED_T16: Literal['primer-dark-dimmed-t16'] = 'primer-dark-dimmed-t16'
    """
    Primer Dark Dimmed: Base-16 color style by "Jimmy Lin".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PRIMER_DARK_T16: Literal['primer-dark-t16'] = 'primer-dark-t16'
    """
    Primer Dark: Base-16 color style by "Jimmy Lin".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PURPLEDREAM_T16: Literal['purpledream-t16'] = 'purpledream-t16'
    """
    Purpledream: Base-16 color style by "malet".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    QUALIA_T16: Literal['qualia-t16'] = 'qualia-t16'
    """
    Qualia: Base-16 color style by "isaacwhanson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    RAILSCASTS_T16: Literal['railscasts-t16'] = 'railscasts-t16'
    """
    Railscasts: Base-16 color style by "Ryan Bates".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    REBECCA_T16: Literal['rebecca-t16'] = 'rebecca-t16'
    """
    Rebecca: Base-16 color style by "Victor Borja".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ROSE_PINE_MOON_T16: Literal['rose-pine-moon-t16'] = 'rose-pine-moon-t16'
    """
    Rosé Pine Moon: Base-16 color style by "Emilia Dunfelt".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ROSE_PINE_T16: Literal['rose-pine-t16'] = 'rose-pine-t16'
    """
    Rosé Pine: Base-16 color style by "Emilia Dunfelt".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SAGA_T16: Literal['saga-t16'] = 'saga-t16'
    """
    SAGA: Base-16 color style.

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SANDCASTLE_T16: Literal['sandcastle-t16'] = 'sandcastle-t16'
    """
    Sandcastle: Base-16 color style by "George Essig".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SELENIZED_BLACK_T16: Literal['selenized-black-t16'] = 'selenized-black-t16'
    """
    selenized-black: Base-16 color style by "Jan Warchol / adapted to base16
    by ali".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SELENIZED_DARK_T16: Literal['selenized-dark-t16'] = 'selenized-dark-t16'
    """
    selenized-dark: Base-16 color style by "Jan Warchol / adapted to base16
    by ali".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SETI_T16: Literal['seti-t16'] = 'seti-t16'
    """
    Seti UI: Base-16 color style by "".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SHADES_OF_PURPLE_T16: Literal['shades-of-purple-t16'] = 'shades-of-purple-t16'
    """
    Shades of Purple: Base-16 color style by "Iolar Demartini Junior".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SHADESMEAR_DARK_T16: Literal['shadesmear-dark-t16'] = 'shadesmear-dark-t16'
    """
    ShadeSmear Dark: Base-16 color style by "Kyle Giammarco".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SILK_DARK_T16: Literal['silk-dark-t16'] = 'silk-dark-t16'
    """
    Silk Dark: Base-16 color style by "Gabriel Fontes".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SNAZZY_T16: Literal['snazzy-t16'] = 'snazzy-t16'
    """
    Snazzy: Base-16 color style by "Chawye Hsu".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SOLARFLARE_T16: Literal['solarflare-t16'] = 'solarflare-t16'
    """
    Solar Flare: Base-16 color style by "Chuck Harmston".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SOLARIZED_DARK_T16: Literal['solarized-dark-t16'] = 'solarized-dark-t16'
    """
    Solarized Dark: Base-16 color style by "Ethan Schoonover".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SPACEDUCK_T16: Literal['spaceduck-t16'] = 'spaceduck-t16'
    """
    Spaceduck: Base-16 color style by "Guillermo Rodriguez".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SPACEMACS_T16: Literal['spacemacs-t16'] = 'spacemacs-t16'
    """
    Spacemacs: Base-16 color style by "Nasser Alshammari".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SPARKY_T16: Literal['sparky-t16'] = 'sparky-t16'
    """
    Sparky: Base-16 color style by "Leila Sother".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    STANDARDIZED_DARK_T16: Literal['standardized-dark-t16'] = 'standardized-dark-t16'
    """
    standardized-dark: Base-16 color style by "ali".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    STELLA_T16: Literal['stella-t16'] = 'stella-t16'
    """
    Stella: Base-16 color style by "Shrimpram".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SUMMERFRUIT_DARK_T16: Literal['summerfruit-dark-t16'] = 'summerfruit-dark-t16'
    """
    Summerfruit Dark: Base-16 color style by "Christopher Corley".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SYNTH_MIDNIGHT_DARK_T16: Literal['synth-midnight-dark-t16'] = 'synth-midnight-dark-t16'
    """
    Synth Midnight Terminal Dark: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TANGO_T16: Literal['tango-t16'] = 'tango-t16'
    """
    Tango: Base-16 color style by "@Schnouki, based on the Tango Desktop
    Project".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TENDER_T16: Literal['tender-t16'] = 'tender-t16'
    """
    tender: Base-16 color style by "Jacobo Tabernero".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TERRACOTTA_DARK_T16: Literal['terracotta-dark-t16'] = 'terracotta-dark-t16'
    """
    Terracotta Dark: Base-16 color style by "Alexander Rossell Hayes".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TOKYO_CITY_DARK_T16: Literal['tokyo-city-dark-t16'] = 'tokyo-city-dark-t16'
    """
    Tokyo City Dark: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TOKYO_CITY_TERMINAL_DARK_T16: Literal[
        'tokyo-city-terminal-dark-t16'] = 'tokyo-city-terminal-dark-t16'
    """
    Tokyo City Terminal Dark: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TOKYO_NIGHT_DARK_T16: Literal['tokyo-night-dark-t16'] = 'tokyo-night-dark-t16'
    """
    Tokyo Night Dark: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TOKYO_NIGHT_STORM_T16: Literal['tokyo-night-storm-t16'] = 'tokyo-night-storm-t16'
    """
    Tokyo Night Storm: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TOKYODARK_TERMINAL_T16: Literal['tokyodark-terminal-t16'] = 'tokyodark-terminal-t16'
    """
    Tokyodark Terminal: Base-16 color style by "Tiagovla".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TOKYODARK_T16: Literal['tokyodark-t16'] = 'tokyodark-t16'
    """
    Tokyodark: Base-16 color style by "Jamy Golden".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TOMORROW_NIGHT_EIGHTIES_T16: Literal[
        'tomorrow-night-eighties-t16'] = 'tomorrow-night-eighties-t16'
    """
    Tomorrow Night Eighties: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TOMORROW_NIGHT_T16: Literal['tomorrow-night-t16'] = 'tomorrow-night-t16'
    """
    Tomorrow Night: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TUBE_T16: Literal['tube-t16'] = 'tube-t16'
    """
    London Tube: Base-16 color style by "Jan T. Sott".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TWILIGHT_T16: Literal['twilight-t16'] = 'twilight-t16'
    """
    Twilight: Base-16 color style by "David Hart".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    UNIKITTY_DARK_T16: Literal['unikitty-dark-t16'] = 'unikitty-dark-t16'
    """
    Unikitty Dark: Base-16 color style by "Josh W Lewis".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    UNIKITTY_REVERSIBLE_T16: Literal['unikitty-reversible-t16'] = 'unikitty-reversible-t16'
    """
    Unikitty Reversible: Base-16 color style by "Josh W Lewis".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    UWUNICORN_T16: Literal['uwunicorn-t16'] = 'uwunicorn-t16'
    """
    UwUnicorn: Base-16 color style by "Fernando Marques".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    VALUA_T16: Literal['valua-t16'] = 'valua-t16'
    """
    Valua: Base-16 color style by "Nonetrix".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    VESPER_T16: Literal['vesper-t16'] = 'vesper-t16'
    """
    Vesper: Base-16 color style by "FormalSnake".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    VICE_T16: Literal['vice-t16'] = 'vice-t16'
    """
    vice: Base-16 color style by "Thomas Leon Highbaugh".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    WINDOWS_10_T16: Literal['windows-10-t16'] = 'windows-10-t16'
    """
    Windows 10: Base-16 color style by "Fergus Collins".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    WINDOWS_95_T16: Literal['windows-95-t16'] = 'windows-95-t16'
    """
    Windows 95: Base-16 color style by "Fergus Collins".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    WINDOWS_HIGHCONTRAST_T16: Literal['windows-highcontrast-t16'] = 'windows-highcontrast-t16'
    """
    Windows High Contrast: Base-16 color style by "Fergus Collins".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    WINDOWS_NT_T16: Literal['windows-nt-t16'] = 'windows-nt-t16'
    """
    Windows NT: Base-16 color style by "Fergus Collins".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    WOODLAND_T16: Literal['woodland-t16'] = 'woodland-t16'
    """
    Woodland: Base-16 color style by "Jay Cornwall".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    XCODE_DUSK_T16: Literal['xcode-dusk-t16'] = 'xcode-dusk-t16'
    """
    XCode Dusk: Base-16 color style by "Elsa Gonsiorowski".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ZENBONES_T16: Literal['zenbones-t16'] = 'zenbones-t16'
    """
    Zenbones: Base-16 color style by "mcchrish".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ZENBURN_T16: Literal['zenburn-t16'] = 'zenburn-t16'
    """
    Zenburn: Base-16 color style by "elnawe".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    RANDOM_DARK_HIGH_CONTRAST_T16: Literal['random-dark-high-t16'] = 'random-dark-high-t16'

APATHY_T16 class-attribute instance-attribute

APATHY_T16: Literal['apathy-t16'] = 'apathy-t16'

Apathy: Base-16 color style by "Jannik Siebert".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ASHES_T16 class-attribute instance-attribute

ASHES_T16: Literal['ashes-t16'] = 'ashes-t16'

Ashes: Base-16 color style by "Jannik Siebert".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_CAVE_T16 class-attribute instance-attribute

ATELIER_CAVE_T16: Literal['atelier-cave-t16'] = 'atelier-cave-t16'

Atelier Cave: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_DUNE_T16 class-attribute instance-attribute

ATELIER_DUNE_T16: Literal['atelier-dune-t16'] = 'atelier-dune-t16'

Atelier Dune: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_ESTUARY_T16 class-attribute instance-attribute

ATELIER_ESTUARY_T16: Literal['atelier-estuary-t16'] = 'atelier-estuary-t16'

Atelier Estuary: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_FOREST_T16 class-attribute instance-attribute

ATELIER_FOREST_T16: Literal['atelier-forest-t16'] = 'atelier-forest-t16'

Atelier Forest: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_HEATH_T16 class-attribute instance-attribute

ATELIER_HEATH_T16: Literal['atelier-heath-t16'] = 'atelier-heath-t16'

Atelier Heath: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_LAKESIDE_T16 class-attribute instance-attribute

ATELIER_LAKESIDE_T16: Literal['atelier-lakeside-t16'] = 'atelier-lakeside-t16'

Atelier Lakeside: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_PLATEAU_T16 class-attribute instance-attribute

ATELIER_PLATEAU_T16: Literal['atelier-plateau-t16'] = 'atelier-plateau-t16'

Atelier Plateau: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_SAVANNA_T16 class-attribute instance-attribute

ATELIER_SAVANNA_T16: Literal['atelier-savanna-t16'] = 'atelier-savanna-t16'

Atelier Savanna: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_SEASIDE_T16 class-attribute instance-attribute

ATELIER_SEASIDE_T16: Literal['atelier-seaside-t16'] = 'atelier-seaside-t16'

Atelier Seaside: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_SULPHURPOOL_T16 class-attribute instance-attribute

ATELIER_SULPHURPOOL_T16: Literal['atelier-sulphurpool-t16'] = 'atelier-sulphurpool-t16'

Atelier Sulphurpool: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATLAS_T16 class-attribute instance-attribute

ATLAS_T16: Literal['atlas-t16'] = 'atlas-t16'

Atlas: Base-16 color style by "Alex Lende".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

AYU_DARK_T16 class-attribute instance-attribute

AYU_DARK_T16: Literal['ayu-dark-t16'] = 'ayu-dark-t16'

Ayu Dark: Base-16 color style by "Khue Nguyen".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

AYU_MIRAGE_T16 class-attribute instance-attribute

AYU_MIRAGE_T16: Literal['ayu-mirage-t16'] = 'ayu-mirage-t16'

Ayu Mirage: Base-16 color style by "Khue Nguyen".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

AZTEC_T16 class-attribute instance-attribute

AZTEC_T16: Literal['aztec-t16'] = 'aztec-t16'

Aztec: Base-16 color style by "TheNeverMan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BESPIN_T16 class-attribute instance-attribute

BESPIN_T16: Literal['bespin-t16'] = 'bespin-t16'

Bespin: Base-16 color style by "Jan T. Sott".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BLACK_METAL_BATHORY_T16 class-attribute instance-attribute

BLACK_METAL_BATHORY_T16: Literal['black-metal-bathory-t16'] = 'black-metal-bathory-t16'

Black Metal (Bathory): Base-16 color style by "metalelf0".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BLACK_METAL_BURZUM_T16 class-attribute instance-attribute

BLACK_METAL_BURZUM_T16: Literal['black-metal-burzum-t16'] = 'black-metal-burzum-t16'

Black Metal (Burzum): Base-16 color style by "metalelf0".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BLACK_METAL_DARK_FUNERAL_T16 class-attribute instance-attribute

BLACK_METAL_DARK_FUNERAL_T16: Literal["black-metal-dark-funeral-t16"] = (
    "black-metal-dark-funeral-t16"
)

Black Metal (Dark Funeral): Base-16 color style by "metalelf0".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BLACK_METAL_GORGOROTH_T16 class-attribute instance-attribute

BLACK_METAL_GORGOROTH_T16: Literal['black-metal-gorgoroth-t16'] = 'black-metal-gorgoroth-t16'

Black Metal (Gorgoroth): Base-16 color style by "metalelf0".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BLACK_METAL_IMMORTAL_T16 class-attribute instance-attribute

BLACK_METAL_IMMORTAL_T16: Literal['black-metal-immortal-t16'] = 'black-metal-immortal-t16'

Black Metal (Immortal): Base-16 color style by "metalelf0".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BLACK_METAL_KHOLD_T16 class-attribute instance-attribute

BLACK_METAL_KHOLD_T16: Literal['black-metal-khold-t16'] = 'black-metal-khold-t16'

Black Metal (Khold): Base-16 color style by "metalelf0".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BLACK_METAL_MARDUK_T16 class-attribute instance-attribute

BLACK_METAL_MARDUK_T16: Literal['black-metal-marduk-t16'] = 'black-metal-marduk-t16'

Black Metal (Marduk): Base-16 color style by "metalelf0".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BLACK_METAL_MAYHEM_T16 class-attribute instance-attribute

BLACK_METAL_MAYHEM_T16: Literal['black-metal-mayhem-t16'] = 'black-metal-mayhem-t16'

Black Metal (Mayhem): Base-16 color style by "metalelf0".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BLACK_METAL_NILE_T16 class-attribute instance-attribute

BLACK_METAL_NILE_T16: Literal['black-metal-nile-t16'] = 'black-metal-nile-t16'

Black Metal (Nile): Base-16 color style by "metalelf0".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BLACK_METAL_T16 class-attribute instance-attribute

BLACK_METAL_T16: Literal['black-metal-t16'] = 'black-metal-t16'

Black Metal: Base-16 color style by "metalelf0".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BLACK_METAL_VENOM_T16 class-attribute instance-attribute

BLACK_METAL_VENOM_T16: Literal['black-metal-venom-t16'] = 'black-metal-venom-t16'

Black Metal (Venom): Base-16 color style by "metalelf0".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BLUEFOREST_T16 class-attribute instance-attribute

BLUEFOREST_T16: Literal['blueforest-t16'] = 'blueforest-t16'

Blue Forest: Base-16 color style by "alonsodomin".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BLUEISH_T16 class-attribute instance-attribute

BLUEISH_T16: Literal['blueish-t16'] = 'blueish-t16'

Blueish: Base-16 color style by "Ben Mayoras".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BREWER_T16 class-attribute instance-attribute

BREWER_T16: Literal['brewer-t16'] = 'brewer-t16'

Brewer: Base-16 color style by "Timothée Poisot".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BRIGHT_T16 class-attribute instance-attribute

BRIGHT_T16: Literal['bright-t16'] = 'bright-t16'

Bright: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CAROLINE_T16 class-attribute instance-attribute

CAROLINE_T16: Literal['caroline-t16'] = 'caroline-t16'

caroline: Base-16 color style by "ed".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CATPPUCCIN_FRAPPE_T16 class-attribute instance-attribute

CATPPUCCIN_FRAPPE_T16: Literal['catppuccin-frappe-t16'] = 'catppuccin-frappe-t16'

Catppuccin Frappe: Base-16 color style.

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CATPPUCCIN_MACCHIATO_T16 class-attribute instance-attribute

CATPPUCCIN_MACCHIATO_T16: Literal['catppuccin-macchiato-t16'] = 'catppuccin-macchiato-t16'

Catppuccin Macchiato: Base-16 color style.

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CATPPUCCIN_MOCHA_T16 class-attribute instance-attribute

CATPPUCCIN_MOCHA_T16: Literal['catppuccin-mocha-t16'] = 'catppuccin-mocha-t16'

Catppuccin Mocha: Base-16 color style.

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CHALK_T16 class-attribute instance-attribute

CHALK_T16: Literal['chalk-t16'] = 'chalk-t16'

Chalk: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CHARCOAL_DARK_T16 class-attribute instance-attribute

CHARCOAL_DARK_T16: Literal['charcoal-dark-t16'] = 'charcoal-dark-t16'

Charcoal Dark: Base-16 color style by "Mubin Muhammad".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CHICAGO_NIGHT_T16 class-attribute instance-attribute

CHICAGO_NIGHT_T16: Literal['chicago-night-t16'] = 'chicago-night-t16'

Chicago Night: Base-16 color style by "Wendell, Ryan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CHINOISERIE_MIDNIGHT_T16 class-attribute instance-attribute

CHINOISERIE_MIDNIGHT_T16: Literal['chinoiserie-midnight-t16'] = 'chinoiserie-midnight-t16'

Chinoiserie Midnight: Base-16 color style by "Di Wang".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CHINOISERIE_MORANDI_T16 class-attribute instance-attribute

CHINOISERIE_MORANDI_T16: Literal['chinoiserie-morandi-t16'] = 'chinoiserie-morandi-t16'

Chinoiserie Morandi: Base-16 color style by "Di Wang".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CHINOISERIE_NIGHT_T16 class-attribute instance-attribute

CHINOISERIE_NIGHT_T16: Literal['chinoiserie-night-t16'] = 'chinoiserie-night-t16'

Chinoiserie Night: Base-16 color style by "Di Wang".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CIRCUS_T16 class-attribute instance-attribute

CIRCUS_T16: Literal['circus-t16'] = 'circus-t16'

Circus: Base-16 color style by "Stephan Boyer".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CLASSIC_DARK_T16 class-attribute instance-attribute

CLASSIC_DARK_T16: Literal['classic-dark-t16'] = 'classic-dark-t16'

Classic Dark: Base-16 color style by "Jason Heeris".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CODESCHOOL_T16 class-attribute instance-attribute

CODESCHOOL_T16: Literal['codeschool-t16'] = 'codeschool-t16'

Codeschool: Base-16 color style by "blockloop".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

COLORS_T16 class-attribute instance-attribute

COLORS_T16: Literal['colors-t16'] = 'colors-t16'

Colors: Base-16 color style by "mrmrs".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DANQING_T16 class-attribute instance-attribute

DANQING_T16: Literal['danqing-t16'] = 'danqing-t16'

DanQing: Base-16 color style by "Wenhan Zhu".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DARCULA_T16 class-attribute instance-attribute

DARCULA_T16: Literal['darcula-t16'] = 'darcula-t16'

Darcula: Base-16 color style by "jetbrains".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DARKMOSS_T16 class-attribute instance-attribute

DARKMOSS_T16: Literal['darkmoss-t16'] = 'darkmoss-t16'

darkmoss: Base-16 color style by "Gabriel Avanzi".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DARKTOOTH_T16 class-attribute instance-attribute

DARKTOOTH_T16: Literal['darktooth-t16'] = 'darktooth-t16'

Darktooth: Base-16 color style by "Jason Milkins".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DARKVIOLET_T16 class-attribute instance-attribute

DARKVIOLET_T16: Literal['darkviolet-t16'] = 'darkviolet-t16'

Dark Violet: Base-16 color style by "ruler501".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DA_ONE_BLACK_T16 class-attribute instance-attribute

DA_ONE_BLACK_T16: Literal['da-one-black-t16'] = 'da-one-black-t16'

Da One Black: Base-16 color style by "NNB".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DA_ONE_GRAY_T16 class-attribute instance-attribute

DA_ONE_GRAY_T16: Literal['da-one-gray-t16'] = 'da-one-gray-t16'

Da One Gray: Base-16 color style by "NNB".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DA_ONE_OCEAN_T16 class-attribute instance-attribute

DA_ONE_OCEAN_T16: Literal['da-one-ocean-t16'] = 'da-one-ocean-t16'

Da One Ocean: Base-16 color style by "NNB".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DA_ONE_SEA_T16 class-attribute instance-attribute

DA_ONE_SEA_T16: Literal['da-one-sea-t16'] = 'da-one-sea-t16'

Da One Sea: Base-16 color style by "NNB".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DECAF_T16 class-attribute instance-attribute

DECAF_T16: Literal['decaf-t16'] = 'decaf-t16'

Decaf: Base-16 color style by "Alex Mirrington".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DEEP_OCEANIC_NEXT_T16 class-attribute instance-attribute

DEEP_OCEANIC_NEXT_T16: Literal['deep-oceanic-next-t16'] = 'deep-oceanic-next-t16'

Deep Oceanic Next: Base-16 color style by "spearkkk".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DEFAULT_DARK_T16 class-attribute instance-attribute

DEFAULT_DARK_T16: Literal['default-dark-t16'] = 'default-dark-t16'

Default Dark: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DIGITAL_RAIN_T16 class-attribute instance-attribute

DIGITAL_RAIN_T16: Literal['digital-rain-t16'] = 'digital-rain-t16'

Digital Rain: Base-16 color style by "Nathan Byrd".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DRACULA_T16 class-attribute instance-attribute

DRACULA_T16: Literal['dracula-t16'] = 'dracula-t16'

Dracula: Base-16 color style by "Jamy Golden".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EDGE_DARK_T16 class-attribute instance-attribute

EDGE_DARK_T16: Literal['edge-dark-t16'] = 'edge-dark-t16'

Edge Dark: Base-16 color style by "cjayross".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EIGHTIES_T16 class-attribute instance-attribute

EIGHTIES_T16: Literal['eighties-t16'] = 'eighties-t16'

Eighties: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EMBERS_T16 class-attribute instance-attribute

EMBERS_T16: Literal['embers-t16'] = 'embers-t16'

Embers: Base-16 color style by "Jannik Siebert".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EQUILIBRIUM_DARK_T16 class-attribute instance-attribute

EQUILIBRIUM_DARK_T16: Literal['equilibrium-dark-t16'] = 'equilibrium-dark-t16'

Equilibrium Dark: Base-16 color style by "Carlo Abelli".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EQUILIBRIUM_GRAY_DARK_T16 class-attribute instance-attribute

EQUILIBRIUM_GRAY_DARK_T16: Literal['equilibrium-gray-dark-t16'] = 'equilibrium-gray-dark-t16'

Equilibrium Gray Dark: Base-16 color style by "Carlo Abelli".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ESPRESSO_T16 class-attribute instance-attribute

ESPRESSO_T16: Literal['espresso-t16'] = 'espresso-t16'

Espresso: Base-16 color style by "Unknown. Maintained by Alex Mirrington".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EVENOK_DARK_T16 class-attribute instance-attribute

EVENOK_DARK_T16: Literal['evenok-dark-t16'] = 'evenok-dark-t16'

Evenok Dark: Base-16 color style by "Mekeor Melire".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EVERFOREST_DARK_HARD_T16 class-attribute instance-attribute

EVERFOREST_DARK_HARD_T16: Literal['everforest-dark-hard-t16'] = 'everforest-dark-hard-t16'

Everforest Dark Hard: Base-16 color style by "Sainnhe Park".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EVERFOREST_DARK_SOFT_T16 class-attribute instance-attribute

EVERFOREST_DARK_SOFT_T16: Literal['everforest-dark-soft-t16'] = 'everforest-dark-soft-t16'

Everforest Dark Soft: Base-16 color style by "Sainnhe Park".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EVERFOREST_T16 class-attribute instance-attribute

EVERFOREST_T16: Literal['everforest-t16'] = 'everforest-t16'

Everforest: Base-16 color style by "Sainnhe Park".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

FLAT_T16 class-attribute instance-attribute

FLAT_T16: Literal['flat-t16'] = 'flat-t16'

Flat: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

FRAMER_T16 class-attribute instance-attribute

FRAMER_T16: Literal['framer-t16'] = 'framer-t16'

Framer: Base-16 color style by "Framer".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GIGAVOLT_T16 class-attribute instance-attribute

GIGAVOLT_T16: Literal['gigavolt-t16'] = 'gigavolt-t16'

Gigavolt: Base-16 color style by "Aidan Swope".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GITHUB_DARK_T16 class-attribute instance-attribute

GITHUB_DARK_T16: Literal['github-dark-t16'] = 'github-dark-t16'

Github Dark: Base-16 color style by "Tinted Theming".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GOOGLE_DARK_T16 class-attribute instance-attribute

GOOGLE_DARK_T16: Literal['google-dark-t16'] = 'google-dark-t16'

Google Dark: Base-16 color style by "Seth Wright".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GOTHAM_T16 class-attribute instance-attribute

GOTHAM_T16: Literal['gotham-t16'] = 'gotham-t16'

Gotham: Base-16 color style by "Andrea Leopardi".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRAYSCALE_DARK_T16 class-attribute instance-attribute

GRAYSCALE_DARK_T16: Literal['grayscale-dark-t16'] = 'grayscale-dark-t16'

Grayscale Dark: Base-16 color style by "Alexandre Gavioli".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GREENSCREEN_T16 class-attribute instance-attribute

GREENSCREEN_T16: Literal['greenscreen-t16'] = 'greenscreen-t16'

Green Screen: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUBER_T16 class-attribute instance-attribute

GRUBER_T16: Literal['gruber-t16'] = 'gruber-t16'

Gruber: Base-16 color style by "Patel, Nimai, colors from www.github.com/rexim/gruber-darker-theme".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_DARK_HARD_T16 class-attribute instance-attribute

GRUVBOX_DARK_HARD_T16: Literal['gruvbox-dark-hard-t16'] = 'gruvbox-dark-hard-t16'

Gruvbox dark, hard: Base-16 color style by "Dawid Kurek".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_DARK_MEDIUM_T16 class-attribute instance-attribute

GRUVBOX_DARK_MEDIUM_T16: Literal['gruvbox-dark-medium-t16'] = 'gruvbox-dark-medium-t16'

Gruvbox dark, medium: Base-16 color style by "Dawid Kurek".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_DARK_PALE_T16 class-attribute instance-attribute

GRUVBOX_DARK_PALE_T16: Literal['gruvbox-dark-pale-t16'] = 'gruvbox-dark-pale-t16'

Gruvbox dark, pale: Base-16 color style by "Dawid Kurek".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_DARK_SOFT_T16 class-attribute instance-attribute

GRUVBOX_DARK_SOFT_T16: Literal['gruvbox-dark-soft-t16'] = 'gruvbox-dark-soft-t16'

Gruvbox dark, soft: Base-16 color style by "Dawid Kurek".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_DARK_T16 class-attribute instance-attribute

GRUVBOX_DARK_T16: Literal['gruvbox-dark-t16'] = 'gruvbox-dark-t16'

Gruvbox dark: Base-16 color style by "Tinted Theming".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_MATERIAL_DARK_HARD_T16 class-attribute instance-attribute

GRUVBOX_MATERIAL_DARK_HARD_T16: Literal["gruvbox-material-dark-hard-t16"] = (
    "gruvbox-material-dark-hard-t16"
)

Gruvbox Material Dark, Hard: Base-16 color style by "Mayush Kumar".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_MATERIAL_DARK_MEDIUM_T16 class-attribute instance-attribute

GRUVBOX_MATERIAL_DARK_MEDIUM_T16: Literal["gruvbox-material-dark-medium-t16"] = (
    "gruvbox-material-dark-medium-t16"
)

Gruvbox Material Dark, Medium: Base-16 color style by "Mayush Kumar".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_MATERIAL_DARK_SOFT_T16 class-attribute instance-attribute

GRUVBOX_MATERIAL_DARK_SOFT_T16: Literal["gruvbox-material-dark-soft-t16"] = (
    "gruvbox-material-dark-soft-t16"
)

Gruvbox Material Dark, Soft: Base-16 color style by "Mayush Kumar".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HARDCORE_T16 class-attribute instance-attribute

HARDCORE_T16: Literal['hardcore-t16'] = 'hardcore-t16'

Hardcore: Base-16 color style by "Chris Caller".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HARDHACKER_T16 class-attribute instance-attribute

HARDHACKER_T16: Literal['hardhacker-t16'] = 'hardhacker-t16'

Hardhacker: Base-16 color style by "fe2-Nyxar, based on the https://github.com/hardhackerlabs".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HARMONIC16_DARK_T16 class-attribute instance-attribute

HARMONIC16_DARK_T16: Literal['harmonic16-dark-t16'] = 'harmonic16-dark-t16'

Harmonic16 Dark: Base-16 color style by "Jannik Siebert".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HEETCH_T16 class-attribute instance-attribute

HEETCH_T16: Literal['heetch-t16'] = 'heetch-t16'

Heetch Dark: Base-16 color style by "Geoffrey Teale".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HELIOS_T16 class-attribute instance-attribute

HELIOS_T16: Literal['helios-t16'] = 'helios-t16'

Helios: Base-16 color style by "Alex Meyer".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HOPSCOTCH_T16 class-attribute instance-attribute

HOPSCOTCH_T16: Literal['hopscotch-t16'] = 'hopscotch-t16'

Hopscotch: Base-16 color style by "Jan T. Sott".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HORIZON_DARK_T16 class-attribute instance-attribute

HORIZON_DARK_T16: Literal['horizon-dark-t16'] = 'horizon-dark-t16'

Horizon Dark: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HORIZON_TERMINAL_DARK_T16 class-attribute instance-attribute

HORIZON_TERMINAL_DARK_T16: Literal['horizon-terminal-dark-t16'] = 'horizon-terminal-dark-t16'

Horizon Terminal Dark: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HUMANOID_DARK_T16 class-attribute instance-attribute

HUMANOID_DARK_T16: Literal['humanoid-dark-t16'] = 'humanoid-dark-t16'

Humanoid dark: Base-16 color style by "Thomas Friese".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

IA_DARK_T16 class-attribute instance-attribute

IA_DARK_T16: Literal['ia-dark-t16'] = 'ia-dark-t16'

iA Dark: Base-16 color style by "iA Inc.".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

IRBLACK_T16 class-attribute instance-attribute

IRBLACK_T16: Literal['irblack-t16'] = 'irblack-t16'

IR Black: Base-16 color style by "Timothée Poisot".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ISOTOPE_T16 class-attribute instance-attribute

ISOTOPE_T16: Literal['isotope-t16'] = 'isotope-t16'

Isotope: Base-16 color style by "Jan T. Sott".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

JABUTI_T16 class-attribute instance-attribute

JABUTI_T16: Literal['jabuti-t16'] = 'jabuti-t16'

Jabuti: Base-16 color style.

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

KANAGAWA_DRAGON_T16 class-attribute instance-attribute

KANAGAWA_DRAGON_T16: Literal['kanagawa-dragon-t16'] = 'kanagawa-dragon-t16'

Kanagawa Dragon: Base-16 color style by "Tommaso Laurenzi".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

KANAGAWA_T16 class-attribute instance-attribute

KANAGAWA_T16: Literal['kanagawa-t16'] = 'kanagawa-t16'

Kanagawa: Base-16 color style by "Tommaso Laurenzi".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

KATY_T16 class-attribute instance-attribute

KATY_T16: Literal['katy-t16'] = 'katy-t16'

Katy: Base-16 color style by "George Essig".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

KIMBER_T16 class-attribute instance-attribute

KIMBER_T16: Literal['kimber-t16'] = 'kimber-t16'

Kimber: Base-16 color style by "Mishka Nguyen".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

LINUX_VT_T16 class-attribute instance-attribute

LINUX_VT_T16: Literal['linux-vt-t16'] = 'linux-vt-t16'

Linux VT: Base-16 color style by "j-c-m".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

Literals class-attribute instance-attribute

Literals = Literal[
    "0x96f-t16",
    "3024-t16",
    "apathy-t16",
    "ashes-t16",
    "atelier-cave-t16",
    "atelier-dune-t16",
    "atelier-estuary-t16",
    "atelier-forest-t16",
    "atelier-heath-t16",
    "atelier-lakeside-t16",
    "atelier-plateau-t16",
    "atelier-savanna-t16",
    "atelier-seaside-t16",
    "atelier-sulphurpool-t16",
    "atlas-t16",
    "ayu-dark-t16",
    "ayu-mirage-t16",
    "aztec-t16",
    "bespin-t16",
    "black-metal-bathory-t16",
    "black-metal-burzum-t16",
    "black-metal-dark-funeral-t16",
    "black-metal-gorgoroth-t16",
    "black-metal-immortal-t16",
    "black-metal-khold-t16",
    "black-metal-marduk-t16",
    "black-metal-mayhem-t16",
    "black-metal-nile-t16",
    "black-metal-venom-t16",
    "black-metal-t16",
    "blueforest-t16",
    "blueish-t16",
    "brewer-t16",
    "bright-t16",
    "caroline-t16",
    "catppuccin-frappe-t16",
    "catppuccin-macchiato-t16",
    "catppuccin-mocha-t16",
    "charcoal-dark-t16",
    "chalk-t16",
    "chicago-night-t16",
    "chinoiserie-midnight-t16",
    "chinoiserie-morandi-t16",
    "chinoiserie-night-t16",
    "circus-t16",
    "classic-dark-t16",
    "codeschool-t16",
    "colors-t16",
    "da-one-black-t16",
    "da-one-gray-t16",
    "da-one-ocean-t16",
    "da-one-sea-t16",
    "danqing-t16",
    "darcula-t16",
    "darkmoss-t16",
    "darktooth-t16",
    "darkviolet-t16",
    "decaf-t16",
    "deep-oceanic-next-t16",
    "default-dark-t16",
    "digital-rain-t16",
    "dracula-t16",
    "edge-dark-t16",
    "eighties-t16",
    "embers-t16",
    "equilibrium-dark-t16",
    "equilibrium-gray-dark-t16",
    "espresso-t16",
    "evenok-dark-t16",
    "everforest-dark-hard-t16",
    "everforest-dark-soft-t16",
    "everforest-t16",
    "flat-t16",
    "framer-t16",
    "gigavolt-t16",
    "github-dark-t16",
    "google-dark-t16",
    "gotham-t16",
    "grayscale-dark-t16",
    "greenscreen-t16",
    "gruber-t16",
    "gruvbox-dark-hard-t16",
    "gruvbox-dark-medium-t16",
    "gruvbox-dark-pale-t16",
    "gruvbox-dark-soft-t16",
    "gruvbox-dark-t16",
    "gruvbox-material-dark-hard-t16",
    "gruvbox-material-dark-medium-t16",
    "gruvbox-material-dark-soft-t16",
    "hardcore-t16",
    "hardhacker-t16",
    "harmonic16-dark-t16",
    "heetch-t16",
    "helios-t16",
    "hopscotch-t16",
    "horizon-dark-t16",
    "horizon-terminal-dark-t16",
    "humanoid-dark-t16",
    "ia-dark-t16",
    "irblack-t16",
    "isotope-t16",
    "jabuti-t16",
    "kanagawa-dragon-t16",
    "kanagawa-t16",
    "katy-t16",
    "kimber-t16",
    "linux-vt-t16",
    "macintosh-t16",
    "marrakesh-t16",
    "materia-t16",
    "material-darker-t16",
    "material-palenight-t16",
    "material-t16",
    "measured-dark-t16",
    "mellow-purple-t16",
    "mocha-t16",
    "monokai-t16",
    "moonlight-t16",
    "mountain-t16",
    "nebula-t16",
    "nord-t16",
    "nova-t16",
    "ocean-t16",
    "oceanicnext-t16",
    "onedark-dark-t16",
    "onedark-t16",
    "outrun-dark-t16",
    "oxocarbon-dark-t16",
    "pandora-t16",
    "paraiso-t16",
    "pasque-t16",
    "penumbra-dark-contrast-plus-plus-t16",
    "penumbra-dark-contrast-plus-t16",
    "penumbra-dark-t16",
    "phd-t16",
    "pinky-t16",
    "pop-t16",
    "porple-t16",
    "precious-dark-eleven-t16",
    "precious-dark-fifteen-t16",
    "primer-dark-dimmed-t16",
    "primer-dark-t16",
    "purpledream-t16",
    "qualia-t16",
    "railscasts-t16",
    "rebecca-t16",
    "rose-pine-moon-t16",
    "rose-pine-t16",
    "saga-t16",
    "sandcastle-t16",
    "selenized-black-t16",
    "selenized-dark-t16",
    "seti-t16",
    "shades-of-purple-t16",
    "shadesmear-dark-t16",
    "silk-dark-t16",
    "snazzy-t16",
    "solarflare-t16",
    "solarized-dark-t16",
    "spaceduck-t16",
    "spacemacs-t16",
    "sparky-t16",
    "standardized-dark-t16",
    "stella-t16",
    "summerfruit-dark-t16",
    "synth-midnight-dark-t16",
    "tango-t16",
    "tender-t16",
    "terracotta-dark-t16",
    "tokyo-city-dark-t16",
    "tokyo-city-terminal-dark-t16",
    "tokyo-night-dark-t16",
    "tokyo-night-storm-t16",
    "tokyodark-terminal-t16",
    "tokyodark-t16",
    "tomorrow-night-eighties-t16",
    "tomorrow-night-t16",
    "tube-t16",
    "twilight-t16",
    "unikitty-dark-t16",
    "unikitty-reversible-t16",
    "uwunicorn-t16",
    "valua-t16",
    "vesper-t16",
    "vice-t16",
    "windows-10-t16",
    "windows-95-t16",
    "windows-highcontrast-t16",
    "windows-nt-t16",
    "woodland-t16",
    "xcode-dusk-t16",
    "zenbones-t16",
    "zenburn-t16",
    "random-dark-high-t16",
]

MACINTOSH_T16 class-attribute instance-attribute

MACINTOSH_T16: Literal['macintosh-t16'] = 'macintosh-t16'

Macintosh: Base-16 color style by "Rebecca Bettencourt".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

MARRAKESH_T16 class-attribute instance-attribute

MARRAKESH_T16: Literal['marrakesh-t16'] = 'marrakesh-t16'

Marrakesh: Base-16 color style by "Alexandre Gavioli".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

MATERIAL_DARKER_T16 class-attribute instance-attribute

MATERIAL_DARKER_T16: Literal['material-darker-t16'] = 'material-darker-t16'

Material Darker: Base-16 color style by "Nate Peterson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

MATERIAL_PALENIGHT_T16 class-attribute instance-attribute

MATERIAL_PALENIGHT_T16: Literal['material-palenight-t16'] = 'material-palenight-t16'

Material Palenight: Base-16 color style by "Nate Peterson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

MATERIAL_T16 class-attribute instance-attribute

MATERIAL_T16: Literal['material-t16'] = 'material-t16'

Material: Base-16 color style by "Nate Peterson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

MATERIA_T16 class-attribute instance-attribute

MATERIA_T16: Literal['materia-t16'] = 'materia-t16'

Materia: Base-16 color style by "Defman21".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

MEASURED_DARK_T16 class-attribute instance-attribute

MEASURED_DARK_T16: Literal['measured-dark-t16'] = 'measured-dark-t16'

Measured Dark: Base-16 color style by "Measured".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

MELLOW_PURPLE_T16 class-attribute instance-attribute

MELLOW_PURPLE_T16: Literal['mellow-purple-t16'] = 'mellow-purple-t16'

Mellow Purple: Base-16 color style by "gidsi".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

MOCHA_T16 class-attribute instance-attribute

MOCHA_T16: Literal['mocha-t16'] = 'mocha-t16'

Mocha: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

MONOKAI_T16 class-attribute instance-attribute

MONOKAI_T16: Literal['monokai-t16'] = 'monokai-t16'

Monokai: Base-16 color style by "Wimer Hazenberg".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

MOONLIGHT_T16 class-attribute instance-attribute

MOONLIGHT_T16: Literal['moonlight-t16'] = 'moonlight-t16'

Moonlight: Base-16 color style by "Jeremy Swinarton".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

MOUNTAIN_T16 class-attribute instance-attribute

MOUNTAIN_T16: Literal['mountain-t16'] = 'mountain-t16'

Mountain: Base-16 color style by "gnsfujiwara".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

NEBULA_T16 class-attribute instance-attribute

NEBULA_T16: Literal['nebula-t16'] = 'nebula-t16'

Nebula: Base-16 color style by "Gabriel Fontes".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

NORD_T16 class-attribute instance-attribute

NORD_T16: Literal['nord-t16'] = 'nord-t16'

Nord: Base-16 color style by "arcticicestudio".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

NOVA_T16 class-attribute instance-attribute

NOVA_T16: Literal['nova-t16'] = 'nova-t16'

Nova: Base-16 color style by "George Essig".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

NUMBER_0X96F_T16 class-attribute instance-attribute

NUMBER_0X96F_T16: Literal['0x96f-t16'] = '0x96f-t16'

0x96f: Base-16 color style by "Filip Janevski".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

NUMBER_3024_T16 class-attribute instance-attribute

NUMBER_3024_T16: Literal['3024-t16'] = '3024-t16'

3024: Base-16 color style by "Jan T. Sott".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

OCEANICNEXT_T16 class-attribute instance-attribute

OCEANICNEXT_T16: Literal['oceanicnext-t16'] = 'oceanicnext-t16'

OceanicNext: Base-16 color style.

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

OCEAN_T16 class-attribute instance-attribute

OCEAN_T16: Literal['ocean-t16'] = 'ocean-t16'

Ocean: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ONEDARK_DARK_T16 class-attribute instance-attribute

ONEDARK_DARK_T16: Literal['onedark-dark-t16'] = 'onedark-dark-t16'

OneDark Dark: Base-16 color style by "olimorris".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ONEDARK_T16 class-attribute instance-attribute

ONEDARK_T16: Literal['onedark-t16'] = 'onedark-t16'

OneDark: Base-16 color style by "Lalit Magant".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

OUTRUN_DARK_T16 class-attribute instance-attribute

OUTRUN_DARK_T16: Literal['outrun-dark-t16'] = 'outrun-dark-t16'

Outrun Dark: Base-16 color style by "Hugo Delahousse".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

OXOCARBON_DARK_T16 class-attribute instance-attribute

OXOCARBON_DARK_T16: Literal['oxocarbon-dark-t16'] = 'oxocarbon-dark-t16'

Oxocarbon Dark: Base-16 color style by "shaunsingh/IBM".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PANDORA_T16 class-attribute instance-attribute

PANDORA_T16: Literal['pandora-t16'] = 'pandora-t16'

pandora: Base-16 color style by "Cassandra Fox".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PARAISO_T16 class-attribute instance-attribute

PARAISO_T16: Literal['paraiso-t16'] = 'paraiso-t16'

Paraiso: Base-16 color style by "Jan T. Sott".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PASQUE_T16 class-attribute instance-attribute

PASQUE_T16: Literal['pasque-t16'] = 'pasque-t16'

Pasque: Base-16 color style by "Gabriel Fontes".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PENUMBRA_DARK_CONTRAST_PLUS_PLUS_T16 class-attribute instance-attribute

PENUMBRA_DARK_CONTRAST_PLUS_PLUS_T16: Literal["penumbra-dark-contrast-plus-plus-t16"] = (
    "penumbra-dark-contrast-plus-plus-t16"
)

Penumbra Dark Contrast Plus Plus: Base-16 color style by "Zachary Weiss".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PENUMBRA_DARK_CONTRAST_PLUS_T16 class-attribute instance-attribute

PENUMBRA_DARK_CONTRAST_PLUS_T16: Literal["penumbra-dark-contrast-plus-t16"] = (
    "penumbra-dark-contrast-plus-t16"
)

Penumbra Dark Contrast Plus: Base-16 color style by "Zachary Weiss".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PENUMBRA_DARK_T16 class-attribute instance-attribute

PENUMBRA_DARK_T16: Literal['penumbra-dark-t16'] = 'penumbra-dark-t16'

Penumbra Dark: Base-16 color style by "Zachary Weiss".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PHD_T16 class-attribute instance-attribute

PHD_T16: Literal['phd-t16'] = 'phd-t16'

PhD: Base-16 color style by "Hennig Hasemann".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PINKY_T16 class-attribute instance-attribute

PINKY_T16: Literal['pinky-t16'] = 'pinky-t16'

pinky: Base-16 color style by "Benjamin".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

POP_T16 class-attribute instance-attribute

POP_T16: Literal['pop-t16'] = 'pop-t16'

Pop: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PORPLE_T16 class-attribute instance-attribute

PORPLE_T16: Literal['porple-t16'] = 'porple-t16'

Porple: Base-16 color style by "Niek den Breeje".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PRECIOUS_DARK_ELEVEN_T16 class-attribute instance-attribute

PRECIOUS_DARK_ELEVEN_T16: Literal['precious-dark-eleven-t16'] = 'precious-dark-eleven-t16'

Precious Dark Eleven: Base-16 color style by "4lex4".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PRECIOUS_DARK_FIFTEEN_T16 class-attribute instance-attribute

PRECIOUS_DARK_FIFTEEN_T16: Literal['precious-dark-fifteen-t16'] = 'precious-dark-fifteen-t16'

Precious Dark Fifteen: Base-16 color style by "4lex4".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PRIMER_DARK_DIMMED_T16 class-attribute instance-attribute

PRIMER_DARK_DIMMED_T16: Literal['primer-dark-dimmed-t16'] = 'primer-dark-dimmed-t16'

Primer Dark Dimmed: Base-16 color style by "Jimmy Lin".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PRIMER_DARK_T16 class-attribute instance-attribute

PRIMER_DARK_T16: Literal['primer-dark-t16'] = 'primer-dark-t16'

Primer Dark: Base-16 color style by "Jimmy Lin".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PURPLEDREAM_T16 class-attribute instance-attribute

PURPLEDREAM_T16: Literal['purpledream-t16'] = 'purpledream-t16'

Purpledream: Base-16 color style by "malet".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

QUALIA_T16 class-attribute instance-attribute

QUALIA_T16: Literal['qualia-t16'] = 'qualia-t16'

Qualia: Base-16 color style by "isaacwhanson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

RAILSCASTS_T16 class-attribute instance-attribute

RAILSCASTS_T16: Literal['railscasts-t16'] = 'railscasts-t16'

Railscasts: Base-16 color style by "Ryan Bates".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

RANDOM_DARK_HIGH_CONTRAST_T16 class-attribute instance-attribute

RANDOM_DARK_HIGH_CONTRAST_T16: Literal['random-dark-high-t16'] = 'random-dark-high-t16'

REBECCA_T16 class-attribute instance-attribute

REBECCA_T16: Literal['rebecca-t16'] = 'rebecca-t16'

Rebecca: Base-16 color style by "Victor Borja".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ROSE_PINE_MOON_T16 class-attribute instance-attribute

ROSE_PINE_MOON_T16: Literal['rose-pine-moon-t16'] = 'rose-pine-moon-t16'

Rosé Pine Moon: Base-16 color style by "Emilia Dunfelt".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ROSE_PINE_T16 class-attribute instance-attribute

ROSE_PINE_T16: Literal['rose-pine-t16'] = 'rose-pine-t16'

Rosé Pine: Base-16 color style by "Emilia Dunfelt".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SAGA_T16 class-attribute instance-attribute

SAGA_T16: Literal['saga-t16'] = 'saga-t16'

Saga

Base-16 color style.

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SANDCASTLE_T16 class-attribute instance-attribute

SANDCASTLE_T16: Literal['sandcastle-t16'] = 'sandcastle-t16'

Sandcastle: Base-16 color style by "George Essig".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SELENIZED_BLACK_T16 class-attribute instance-attribute

SELENIZED_BLACK_T16: Literal['selenized-black-t16'] = 'selenized-black-t16'

selenized-black: Base-16 color style by "Jan Warchol / adapted to base16 by ali".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SELENIZED_DARK_T16 class-attribute instance-attribute

SELENIZED_DARK_T16: Literal['selenized-dark-t16'] = 'selenized-dark-t16'

selenized-dark: Base-16 color style by "Jan Warchol / adapted to base16 by ali".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SETI_T16 class-attribute instance-attribute

SETI_T16: Literal['seti-t16'] = 'seti-t16'

Seti UI: Base-16 color style by "".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SHADESMEAR_DARK_T16 class-attribute instance-attribute

SHADESMEAR_DARK_T16: Literal['shadesmear-dark-t16'] = 'shadesmear-dark-t16'

ShadeSmear Dark: Base-16 color style by "Kyle Giammarco".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SHADES_OF_PURPLE_T16 class-attribute instance-attribute

SHADES_OF_PURPLE_T16: Literal['shades-of-purple-t16'] = 'shades-of-purple-t16'

Shades of Purple: Base-16 color style by "Iolar Demartini Junior".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SILK_DARK_T16 class-attribute instance-attribute

SILK_DARK_T16: Literal['silk-dark-t16'] = 'silk-dark-t16'

Silk Dark: Base-16 color style by "Gabriel Fontes".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SNAZZY_T16 class-attribute instance-attribute

SNAZZY_T16: Literal['snazzy-t16'] = 'snazzy-t16'

Snazzy: Base-16 color style by "Chawye Hsu".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SOLARFLARE_T16 class-attribute instance-attribute

SOLARFLARE_T16: Literal['solarflare-t16'] = 'solarflare-t16'

Solar Flare: Base-16 color style by "Chuck Harmston".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SOLARIZED_DARK_T16 class-attribute instance-attribute

SOLARIZED_DARK_T16: Literal['solarized-dark-t16'] = 'solarized-dark-t16'

Solarized Dark: Base-16 color style by "Ethan Schoonover".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SPACEDUCK_T16 class-attribute instance-attribute

SPACEDUCK_T16: Literal['spaceduck-t16'] = 'spaceduck-t16'

Spaceduck: Base-16 color style by "Guillermo Rodriguez".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SPACEMACS_T16 class-attribute instance-attribute

SPACEMACS_T16: Literal['spacemacs-t16'] = 'spacemacs-t16'

Spacemacs: Base-16 color style by "Nasser Alshammari".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SPARKY_T16 class-attribute instance-attribute

SPARKY_T16: Literal['sparky-t16'] = 'sparky-t16'

Sparky: Base-16 color style by "Leila Sother".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

STANDARDIZED_DARK_T16 class-attribute instance-attribute

STANDARDIZED_DARK_T16: Literal['standardized-dark-t16'] = 'standardized-dark-t16'

standardized-dark: Base-16 color style by "ali".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

STELLA_T16 class-attribute instance-attribute

STELLA_T16: Literal['stella-t16'] = 'stella-t16'

Stella: Base-16 color style by "Shrimpram".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SUMMERFRUIT_DARK_T16 class-attribute instance-attribute

SUMMERFRUIT_DARK_T16: Literal['summerfruit-dark-t16'] = 'summerfruit-dark-t16'

Summerfruit Dark: Base-16 color style by "Christopher Corley".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SYNTH_MIDNIGHT_DARK_T16 class-attribute instance-attribute

SYNTH_MIDNIGHT_DARK_T16: Literal['synth-midnight-dark-t16'] = 'synth-midnight-dark-t16'

Synth Midnight Terminal Dark: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TANGO_T16 class-attribute instance-attribute

TANGO_T16: Literal['tango-t16'] = 'tango-t16'

Tango: Base-16 color style by "@Schnouki, based on the Tango Desktop Project".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TENDER_T16 class-attribute instance-attribute

TENDER_T16: Literal['tender-t16'] = 'tender-t16'

tender: Base-16 color style by "Jacobo Tabernero".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TERRACOTTA_DARK_T16 class-attribute instance-attribute

TERRACOTTA_DARK_T16: Literal['terracotta-dark-t16'] = 'terracotta-dark-t16'

Terracotta Dark: Base-16 color style by "Alexander Rossell Hayes".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOKYODARK_T16 class-attribute instance-attribute

TOKYODARK_T16: Literal['tokyodark-t16'] = 'tokyodark-t16'

Tokyodark: Base-16 color style by "Jamy Golden".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOKYODARK_TERMINAL_T16 class-attribute instance-attribute

TOKYODARK_TERMINAL_T16: Literal['tokyodark-terminal-t16'] = 'tokyodark-terminal-t16'

Tokyodark Terminal: Base-16 color style by "Tiagovla".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOKYO_CITY_DARK_T16 class-attribute instance-attribute

TOKYO_CITY_DARK_T16: Literal['tokyo-city-dark-t16'] = 'tokyo-city-dark-t16'

Tokyo City Dark: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOKYO_CITY_TERMINAL_DARK_T16 class-attribute instance-attribute

TOKYO_CITY_TERMINAL_DARK_T16: Literal["tokyo-city-terminal-dark-t16"] = (
    "tokyo-city-terminal-dark-t16"
)

Tokyo City Terminal Dark: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOKYO_NIGHT_DARK_T16 class-attribute instance-attribute

TOKYO_NIGHT_DARK_T16: Literal['tokyo-night-dark-t16'] = 'tokyo-night-dark-t16'

Tokyo Night Dark: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOKYO_NIGHT_STORM_T16 class-attribute instance-attribute

TOKYO_NIGHT_STORM_T16: Literal['tokyo-night-storm-t16'] = 'tokyo-night-storm-t16'

Tokyo Night Storm: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOMORROW_NIGHT_EIGHTIES_T16 class-attribute instance-attribute

TOMORROW_NIGHT_EIGHTIES_T16: Literal['tomorrow-night-eighties-t16'] = 'tomorrow-night-eighties-t16'

Tomorrow Night Eighties: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOMORROW_NIGHT_T16 class-attribute instance-attribute

TOMORROW_NIGHT_T16: Literal['tomorrow-night-t16'] = 'tomorrow-night-t16'

Tomorrow Night: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TUBE_T16 class-attribute instance-attribute

TUBE_T16: Literal['tube-t16'] = 'tube-t16'

London Tube: Base-16 color style by "Jan T. Sott".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TWILIGHT_T16 class-attribute instance-attribute

TWILIGHT_T16: Literal['twilight-t16'] = 'twilight-t16'

Twilight: Base-16 color style by "David Hart".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

UNIKITTY_DARK_T16 class-attribute instance-attribute

UNIKITTY_DARK_T16: Literal['unikitty-dark-t16'] = 'unikitty-dark-t16'

Unikitty Dark: Base-16 color style by "Josh W Lewis".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

UNIKITTY_REVERSIBLE_T16 class-attribute instance-attribute

UNIKITTY_REVERSIBLE_T16: Literal['unikitty-reversible-t16'] = 'unikitty-reversible-t16'

Unikitty Reversible: Base-16 color style by "Josh W Lewis".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

UWUNICORN_T16 class-attribute instance-attribute

UWUNICORN_T16: Literal['uwunicorn-t16'] = 'uwunicorn-t16'

UwUnicorn: Base-16 color style by "Fernando Marques".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

VALUA_T16 class-attribute instance-attribute

VALUA_T16: Literal['valua-t16'] = 'valua-t16'

Valua: Base-16 color style by "Nonetrix".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

VESPER_T16 class-attribute instance-attribute

VESPER_T16: Literal['vesper-t16'] = 'vesper-t16'

Vesper: Base-16 color style by "FormalSnake".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

VICE_T16 class-attribute instance-attribute

VICE_T16: Literal['vice-t16'] = 'vice-t16'

vice: Base-16 color style by "Thomas Leon Highbaugh".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

WINDOWS_10_T16 class-attribute instance-attribute

WINDOWS_10_T16: Literal['windows-10-t16'] = 'windows-10-t16'

Windows 10: Base-16 color style by "Fergus Collins".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

WINDOWS_95_T16 class-attribute instance-attribute

WINDOWS_95_T16: Literal['windows-95-t16'] = 'windows-95-t16'

Windows 95: Base-16 color style by "Fergus Collins".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

WINDOWS_HIGHCONTRAST_T16 class-attribute instance-attribute

WINDOWS_HIGHCONTRAST_T16: Literal['windows-highcontrast-t16'] = 'windows-highcontrast-t16'

Windows High Contrast: Base-16 color style by "Fergus Collins".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

WINDOWS_NT_T16 class-attribute instance-attribute

WINDOWS_NT_T16: Literal['windows-nt-t16'] = 'windows-nt-t16'

Windows NT: Base-16 color style by "Fergus Collins".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

WOODLAND_T16 class-attribute instance-attribute

WOODLAND_T16: Literal['woodland-t16'] = 'woodland-t16'

Woodland: Base-16 color style by "Jay Cornwall".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

XCODE_DUSK_T16 class-attribute instance-attribute

XCODE_DUSK_T16: Literal['xcode-dusk-t16'] = 'xcode-dusk-t16'

XCode Dusk: Base-16 color style by "Elsa Gonsiorowski".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ZENBONES_T16 class-attribute instance-attribute

ZENBONES_T16: Literal['zenbones-t16'] = 'zenbones-t16'

Zenbones: Base-16 color style by "mcchrish".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ZENBURN_T16 class-attribute instance-attribute

ZENBURN_T16: Literal['zenburn-t16'] = 'zenburn-t16'

Zenburn: Base-16 color style by "elnawe".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DarkLowContrastColorStyles

Bases: DarkLowContrastTintedThemingBase16ColorStyles, DarkLowContrastPygmentsColorStyles

All dark, lower contrast color styles for syntax highlighting. See superclasses for more details on the color styles.

ATTRIBUTE DESCRIPTION
Literals

RANDOM_DARK_LOW_CONTRAST

TYPE: Literal['random-dark-low']

Source code in src/omnipy/shared/enums/colorstyles.py
class DarkLowContrastColorStyles(
        DarkLowContrastTintedThemingBase16ColorStyles,
        DarkLowContrastPygmentsColorStyles,
):
    """
    All dark, lower contrast color styles for syntax highlighting. See
    superclasses for more details on the color styles.
    """

    Literals = Literal[DarkLowContrastTintedThemingBase16ColorStyles.Literals,
                       DarkLowContrastPygmentsColorStyles.Literals,
                       'random-dark-low']

    RANDOM_DARK_LOW_CONTRAST: Literal['random-dark-low'] = 'random-dark-low'

Literals class-attribute instance-attribute

RANDOM_DARK_LOW_CONTRAST class-attribute instance-attribute

RANDOM_DARK_LOW_CONTRAST: Literal['random-dark-low'] = 'random-dark-low'

DarkLowContrastPygmentsColorStyles

Bases: LiteralEnum[str]

ATTRIBUTE DESCRIPTION
COFFEE_PYGMENTS

TYPE: Literal['coffee-pygments']

DRACULA_PYGMENTS

TYPE: Literal['dracula-pygments']

FRUITY_PYGMENTS

TYPE: Literal['fruity-pygments']

GRUVBOX_DARK_PYGMENTS

TYPE: Literal['gruvbox-dark-pygments']

INKPOT_PYGMENTS

TYPE: Literal['inkpot-pygments']

Literals

MATERIAL_PYGMENTS

TYPE: Literal['material-pygments']

NATIVE_PYGMENTS

TYPE: Literal['native-pygments']

NORD_DARKER_PYGMENTS

TYPE: Literal['nord-darker-pygments']

NORD_PYGMENTS

TYPE: Literal['nord-pygments']

ONE_DARK_PYGMENTS

TYPE: Literal['one-dark-pygments']

PARAISO_DARK_PYGMENTS

TYPE: Literal['paraiso-dark-pygments']

SOLARIZED_DARK_PYGMENTS

TYPE: Literal['solarized-dark-pygments']

STATA_DARK_PYGMENTS

TYPE: Literal['stata-dark-pygments']

VIM_PYGMENTS

TYPE: Literal['vim-pygments']

ZENBURN_PYGMENTS

TYPE: Literal['zenburn-pygments']

Source code in src/omnipy/shared/enums/colorstyles.py
class DarkLowContrastPygmentsColorStyles(LiteralEnum[str]):
    __doc__ = dedent("""
        Lower contrast dark color styles for syntax highlighting.
        """) + _GENERAL_PYGMENTS_COLOR_STYLE_DOCSTRING

    Literals = Literal[
        'coffee-pygments',
        'dracula-pygments',
        'fruity-pygments',
        'gruvbox-dark-pygments',
        'inkpot-pygments',
        'material-pygments',
        'native-pygments',
        'nord-darker-pygments',
        'nord-pygments',
        'one-dark-pygments',
        'paraiso-dark-pygments',
        'solarized-dark-pygments',
        'stata-dark-pygments',
        'vim-pygments',
        'zenburn-pygments',
    ]

    COFFEE_PYGMENTS: Literal['coffee-pygments'] = 'coffee-pygments'
    DRACULA_PYGMENTS: Literal['dracula-pygments'] = 'dracula-pygments'
    FRUITY_PYGMENTS: Literal['fruity-pygments'] = 'fruity-pygments'
    GRUVBOX_DARK_PYGMENTS: Literal['gruvbox-dark-pygments'] = 'gruvbox-dark-pygments'
    INKPOT_PYGMENTS: Literal['inkpot-pygments'] = 'inkpot-pygments'
    MATERIAL_PYGMENTS: Literal['material-pygments'] = 'material-pygments'
    NATIVE_PYGMENTS: Literal['native-pygments'] = 'native-pygments'
    NORD_DARKER_PYGMENTS: Literal['nord-darker-pygments'] = 'nord-darker-pygments'
    NORD_PYGMENTS: Literal['nord-pygments'] = 'nord-pygments'
    ONE_DARK_PYGMENTS: Literal['one-dark-pygments'] = 'one-dark-pygments'
    PARAISO_DARK_PYGMENTS: Literal['paraiso-dark-pygments'] = 'paraiso-dark-pygments'
    SOLARIZED_DARK_PYGMENTS: Literal['solarized-dark-pygments'] = 'solarized-dark-pygments'
    STATA_DARK_PYGMENTS: Literal['stata-dark-pygments'] = 'stata-dark-pygments'
    VIM_PYGMENTS: Literal['vim-pygments'] = 'vim-pygments'
    ZENBURN_PYGMENTS: Literal['zenburn-pygments'] = 'zenburn-pygments'

COFFEE_PYGMENTS class-attribute instance-attribute

COFFEE_PYGMENTS: Literal['coffee-pygments'] = 'coffee-pygments'

DRACULA_PYGMENTS class-attribute instance-attribute

DRACULA_PYGMENTS: Literal['dracula-pygments'] = 'dracula-pygments'

FRUITY_PYGMENTS class-attribute instance-attribute

FRUITY_PYGMENTS: Literal['fruity-pygments'] = 'fruity-pygments'

GRUVBOX_DARK_PYGMENTS class-attribute instance-attribute

GRUVBOX_DARK_PYGMENTS: Literal['gruvbox-dark-pygments'] = 'gruvbox-dark-pygments'

INKPOT_PYGMENTS class-attribute instance-attribute

INKPOT_PYGMENTS: Literal['inkpot-pygments'] = 'inkpot-pygments'

Literals class-attribute instance-attribute

Literals = Literal[
    "coffee-pygments",
    "dracula-pygments",
    "fruity-pygments",
    "gruvbox-dark-pygments",
    "inkpot-pygments",
    "material-pygments",
    "native-pygments",
    "nord-darker-pygments",
    "nord-pygments",
    "one-dark-pygments",
    "paraiso-dark-pygments",
    "solarized-dark-pygments",
    "stata-dark-pygments",
    "vim-pygments",
    "zenburn-pygments",
]

MATERIAL_PYGMENTS class-attribute instance-attribute

MATERIAL_PYGMENTS: Literal['material-pygments'] = 'material-pygments'

NATIVE_PYGMENTS class-attribute instance-attribute

NATIVE_PYGMENTS: Literal['native-pygments'] = 'native-pygments'

NORD_DARKER_PYGMENTS class-attribute instance-attribute

NORD_DARKER_PYGMENTS: Literal['nord-darker-pygments'] = 'nord-darker-pygments'

NORD_PYGMENTS class-attribute instance-attribute

NORD_PYGMENTS: Literal['nord-pygments'] = 'nord-pygments'

ONE_DARK_PYGMENTS class-attribute instance-attribute

ONE_DARK_PYGMENTS: Literal['one-dark-pygments'] = 'one-dark-pygments'

PARAISO_DARK_PYGMENTS class-attribute instance-attribute

PARAISO_DARK_PYGMENTS: Literal['paraiso-dark-pygments'] = 'paraiso-dark-pygments'

SOLARIZED_DARK_PYGMENTS class-attribute instance-attribute

SOLARIZED_DARK_PYGMENTS: Literal['solarized-dark-pygments'] = 'solarized-dark-pygments'

STATA_DARK_PYGMENTS class-attribute instance-attribute

STATA_DARK_PYGMENTS: Literal['stata-dark-pygments'] = 'stata-dark-pygments'

VIM_PYGMENTS class-attribute instance-attribute

VIM_PYGMENTS: Literal['vim-pygments'] = 'vim-pygments'

ZENBURN_PYGMENTS class-attribute instance-attribute

ZENBURN_PYGMENTS: Literal['zenburn-pygments'] = 'zenburn-pygments'

DarkLowContrastTintedThemingBase16ColorStyles

Bases: LiteralEnum[str]

ATTRIBUTE DESCRIPTION
APPRENTICE_T16

Apprentice: Base-16 color style by "romainl".

TYPE: Literal['apprentice-t16']

BROGRAMMER_T16

Brogrammer: Base-16 color style by "Vik Ramanujam".

TYPE: Literal['brogrammer-t16']

BRUSHTREES_DARK_T16

Brush Trees Dark: Base-16 color style by "Abraham White".

TYPE: Literal['brushtrees-dark-t16']

ERIS_T16

eris: Base-16 color style by "ed".

TYPE: Literal['eris-t16']

EVA_DIM_T16

Eva Dim: Base-16 color style by "kjakapat".

TYPE: Literal['eva-dim-t16']

EVA_T16

Eva: Base-16 color style by "kjakapat".

TYPE: Literal['eva-t16']

EVERFOREST_DARK_MEDIUM_T16

Everforest Dark Medium: Base-16 color style by "Sainnhe Park".

TYPE: Literal['everforest-dark-medium-t16']

ICY_T16

Icy Dark: Base-16 color style by "icyphox".

TYPE: Literal['icy-t16']

LIME_T16

lime: Base-16 color style by "limelier".

TYPE: Literal['lime-t16']

Literals

MATERIAL_VIVID_T16

Material Vivid: Base-16 color style by "joshyrobot".

TYPE: Literal['material-vivid-t16']

PAPERCOLOR_DARK_T16

PaperColor Dark: Base-16 color style by "Jon Leopard".

TYPE: Literal['papercolor-dark-t16']

PICO_T16

Pico: Base-16 color style by "PICO-8".

TYPE: Literal['pico-t16']

RANDOM_DARK_LOW_CONTRAST_T16

TYPE: Literal['random-dark-low-t16']

SUMMERCAMP_T16

summercamp: Base-16 color style by "zoe firi".

TYPE: Literal['summercamp-t16']

TAROT_T16

tarot: Base-16 color style by "ed".

TYPE: Literal['tarot-t16']

TOKYO_NIGHT_MOON_T16

Tokyo Night Moon: Base-16 color style by "Ólafur Bjarki Bogason".

TYPE: Literal['tokyo-night-moon-t16']

TOKYO_NIGHT_TERMINAL_DARK_T16

Tokyo Night Terminal Dark: Base-16 color style by "Michaël Ball".

TYPE: Literal['tokyo-night-terminal-dark-t16']

TOKYO_NIGHT_TERMINAL_STORM_T16

Tokyo Night Terminal Storm: Base-16 color style by "Michaël Ball".

TYPE: Literal['tokyo-night-terminal-storm-t16']

VULCAN_T16

vulcan: Base-16 color style by "Andrey Varfolomeev".

TYPE: Literal['vulcan-t16']

Source code in src/omnipy/shared/enums/colorstyles.py
class DarkLowContrastTintedThemingBase16ColorStyles(LiteralEnum[str]):
    f"""
    {_GENERAL_T16_COLOR_STYLE_DOCSTRING.format(description='Dark, lower contrast')}

    These styles have lower-level contrast that did not meet {_COLOR_CONTRAST_TEXT}
    """
    Literals = Literal['apprentice-t16',
                       'brogrammer-t16',
                       'brushtrees-dark-t16',
                       'eris-t16',
                       'eva-dim-t16',
                       'eva-t16',
                       'everforest-dark-medium-t16',
                       'icy-t16',
                       'lime-t16',
                       'material-vivid-t16',
                       'papercolor-dark-t16',
                       'pico-t16',
                       'summercamp-t16',
                       'tarot-t16',
                       'tokyo-night-moon-t16',
                       'tokyo-night-terminal-dark-t16',
                       'tokyo-night-terminal-storm-t16',
                       'vulcan-t16',
                       'random-dark-low-t16']

    APPRENTICE_T16: Literal['apprentice-t16'] = 'apprentice-t16'
    """
    Apprentice: Base-16 color style by "romainl".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    BROGRAMMER_T16: Literal['brogrammer-t16'] = 'brogrammer-t16'
    """
    Brogrammer: Base-16 color style by "Vik Ramanujam".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    BRUSHTREES_DARK_T16: Literal['brushtrees-dark-t16'] = 'brushtrees-dark-t16'
    """
    Brush Trees Dark: Base-16 color style by "Abraham White".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    ERIS_T16: Literal['eris-t16'] = 'eris-t16'
    """
    eris: Base-16 color style by "ed".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    EVA_DIM_T16: Literal['eva-dim-t16'] = 'eva-dim-t16'
    """
    Eva Dim: Base-16 color style by "kjakapat".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    EVA_T16: Literal['eva-t16'] = 'eva-t16'
    """
    Eva: Base-16 color style by "kjakapat".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    EVERFOREST_DARK_MEDIUM_T16: Literal['everforest-dark-medium-t16'] = 'everforest-dark-medium-t16'
    """
    Everforest Dark Medium: Base-16 color style by "Sainnhe Park".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    ICY_T16: Literal['icy-t16'] = 'icy-t16'
    """
    Icy Dark: Base-16 color style by "icyphox".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    LIME_T16: Literal['lime-t16'] = 'lime-t16'
    """
    lime: Base-16 color style by "limelier".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    MATERIAL_VIVID_T16: Literal['material-vivid-t16'] = 'material-vivid-t16'
    """
    Material Vivid: Base-16 color style by "joshyrobot".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    PAPERCOLOR_DARK_T16: Literal['papercolor-dark-t16'] = 'papercolor-dark-t16'
    """
    PaperColor Dark: Base-16 color style by "Jon Leopard".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    PICO_T16: Literal['pico-t16'] = 'pico-t16'
    """
    Pico: Base-16 color style by "PICO-8".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    SUMMERCAMP_T16: Literal['summercamp-t16'] = 'summercamp-t16'
    """
    summercamp: Base-16 color style by "zoe firi".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    TAROT_T16: Literal['tarot-t16'] = 'tarot-t16'
    """
    tarot: Base-16 color style by "ed".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    TOKYO_NIGHT_MOON_T16: Literal['tokyo-night-moon-t16'] = 'tokyo-night-moon-t16'
    """
    Tokyo Night Moon: Base-16 color style by "Ólafur Bjarki Bogason".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    TOKYO_NIGHT_TERMINAL_DARK_T16: Literal[
        'tokyo-night-terminal-dark-t16'] = 'tokyo-night-terminal-dark-t16'
    """
    Tokyo Night Terminal Dark: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    TOKYO_NIGHT_TERMINAL_STORM_T16: Literal[
        'tokyo-night-terminal-storm-t16'] = 'tokyo-night-terminal-storm-t16'
    """
    Tokyo Night Terminal Storm: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    VULCAN_T16: Literal['vulcan-t16'] = 'vulcan-t16'
    """
    vulcan: Base-16 color style by "Andrey Varfolomeev".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a dark variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    RANDOM_DARK_LOW_CONTRAST_T16: Literal['random-dark-low-t16'] = 'random-dark-low-t16'

APPRENTICE_T16 class-attribute instance-attribute

APPRENTICE_T16: Literal['apprentice-t16'] = 'apprentice-t16'

Apprentice: Base-16 color style by "romainl".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BROGRAMMER_T16 class-attribute instance-attribute

BROGRAMMER_T16: Literal['brogrammer-t16'] = 'brogrammer-t16'

Brogrammer: Base-16 color style by "Vik Ramanujam".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

BRUSHTREES_DARK_T16 class-attribute instance-attribute

BRUSHTREES_DARK_T16: Literal['brushtrees-dark-t16'] = 'brushtrees-dark-t16'

Brush Trees Dark: Base-16 color style by "Abraham White".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ERIS_T16 class-attribute instance-attribute

ERIS_T16: Literal['eris-t16'] = 'eris-t16'

eris: Base-16 color style by "ed".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EVA_DIM_T16 class-attribute instance-attribute

EVA_DIM_T16: Literal['eva-dim-t16'] = 'eva-dim-t16'

Eva Dim: Base-16 color style by "kjakapat".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EVA_T16 class-attribute instance-attribute

EVA_T16: Literal['eva-t16'] = 'eva-t16'

Eva: Base-16 color style by "kjakapat".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EVERFOREST_DARK_MEDIUM_T16 class-attribute instance-attribute

EVERFOREST_DARK_MEDIUM_T16: Literal['everforest-dark-medium-t16'] = 'everforest-dark-medium-t16'

Everforest Dark Medium: Base-16 color style by "Sainnhe Park".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ICY_T16 class-attribute instance-attribute

ICY_T16: Literal['icy-t16'] = 'icy-t16'

Icy Dark: Base-16 color style by "icyphox".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

LIME_T16 class-attribute instance-attribute

LIME_T16: Literal['lime-t16'] = 'lime-t16'

lime: Base-16 color style by "limelier".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

Literals class-attribute instance-attribute

Literals = Literal[
    "apprentice-t16",
    "brogrammer-t16",
    "brushtrees-dark-t16",
    "eris-t16",
    "eva-dim-t16",
    "eva-t16",
    "everforest-dark-medium-t16",
    "icy-t16",
    "lime-t16",
    "material-vivid-t16",
    "papercolor-dark-t16",
    "pico-t16",
    "summercamp-t16",
    "tarot-t16",
    "tokyo-night-moon-t16",
    "tokyo-night-terminal-dark-t16",
    "tokyo-night-terminal-storm-t16",
    "vulcan-t16",
    "random-dark-low-t16",
]

MATERIAL_VIVID_T16 class-attribute instance-attribute

MATERIAL_VIVID_T16: Literal['material-vivid-t16'] = 'material-vivid-t16'

Material Vivid: Base-16 color style by "joshyrobot".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PAPERCOLOR_DARK_T16 class-attribute instance-attribute

PAPERCOLOR_DARK_T16: Literal['papercolor-dark-t16'] = 'papercolor-dark-t16'

PaperColor Dark: Base-16 color style by "Jon Leopard".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PICO_T16 class-attribute instance-attribute

PICO_T16: Literal['pico-t16'] = 'pico-t16'

Pico: Base-16 color style by "PICO-8".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

RANDOM_DARK_LOW_CONTRAST_T16 class-attribute instance-attribute

RANDOM_DARK_LOW_CONTRAST_T16: Literal['random-dark-low-t16'] = 'random-dark-low-t16'

SUMMERCAMP_T16 class-attribute instance-attribute

SUMMERCAMP_T16: Literal['summercamp-t16'] = 'summercamp-t16'

summercamp: Base-16 color style by "zoe firi".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TAROT_T16 class-attribute instance-attribute

TAROT_T16: Literal['tarot-t16'] = 'tarot-t16'

tarot: Base-16 color style by "ed".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOKYO_NIGHT_MOON_T16 class-attribute instance-attribute

TOKYO_NIGHT_MOON_T16: Literal['tokyo-night-moon-t16'] = 'tokyo-night-moon-t16'

Tokyo Night Moon: Base-16 color style by "Ólafur Bjarki Bogason".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOKYO_NIGHT_TERMINAL_DARK_T16 class-attribute instance-attribute

TOKYO_NIGHT_TERMINAL_DARK_T16: Literal["tokyo-night-terminal-dark-t16"] = (
    "tokyo-night-terminal-dark-t16"
)

Tokyo Night Terminal Dark: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOKYO_NIGHT_TERMINAL_STORM_T16 class-attribute instance-attribute

TOKYO_NIGHT_TERMINAL_STORM_T16: Literal["tokyo-night-terminal-storm-t16"] = (
    "tokyo-night-terminal-storm-t16"
)

Tokyo Night Terminal Storm: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

VULCAN_T16 class-attribute instance-attribute

VULCAN_T16: Literal['vulcan-t16'] = 'vulcan-t16'

vulcan: Base-16 color style by "Andrey Varfolomeev".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a dark variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DarkTintedThemingBase16ColorStyles

Bases: DarkHighContrastTintedThemingBase16ColorStyles, DarkLowContrastTintedThemingBase16ColorStyles

ATTRIBUTE DESCRIPTION
Literals

RANDOM_DARK_T16

TYPE: Literal['random-dark-t16']

Source code in src/omnipy/shared/enums/colorstyles.py
class DarkTintedThemingBase16ColorStyles(
        DarkHighContrastTintedThemingBase16ColorStyles,
        DarkLowContrastTintedThemingBase16ColorStyles,
):
    f"""
    {_GENERAL_T16_COLOR_STYLE_DOCSTRING.format(description='All dark')}
    """

    Literals = Literal[DarkHighContrastTintedThemingBase16ColorStyles.Literals,
                       DarkLowContrastTintedThemingBase16ColorStyles.Literals,
                       'random-dark-t16']

    RANDOM_DARK_T16: Literal['random-dark-t16'] = 'random-dark-t16'

Literals class-attribute instance-attribute

RANDOM_DARK_T16 class-attribute instance-attribute

RANDOM_DARK_T16: Literal['random-dark-t16'] = 'random-dark-t16'

LightColorStyles

Bases: LightHighContrastColorStyles, LightLowContrastColorStyles

All light color styles for syntax highlighting. See subclasses for more details on the color styles.

ATTRIBUTE DESCRIPTION
Literals

RANDOM_LIGHT

TYPE: Literal['random-light']

Source code in src/omnipy/shared/enums/colorstyles.py
class LightColorStyles(
        LightHighContrastColorStyles,
        LightLowContrastColorStyles,
):
    """
    All light color styles for syntax highlighting. See subclasses for more
    details on the color styles.
    """

    Literals = Literal[LightHighContrastColorStyles.Literals,
                       LightLowContrastColorStyles.Literals,
                       'random-light']

    RANDOM_LIGHT: Literal['random-light'] = 'random-light'

Literals class-attribute instance-attribute

RANDOM_LIGHT class-attribute instance-attribute

RANDOM_LIGHT: Literal['random-light'] = 'random-light'

LightHighContrastColorStyles

Bases: LightHighContrastTintedThemingBase16ColorStyles, LightHighContrastPygmentsColorStyles

All light, high contrast color styles for syntax highlighting. See superclasses for more details on the color styles.

ATTRIBUTE DESCRIPTION
Literals

RANDOM_LIGHT_HIGH_CONTRAST

TYPE: Literal['random-light-high']

Source code in src/omnipy/shared/enums/colorstyles.py
class LightHighContrastColorStyles(
        LightHighContrastTintedThemingBase16ColorStyles,
        LightHighContrastPygmentsColorStyles,
):
    """
    All light, high contrast color styles for syntax highlighting. See
    superclasses for more details on the color styles.
    """

    Literals = Literal[LightHighContrastTintedThemingBase16ColorStyles.Literals,
                       LightHighContrastPygmentsColorStyles.Literals,
                       'random-light-high']

    RANDOM_LIGHT_HIGH_CONTRAST: Literal['random-light-high'] = 'random-light-high'

Literals class-attribute instance-attribute

RANDOM_LIGHT_HIGH_CONTRAST class-attribute instance-attribute

RANDOM_LIGHT_HIGH_CONTRAST: Literal['random-light-high'] = 'random-light-high'

LightHighContrastPygmentsColorStyles

Bases: LiteralEnum[str]

ATTRIBUTE DESCRIPTION
BW_PYGMENTS

TYPE: Literal['bw-pygments']

DEFAULT_PYGMENTS

TYPE: Literal['default-pygments']

Literals

SAS_PYGMENTS

TYPE: Literal['sas-pygments']

STAROFFICE_PYGMENTS

TYPE: Literal['staroffice-pygments']

XCODE_PYGMENTS

TYPE: Literal['xcode-pygments']

Source code in src/omnipy/shared/enums/colorstyles.py
class LightHighContrastPygmentsColorStyles(LiteralEnum[str]):
    __doc__ = dedent("""
        High contrast light color styles for syntax highlighting.
        """) + _GENERAL_PYGMENTS_COLOR_STYLE_DOCSTRING

    Literals = Literal[
        'bw-pygments',
        'default-pygments',
        'sas-pygments',
        'staroffice-pygments',
        'xcode-pygments',
    ]

    BW_PYGMENTS: Literal['bw-pygments'] = 'bw-pygments'
    DEFAULT_PYGMENTS: Literal['default-pygments'] = 'default-pygments'
    SAS_PYGMENTS: Literal['sas-pygments'] = 'sas-pygments'
    STAROFFICE_PYGMENTS: Literal['staroffice-pygments'] = 'staroffice-pygments'
    XCODE_PYGMENTS: Literal['xcode-pygments'] = 'xcode-pygments'

BW_PYGMENTS class-attribute instance-attribute

BW_PYGMENTS: Literal['bw-pygments'] = 'bw-pygments'

DEFAULT_PYGMENTS class-attribute instance-attribute

DEFAULT_PYGMENTS: Literal['default-pygments'] = 'default-pygments'

Literals class-attribute instance-attribute

Literals = Literal[
    "bw-pygments", "default-pygments", "sas-pygments", "staroffice-pygments", "xcode-pygments"
]

SAS_PYGMENTS class-attribute instance-attribute

SAS_PYGMENTS: Literal['sas-pygments'] = 'sas-pygments'

STAROFFICE_PYGMENTS class-attribute instance-attribute

STAROFFICE_PYGMENTS: Literal['staroffice-pygments'] = 'staroffice-pygments'

XCODE_PYGMENTS class-attribute instance-attribute

XCODE_PYGMENTS: Literal['xcode-pygments'] = 'xcode-pygments'

LightHighContrastTintedThemingBase16ColorStyles

Bases: LiteralEnum[str]

ATTRIBUTE DESCRIPTION
ATELIER_CAVE_LIGHT_T16

Atelier Cave Light: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-cave-light-t16']

ATELIER_DUNE_LIGHT_T16

Atelier Dune Light: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-dune-light-t16']

ATELIER_ESTUARY_LIGHT_T16

Atelier Estuary Light: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-estuary-light-t16']

ATELIER_FOREST_LIGHT_T16

Atelier Forest Light: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-forest-light-t16']

ATELIER_HEATH_LIGHT_T16

Atelier Heath Light: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-heath-light-t16']

ATELIER_LAKESIDE_LIGHT_T16

Atelier Lakeside Light: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-lakeside-light-t16']

ATELIER_PLATEAU_LIGHT_T16

Atelier Plateau Light: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-plateau-light-t16']

ATELIER_SAVANNA_LIGHT_T16

Atelier Savanna Light: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-savanna-light-t16']

ATELIER_SEASIDE_LIGHT_T16

Atelier Seaside Light: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-seaside-light-t16']

ATELIER_SULPHURPOOL_LIGHT_T16

Atelier Sulphurpool Light: Base-16 color style by "Bram de Haan".

TYPE: Literal['atelier-sulphurpool-light-t16']

AYU_LIGHT_T16

Ayu Light: Base-16 color style by "Khue Nguyen".

TYPE: Literal['ayu-light-t16']

CATPPUCCIN_LATTE_T16

Catppuccin Latte: Base-16 color style.

TYPE: Literal['catppuccin-latte-t16']

CHARCOAL_LIGHT_T16

Charcoal Light: Base-16 color style by "Mubin Muhammad".

TYPE: Literal['charcoal-light-t16']

CHICAGO_DAY_T16

Chicago Day: Base-16 color style by "Wendell, Ryan".

TYPE: Literal['chicago-day-t16']

CHINOISERIE_T16

Chinoiserie: Base-16 color style by "Di Wang".

TYPE: Literal['chinoiserie-t16']

CLASSIC_LIGHT_T16

Classic Light: Base-16 color style by "Jason Heeris".

TYPE: Literal['classic-light-t16']

CUPERTINO_T16

Cupertino: Base-16 color style by "Defman21".

TYPE: Literal['cupertino-t16']

DANQING_LIGHT_T16

DanQing Light: Base-16 color style by "Wenhan Zhu".

TYPE: Literal['danqing-light-t16']

DA_ONE_PAPER_T16

Da One Paper: Base-16 color style by "NNB".

TYPE: Literal['da-one-paper-t16']

DA_ONE_WHITE_T16

Da One White: Base-16 color style by "NNB".

TYPE: Literal['da-one-white-t16']

DEFAULT_LIGHT_T16

Default Light: Base-16 color style by "Chris Kempson".

TYPE: Literal['default-light-t16']

DIRTYSEA_T16

dirtysea: Base-16 color style by "Kahlil Hodgson".

TYPE: Literal['dirtysea-t16']

EDGE_LIGHT_T16

Edge Light: Base-16 color style by "cjayross".

TYPE: Literal['edge-light-t16']

EMBERS_LIGHT_T16

Embers Light: Base-16 color style by "Jannik Siebert".

TYPE: Literal['embers-light-t16']

EMIL_T16

emil: Base-16 color style by "limelier".

TYPE: Literal['emil-t16']

EQUILIBRIUM_GRAY_LIGHT_T16

Equilibrium Gray Light: Base-16 color style by "Carlo Abelli".

TYPE: Literal['equilibrium-gray-light-t16']

EQUILIBRIUM_LIGHT_T16

Equilibrium Light: Base-16 color style by "Carlo Abelli".

TYPE: Literal['equilibrium-light-t16']

FRUIT_SODA_T16

Fruit Soda: Base-16 color style by "jozip".

TYPE: Literal['fruit-soda-t16']

GITHUB_T16

Github: Base-16 color style by "Tinted Theming".

TYPE: Literal['github-t16']

GOOGLE_LIGHT_T16

Google Light: Base-16 color style by "Seth Wright".

TYPE: Literal['google-light-t16']

GRAYSCALE_LIGHT_T16

Grayscale Light: Base-16 color style by "Alexandre Gavioli".

TYPE: Literal['grayscale-light-t16']

GRUVBOX_LIGHT_HARD_T16

Gruvbox light, hard: Base-16 color style by "Dawid Kurek".

TYPE: Literal['gruvbox-light-hard-t16']

GRUVBOX_LIGHT_MEDIUM_T16

Gruvbox light, medium: Base-16 color style by "Dawid Kurek".

TYPE: Literal['gruvbox-light-medium-t16']

GRUVBOX_LIGHT_SOFT_T16

Gruvbox light, soft: Base-16 color style by "Dawid Kurek".

TYPE: Literal['gruvbox-light-soft-t16']

GRUVBOX_LIGHT_T16

Gruvbox Light: Base-16 color style by "Tinted Theming".

TYPE: Literal['gruvbox-light-t16']

GRUVBOX_MATERIAL_LIGHT_HARD_T16

Gruvbox Material Light, Hard: Base-16 color style by "Mayush Kumar".

TYPE: Literal['gruvbox-material-light-hard-t16']

GRUVBOX_MATERIAL_LIGHT_MEDIUM_T16

Gruvbox Material Light, Medium: Base-16 color style by "Mayush Kumar".

TYPE: Literal['gruvbox-material-light-medium-t16']

GRUVBOX_MATERIAL_LIGHT_SOFT_T16

Gruvbox Material Light, Soft: Base-16 color style by "Mayush Kumar".

TYPE: Literal['gruvbox-material-light-soft-t16']

HARMONIC16_LIGHT_T16

Harmonic16 Light: Base-16 color style by "Jannik Siebert".

TYPE: Literal['harmonic16-light-t16']

HEETCH_LIGHT_T16

Heetch Light: Base-16 color style by "Geoffrey Teale".

TYPE: Literal['heetch-light-t16']

HORIZON_LIGHT_T16

Horizon Light: Base-16 color style by "Michaël Ball".

TYPE: Literal['horizon-light-t16']

HORIZON_TERMINAL_LIGHT_T16

Horizon Terminal Light: Base-16 color style by "Michaël Ball".

TYPE: Literal['horizon-terminal-light-t16']

HUMANOID_LIGHT_T16

Humanoid light: Base-16 color style by "Thomas Friese".

TYPE: Literal['humanoid-light-t16']

IA_LIGHT_T16

iA Light: Base-16 color style by "iA Inc.".

TYPE: Literal['ia-light-t16']

Literals

MEASURED_LIGHT_T16

Measured Light: Base-16 color style by "Measured".

TYPE: Literal['measured-light-t16']

MEXICO_LIGHT_T16

Mexico Light: Base-16 color style by "Sheldon Johnson".

TYPE: Literal['mexico-light-t16']

NORD_LIGHT_T16

Nord Light: Base-16 color style by "threddast, based on fuxialexander's

TYPE: Literal['nord-light-t16']

ONE_LIGHT_T16

One Light: Base-16 color style by "Daniel Pfeifer".

TYPE: Literal['one-light-t16']

OXOCARBON_LIGHT_T16

Oxocarbon Light: Base-16 color style by "shaunsingh/IBM".

TYPE: Literal['oxocarbon-light-t16']

PAPERCOLOR_LIGHT_T16

PaperColor Light: Base-16 color style by "Jon Leopard".

TYPE: Literal['papercolor-light-t16']

PENUMBRA_LIGHT_CONTRAST_PLUS_PLUS_T16

Penumbra Light Contrast Plus Plus: Base-16 color style by "Zachary

TYPE: Literal['penumbra-light-contrast-plus-plus-t16']

PENUMBRA_LIGHT_CONTRAST_PLUS_T16

Penumbra Light Contrast Plus: Base-16 color style by "Zachary Weiss".

TYPE: Literal['penumbra-light-contrast-plus-t16']

PENUMBRA_LIGHT_T16

Penumbra Light: Base-16 color style by "Zachary Weiss".

TYPE: Literal['penumbra-light-t16']

PRECIOUS_LIGHT_WARM_T16

Precious Light Warm: Base-16 color style by "4lex4".

TYPE: Literal['precious-light-warm-t16']

PRECIOUS_LIGHT_WHITE_T16

Precious Light White: Base-16 color style by "4lex4".

TYPE: Literal['precious-light-white-t16']

PRIMER_LIGHT_T16

Primer Light: Base-16 color style by "Jimmy Lin".

TYPE: Literal['primer-light-t16']

RANDOM_LIGHT_HIGH_CONTRAST_T16

TYPE: Literal['random-light-high-t16']

ROSE_PINE_DAWN_T16

Rosé Pine Dawn: Base-16 color style by "Emilia Dunfelt".

TYPE: Literal['rose-pine-dawn-t16']

SAGELIGHT_T16

Sagelight: Base-16 color style by "Carter Veldhuizen".

TYPE: Literal['sagelight-t16']

SAKURA_T16

Sakura: Base-16 color style by "Misterio77".

TYPE: Literal['sakura-t16']

SELENIZED_LIGHT_T16

selenized-light: Base-16 color style by "Jan Warchol / adapted to base16

TYPE: Literal['selenized-light-t16']

SELENIZED_WHITE_T16

selenized-white: Base-16 color style by "Jan Warchol / adapted to base16

TYPE: Literal['selenized-white-t16']

SHADESMEAR_LIGHT_T16

ShadeSmear Light: Base-16 color style by "Kyle Giammarco".

TYPE: Literal['shadesmear-light-t16']

SHAPESHIFTER_T16

Shapeshifter: Base-16 color style by "Tyler Benziger".

TYPE: Literal['shapeshifter-t16']

SILK_LIGHT_T16

Silk Light: Base-16 color style by "Gabriel Fontes".

TYPE: Literal['silk-light-t16']

SOLARFLARE_LIGHT_T16

Solar Flare Light: Base-16 color style by "Chuck Harmston".

TYPE: Literal['solarflare-light-t16']

SOLARIZED_LIGHT_T16

Solarized Light: Base-16 color style by "Ethan Schoonover".

TYPE: Literal['solarized-light-t16']

STANDARDIZED_LIGHT_T16

standardized-light: Base-16 color style by "ali".

TYPE: Literal['standardized-light-t16']

STILL_ALIVE_T16

Still Alive: Base-16 color style by "Derrick McKee".

TYPE: Literal['still-alive-t16']

SUMMERFRUIT_LIGHT_T16

Summerfruit Light: Base-16 color style by "Christopher Corley".

TYPE: Literal['summerfruit-light-t16']

SYNTH_MIDNIGHT_LIGHT_T16

Synth Midnight Terminal Light: Base-16 color style by "Michaël Ball".

TYPE: Literal['synth-midnight-light-t16']

TERRACOTTA_T16

Terracotta: Base-16 color style by "Alexander Rossell Hayes".

TYPE: Literal['terracotta-t16']

TOKYO_CITY_LIGHT_T16

Tokyo City Light: Base-16 color style by "Michaël Ball".

TYPE: Literal['tokyo-city-light-t16']

TOKYO_CITY_TERMINAL_LIGHT_T16

Tokyo City Terminal Light: Base-16 color style by "Michaël Ball".

TYPE: Literal['tokyo-city-terminal-light-t16']

TOKYO_NIGHT_LIGHT_T16

Tokyo Night Light: Base-16 color style by "Michaël Ball".

TYPE: Literal['tokyo-night-light-t16']

TOKYO_NIGHT_TERMINAL_LIGHT_T16

Tokyo Night Terminal Light: Base-16 color style by "Michaël Ball".

TYPE: Literal['tokyo-night-terminal-light-t16']

TOMORROW_T16

Tomorrow: Base-16 color style by "Chris Kempson".

TYPE: Literal['tomorrow-t16']

UNIKITTY_LIGHT_T16

Unikitty Light: Base-16 color style by "Josh W Lewis".

TYPE: Literal['unikitty-light-t16']

WINDOWS_95_LIGHT_T16

Windows 95 Light: Base-16 color style by "Fergus Collins".

TYPE: Literal['windows-95-light-t16']

WINDOWS_HIGHCONTRAST_LIGHT_T16

Windows High Contrast Light: Base-16 color style by "Fergus Collins".

TYPE: Literal['windows-highcontrast-light-t16']

Source code in src/omnipy/shared/enums/colorstyles.py
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
class LightHighContrastTintedThemingBase16ColorStyles(LiteralEnum[str]):
    f"""
    {_GENERAL_T16_COLOR_STYLE_DOCSTRING.format(description='Light, high-contrast')}

    These styles have high-level contrast that conform to {_COLOR_CONTRAST_TEXT}
    """

    Literals = Literal['atelier-cave-light-t16',
                       'atelier-dune-light-t16',
                       'atelier-estuary-light-t16',
                       'atelier-forest-light-t16',
                       'atelier-heath-light-t16',
                       'atelier-lakeside-light-t16',
                       'atelier-plateau-light-t16',
                       'atelier-savanna-light-t16',
                       'atelier-seaside-light-t16',
                       'atelier-sulphurpool-light-t16',
                       'ayu-light-t16',
                       'catppuccin-latte-t16',
                       'charcoal-light-t16',
                       'chicago-day-t16',
                       'chinoiserie-t16',
                       'classic-light-t16',
                       'cupertino-t16',
                       'da-one-paper-t16',
                       'da-one-white-t16',
                       'danqing-light-t16',
                       'default-light-t16',
                       'dirtysea-t16',
                       'edge-light-t16',
                       'embers-light-t16',
                       'emil-t16',
                       'equilibrium-gray-light-t16',
                       'equilibrium-light-t16',
                       'fruit-soda-t16',
                       'github-t16',
                       'google-light-t16',
                       'grayscale-light-t16',
                       'gruvbox-light-hard-t16',
                       'gruvbox-light-medium-t16',
                       'gruvbox-light-soft-t16',
                       'gruvbox-light-t16',
                       'gruvbox-material-light-hard-t16',
                       'gruvbox-material-light-medium-t16',
                       'gruvbox-material-light-soft-t16',
                       'harmonic16-light-t16',
                       'heetch-light-t16',
                       'horizon-light-t16',
                       'horizon-terminal-light-t16',
                       'humanoid-light-t16',
                       'ia-light-t16',
                       'measured-light-t16',
                       'mexico-light-t16',
                       'nord-light-t16',
                       'one-light-t16',
                       'oxocarbon-light-t16',
                       'papercolor-light-t16',
                       'penumbra-light-contrast-plus-plus-t16',
                       'penumbra-light-contrast-plus-t16',
                       'penumbra-light-t16',
                       'precious-light-warm-t16',
                       'precious-light-white-t16',
                       'primer-light-t16',
                       'rose-pine-dawn-t16',
                       'sagelight-t16',
                       'sakura-t16',
                       'selenized-light-t16',
                       'selenized-white-t16',
                       'shadesmear-light-t16',
                       'shapeshifter-t16',
                       'silk-light-t16',
                       'solarflare-light-t16',
                       'solarized-light-t16',
                       'standardized-light-t16',
                       'still-alive-t16',
                       'summerfruit-light-t16',
                       'synth-midnight-light-t16',
                       'terracotta-t16',
                       'tokyo-city-light-t16',
                       'tokyo-city-terminal-light-t16',
                       'tokyo-night-light-t16',
                       'tokyo-night-terminal-light-t16',
                       'tomorrow-t16',
                       'unikitty-light-t16',
                       'windows-95-light-t16',
                       'windows-highcontrast-light-t16',
                       'random-light-high-t16']

    ATELIER_CAVE_LIGHT_T16: Literal['atelier-cave-light-t16'] = 'atelier-cave-light-t16'
    """
    Atelier Cave Light: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_DUNE_LIGHT_T16: Literal['atelier-dune-light-t16'] = 'atelier-dune-light-t16'
    """
    Atelier Dune Light: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_ESTUARY_LIGHT_T16: Literal['atelier-estuary-light-t16'] = 'atelier-estuary-light-t16'
    """
    Atelier Estuary Light: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_FOREST_LIGHT_T16: Literal['atelier-forest-light-t16'] = 'atelier-forest-light-t16'
    """
    Atelier Forest Light: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_HEATH_LIGHT_T16: Literal['atelier-heath-light-t16'] = 'atelier-heath-light-t16'
    """
    Atelier Heath Light: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_LAKESIDE_LIGHT_T16: Literal['atelier-lakeside-light-t16'] = 'atelier-lakeside-light-t16'
    """
    Atelier Lakeside Light: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_PLATEAU_LIGHT_T16: Literal['atelier-plateau-light-t16'] = 'atelier-plateau-light-t16'
    """
    Atelier Plateau Light: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_SAVANNA_LIGHT_T16: Literal['atelier-savanna-light-t16'] = 'atelier-savanna-light-t16'
    """
    Atelier Savanna Light: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_SEASIDE_LIGHT_T16: Literal['atelier-seaside-light-t16'] = 'atelier-seaside-light-t16'
    """
    Atelier Seaside Light: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ATELIER_SULPHURPOOL_LIGHT_T16: Literal[
        'atelier-sulphurpool-light-t16'] = 'atelier-sulphurpool-light-t16'
    """
    Atelier Sulphurpool Light: Base-16 color style by "Bram de Haan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    AYU_LIGHT_T16: Literal['ayu-light-t16'] = 'ayu-light-t16'
    """
    Ayu Light: Base-16 color style by "Khue Nguyen".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CATPPUCCIN_LATTE_T16: Literal['catppuccin-latte-t16'] = 'catppuccin-latte-t16'
    """
    Catppuccin Latte: Base-16 color style.

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CHARCOAL_LIGHT_T16: Literal['charcoal-light-t16'] = 'charcoal-light-t16'
    """
    Charcoal Light: Base-16 color style by "Mubin Muhammad".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CHICAGO_DAY_T16: Literal['chicago-day-t16'] = 'chicago-day-t16'
    """
    Chicago Day: Base-16 color style by "Wendell, Ryan".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CHINOISERIE_T16: Literal['chinoiserie-t16'] = 'chinoiserie-t16'
    """
    Chinoiserie: Base-16 color style by "Di Wang".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CLASSIC_LIGHT_T16: Literal['classic-light-t16'] = 'classic-light-t16'
    """
    Classic Light: Base-16 color style by "Jason Heeris".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    CUPERTINO_T16: Literal['cupertino-t16'] = 'cupertino-t16'
    """
    Cupertino: Base-16 color style by "Defman21".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DA_ONE_PAPER_T16: Literal['da-one-paper-t16'] = 'da-one-paper-t16'
    """
    Da One Paper: Base-16 color style by "NNB".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DA_ONE_WHITE_T16: Literal['da-one-white-t16'] = 'da-one-white-t16'
    """
    Da One White: Base-16 color style by "NNB".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DANQING_LIGHT_T16: Literal['danqing-light-t16'] = 'danqing-light-t16'
    """
    DanQing Light: Base-16 color style by "Wenhan Zhu".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DEFAULT_LIGHT_T16: Literal['default-light-t16'] = 'default-light-t16'
    """
    Default Light: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    DIRTYSEA_T16: Literal['dirtysea-t16'] = 'dirtysea-t16'
    """
    dirtysea: Base-16 color style by "Kahlil Hodgson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EDGE_LIGHT_T16: Literal['edge-light-t16'] = 'edge-light-t16'
    """
    Edge Light: Base-16 color style by "cjayross".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EMBERS_LIGHT_T16: Literal['embers-light-t16'] = 'embers-light-t16'
    """
    Embers Light: Base-16 color style by "Jannik Siebert".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EMIL_T16: Literal['emil-t16'] = 'emil-t16'
    """
    emil: Base-16 color style by "limelier".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EQUILIBRIUM_GRAY_LIGHT_T16: Literal['equilibrium-gray-light-t16'] = 'equilibrium-gray-light-t16'
    """
    Equilibrium Gray Light: Base-16 color style by "Carlo Abelli".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    EQUILIBRIUM_LIGHT_T16: Literal['equilibrium-light-t16'] = 'equilibrium-light-t16'
    """
    Equilibrium Light: Base-16 color style by "Carlo Abelli".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    FRUIT_SODA_T16: Literal['fruit-soda-t16'] = 'fruit-soda-t16'
    """
    Fruit Soda: Base-16 color style by "jozip".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GITHUB_T16: Literal['github-t16'] = 'github-t16'
    """
    Github: Base-16 color style by "Tinted Theming".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GOOGLE_LIGHT_T16: Literal['google-light-t16'] = 'google-light-t16'
    """
    Google Light: Base-16 color style by "Seth Wright".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRAYSCALE_LIGHT_T16: Literal['grayscale-light-t16'] = 'grayscale-light-t16'
    """
    Grayscale Light: Base-16 color style by "Alexandre Gavioli".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_LIGHT_HARD_T16: Literal['gruvbox-light-hard-t16'] = 'gruvbox-light-hard-t16'
    """
    Gruvbox light, hard: Base-16 color style by "Dawid Kurek".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_LIGHT_MEDIUM_T16: Literal['gruvbox-light-medium-t16'] = 'gruvbox-light-medium-t16'
    """
    Gruvbox light, medium: Base-16 color style by "Dawid Kurek".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_LIGHT_SOFT_T16: Literal['gruvbox-light-soft-t16'] = 'gruvbox-light-soft-t16'
    """
    Gruvbox light, soft: Base-16 color style by "Dawid Kurek".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_LIGHT_T16: Literal['gruvbox-light-t16'] = 'gruvbox-light-t16'
    """
    Gruvbox Light: Base-16 color style by "Tinted Theming".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_MATERIAL_LIGHT_HARD_T16: Literal[
        'gruvbox-material-light-hard-t16'] = 'gruvbox-material-light-hard-t16'
    """
    Gruvbox Material Light, Hard: Base-16 color style by "Mayush Kumar".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_MATERIAL_LIGHT_MEDIUM_T16: Literal[
        'gruvbox-material-light-medium-t16'] = 'gruvbox-material-light-medium-t16'
    """
    Gruvbox Material Light, Medium: Base-16 color style by "Mayush Kumar".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    GRUVBOX_MATERIAL_LIGHT_SOFT_T16: Literal[
        'gruvbox-material-light-soft-t16'] = 'gruvbox-material-light-soft-t16'
    """
    Gruvbox Material Light, Soft: Base-16 color style by "Mayush Kumar".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HARMONIC16_LIGHT_T16: Literal['harmonic16-light-t16'] = 'harmonic16-light-t16'
    """
    Harmonic16 Light: Base-16 color style by "Jannik Siebert".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HEETCH_LIGHT_T16: Literal['heetch-light-t16'] = 'heetch-light-t16'
    """
    Heetch Light: Base-16 color style by "Geoffrey Teale".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HORIZON_LIGHT_T16: Literal['horizon-light-t16'] = 'horizon-light-t16'
    """
    Horizon Light: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HORIZON_TERMINAL_LIGHT_T16: Literal['horizon-terminal-light-t16'] = 'horizon-terminal-light-t16'
    """
    Horizon Terminal Light: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    HUMANOID_LIGHT_T16: Literal['humanoid-light-t16'] = 'humanoid-light-t16'
    """
    Humanoid light: Base-16 color style by "Thomas Friese".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    IA_LIGHT_T16: Literal['ia-light-t16'] = 'ia-light-t16'
    """
    iA Light: Base-16 color style by "iA Inc.".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MEASURED_LIGHT_T16: Literal['measured-light-t16'] = 'measured-light-t16'
    """
    Measured Light: Base-16 color style by "Measured".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    MEXICO_LIGHT_T16: Literal['mexico-light-t16'] = 'mexico-light-t16'
    """
    Mexico Light: Base-16 color style by "Sheldon Johnson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    NORD_LIGHT_T16: Literal['nord-light-t16'] = 'nord-light-t16'
    """
    Nord Light: Base-16 color style by "threddast, based on fuxialexander's
    doom-nord-light-theme".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ONE_LIGHT_T16: Literal['one-light-t16'] = 'one-light-t16'
    """
    One Light: Base-16 color style by "Daniel Pfeifer".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    OXOCARBON_LIGHT_T16: Literal['oxocarbon-light-t16'] = 'oxocarbon-light-t16'
    """
    Oxocarbon Light: Base-16 color style by "shaunsingh/IBM".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PAPERCOLOR_LIGHT_T16: Literal['papercolor-light-t16'] = 'papercolor-light-t16'
    """
    PaperColor Light: Base-16 color style by "Jon Leopard".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PENUMBRA_LIGHT_CONTRAST_PLUS_PLUS_T16: Literal[
        'penumbra-light-contrast-plus-plus-t16'] = 'penumbra-light-contrast-plus-plus-t16'
    """
    Penumbra Light Contrast Plus Plus: Base-16 color style by "Zachary
    Weiss".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PENUMBRA_LIGHT_CONTRAST_PLUS_T16: Literal[
        'penumbra-light-contrast-plus-t16'] = 'penumbra-light-contrast-plus-t16'
    """
    Penumbra Light Contrast Plus: Base-16 color style by "Zachary Weiss".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PENUMBRA_LIGHT_T16: Literal['penumbra-light-t16'] = 'penumbra-light-t16'
    """
    Penumbra Light: Base-16 color style by "Zachary Weiss".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PRECIOUS_LIGHT_WARM_T16: Literal['precious-light-warm-t16'] = 'precious-light-warm-t16'
    """
    Precious Light Warm: Base-16 color style by "4lex4".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PRECIOUS_LIGHT_WHITE_T16: Literal['precious-light-white-t16'] = 'precious-light-white-t16'
    """
    Precious Light White: Base-16 color style by "4lex4".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    PRIMER_LIGHT_T16: Literal['primer-light-t16'] = 'primer-light-t16'
    """
    Primer Light: Base-16 color style by "Jimmy Lin".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    ROSE_PINE_DAWN_T16: Literal['rose-pine-dawn-t16'] = 'rose-pine-dawn-t16'
    """
    Rosé Pine Dawn: Base-16 color style by "Emilia Dunfelt".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SAGELIGHT_T16: Literal['sagelight-t16'] = 'sagelight-t16'
    """
    Sagelight: Base-16 color style by "Carter Veldhuizen".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SAKURA_T16: Literal['sakura-t16'] = 'sakura-t16'
    """
    Sakura: Base-16 color style by "Misterio77".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SELENIZED_LIGHT_T16: Literal['selenized-light-t16'] = 'selenized-light-t16'
    """
    selenized-light: Base-16 color style by "Jan Warchol / adapted to base16
    by ali".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SELENIZED_WHITE_T16: Literal['selenized-white-t16'] = 'selenized-white-t16'
    """
    selenized-white: Base-16 color style by "Jan Warchol / adapted to base16
    by ali".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SHADESMEAR_LIGHT_T16: Literal['shadesmear-light-t16'] = 'shadesmear-light-t16'
    """
    ShadeSmear Light: Base-16 color style by "Kyle Giammarco".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SHAPESHIFTER_T16: Literal['shapeshifter-t16'] = 'shapeshifter-t16'
    """
    Shapeshifter: Base-16 color style by "Tyler Benziger".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SILK_LIGHT_T16: Literal['silk-light-t16'] = 'silk-light-t16'
    """
    Silk Light: Base-16 color style by "Gabriel Fontes".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SOLARFLARE_LIGHT_T16: Literal['solarflare-light-t16'] = 'solarflare-light-t16'
    """
    Solar Flare Light: Base-16 color style by "Chuck Harmston".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SOLARIZED_LIGHT_T16: Literal['solarized-light-t16'] = 'solarized-light-t16'
    """
    Solarized Light: Base-16 color style by "Ethan Schoonover".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    STANDARDIZED_LIGHT_T16: Literal['standardized-light-t16'] = 'standardized-light-t16'
    """
    standardized-light: Base-16 color style by "ali".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    STILL_ALIVE_T16: Literal['still-alive-t16'] = 'still-alive-t16'
    """
    Still Alive: Base-16 color style by "Derrick McKee".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SUMMERFRUIT_LIGHT_T16: Literal['summerfruit-light-t16'] = 'summerfruit-light-t16'
    """
    Summerfruit Light: Base-16 color style by "Christopher Corley".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    SYNTH_MIDNIGHT_LIGHT_T16: Literal['synth-midnight-light-t16'] = 'synth-midnight-light-t16'
    """
    Synth Midnight Terminal Light: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TERRACOTTA_T16: Literal['terracotta-t16'] = 'terracotta-t16'
    """
    Terracotta: Base-16 color style by "Alexander Rossell Hayes".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TOKYO_CITY_LIGHT_T16: Literal['tokyo-city-light-t16'] = 'tokyo-city-light-t16'
    """
    Tokyo City Light: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TOKYO_CITY_TERMINAL_LIGHT_T16: Literal[
        'tokyo-city-terminal-light-t16'] = 'tokyo-city-terminal-light-t16'
    """
    Tokyo City Terminal Light: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TOKYO_NIGHT_LIGHT_T16: Literal['tokyo-night-light-t16'] = 'tokyo-night-light-t16'
    """
    Tokyo Night Light: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TOKYO_NIGHT_TERMINAL_LIGHT_T16: Literal[
        'tokyo-night-terminal-light-t16'] = 'tokyo-night-terminal-light-t16'
    """
    Tokyo Night Terminal Light: Base-16 color style by "Michaël Ball".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    TOMORROW_T16: Literal['tomorrow-t16'] = 'tomorrow-t16'
    """
    Tomorrow: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    UNIKITTY_LIGHT_T16: Literal['unikitty-light-t16'] = 'unikitty-light-t16'
    """
    Unikitty Light: Base-16 color style by "Josh W Lewis".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    WINDOWS_95_LIGHT_T16: Literal['windows-95-light-t16'] = 'windows-95-light-t16'
    """
    Windows 95 Light: Base-16 color style by "Fergus Collins".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    WINDOWS_HIGHCONTRAST_LIGHT_T16: Literal[
        'windows-highcontrast-light-t16'] = 'windows-highcontrast-light-t16'
    """
    Windows High Contrast Light: Base-16 color style by "Fergus Collins".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with high-level contrast that conforms to
    the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1
    (https://www.w3.org/TR/WCAG21/).
    """

    RANDOM_LIGHT_HIGH_CONTRAST_T16: Literal['random-light-high-t16'] = 'random-light-high-t16'

ATELIER_CAVE_LIGHT_T16 class-attribute instance-attribute

ATELIER_CAVE_LIGHT_T16: Literal['atelier-cave-light-t16'] = 'atelier-cave-light-t16'

Atelier Cave Light: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_DUNE_LIGHT_T16 class-attribute instance-attribute

ATELIER_DUNE_LIGHT_T16: Literal['atelier-dune-light-t16'] = 'atelier-dune-light-t16'

Atelier Dune Light: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_ESTUARY_LIGHT_T16 class-attribute instance-attribute

ATELIER_ESTUARY_LIGHT_T16: Literal['atelier-estuary-light-t16'] = 'atelier-estuary-light-t16'

Atelier Estuary Light: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_FOREST_LIGHT_T16 class-attribute instance-attribute

ATELIER_FOREST_LIGHT_T16: Literal['atelier-forest-light-t16'] = 'atelier-forest-light-t16'

Atelier Forest Light: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_HEATH_LIGHT_T16 class-attribute instance-attribute

ATELIER_HEATH_LIGHT_T16: Literal['atelier-heath-light-t16'] = 'atelier-heath-light-t16'

Atelier Heath Light: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_LAKESIDE_LIGHT_T16 class-attribute instance-attribute

ATELIER_LAKESIDE_LIGHT_T16: Literal['atelier-lakeside-light-t16'] = 'atelier-lakeside-light-t16'

Atelier Lakeside Light: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_PLATEAU_LIGHT_T16 class-attribute instance-attribute

ATELIER_PLATEAU_LIGHT_T16: Literal['atelier-plateau-light-t16'] = 'atelier-plateau-light-t16'

Atelier Plateau Light: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_SAVANNA_LIGHT_T16 class-attribute instance-attribute

ATELIER_SAVANNA_LIGHT_T16: Literal['atelier-savanna-light-t16'] = 'atelier-savanna-light-t16'

Atelier Savanna Light: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_SEASIDE_LIGHT_T16 class-attribute instance-attribute

ATELIER_SEASIDE_LIGHT_T16: Literal['atelier-seaside-light-t16'] = 'atelier-seaside-light-t16'

Atelier Seaside Light: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ATELIER_SULPHURPOOL_LIGHT_T16 class-attribute instance-attribute

ATELIER_SULPHURPOOL_LIGHT_T16: Literal["atelier-sulphurpool-light-t16"] = (
    "atelier-sulphurpool-light-t16"
)

Atelier Sulphurpool Light: Base-16 color style by "Bram de Haan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

AYU_LIGHT_T16 class-attribute instance-attribute

AYU_LIGHT_T16: Literal['ayu-light-t16'] = 'ayu-light-t16'

Ayu Light: Base-16 color style by "Khue Nguyen".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CATPPUCCIN_LATTE_T16 class-attribute instance-attribute

CATPPUCCIN_LATTE_T16: Literal['catppuccin-latte-t16'] = 'catppuccin-latte-t16'

Catppuccin Latte: Base-16 color style.

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CHARCOAL_LIGHT_T16 class-attribute instance-attribute

CHARCOAL_LIGHT_T16: Literal['charcoal-light-t16'] = 'charcoal-light-t16'

Charcoal Light: Base-16 color style by "Mubin Muhammad".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CHICAGO_DAY_T16 class-attribute instance-attribute

CHICAGO_DAY_T16: Literal['chicago-day-t16'] = 'chicago-day-t16'

Chicago Day: Base-16 color style by "Wendell, Ryan".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CHINOISERIE_T16 class-attribute instance-attribute

CHINOISERIE_T16: Literal['chinoiserie-t16'] = 'chinoiserie-t16'

Chinoiserie: Base-16 color style by "Di Wang".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CLASSIC_LIGHT_T16 class-attribute instance-attribute

CLASSIC_LIGHT_T16: Literal['classic-light-t16'] = 'classic-light-t16'

Classic Light: Base-16 color style by "Jason Heeris".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CUPERTINO_T16 class-attribute instance-attribute

CUPERTINO_T16: Literal['cupertino-t16'] = 'cupertino-t16'

Cupertino: Base-16 color style by "Defman21".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DANQING_LIGHT_T16 class-attribute instance-attribute

DANQING_LIGHT_T16: Literal['danqing-light-t16'] = 'danqing-light-t16'

DanQing Light: Base-16 color style by "Wenhan Zhu".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DA_ONE_PAPER_T16 class-attribute instance-attribute

DA_ONE_PAPER_T16: Literal['da-one-paper-t16'] = 'da-one-paper-t16'

Da One Paper: Base-16 color style by "NNB".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DA_ONE_WHITE_T16 class-attribute instance-attribute

DA_ONE_WHITE_T16: Literal['da-one-white-t16'] = 'da-one-white-t16'

Da One White: Base-16 color style by "NNB".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DEFAULT_LIGHT_T16 class-attribute instance-attribute

DEFAULT_LIGHT_T16: Literal['default-light-t16'] = 'default-light-t16'

Default Light: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

DIRTYSEA_T16 class-attribute instance-attribute

DIRTYSEA_T16: Literal['dirtysea-t16'] = 'dirtysea-t16'

dirtysea: Base-16 color style by "Kahlil Hodgson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EDGE_LIGHT_T16 class-attribute instance-attribute

EDGE_LIGHT_T16: Literal['edge-light-t16'] = 'edge-light-t16'

Edge Light: Base-16 color style by "cjayross".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EMBERS_LIGHT_T16 class-attribute instance-attribute

EMBERS_LIGHT_T16: Literal['embers-light-t16'] = 'embers-light-t16'

Embers Light: Base-16 color style by "Jannik Siebert".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EMIL_T16 class-attribute instance-attribute

EMIL_T16: Literal['emil-t16'] = 'emil-t16'

emil: Base-16 color style by "limelier".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EQUILIBRIUM_GRAY_LIGHT_T16 class-attribute instance-attribute

EQUILIBRIUM_GRAY_LIGHT_T16: Literal['equilibrium-gray-light-t16'] = 'equilibrium-gray-light-t16'

Equilibrium Gray Light: Base-16 color style by "Carlo Abelli".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

EQUILIBRIUM_LIGHT_T16 class-attribute instance-attribute

EQUILIBRIUM_LIGHT_T16: Literal['equilibrium-light-t16'] = 'equilibrium-light-t16'

Equilibrium Light: Base-16 color style by "Carlo Abelli".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

FRUIT_SODA_T16 class-attribute instance-attribute

FRUIT_SODA_T16: Literal['fruit-soda-t16'] = 'fruit-soda-t16'

Fruit Soda: Base-16 color style by "jozip".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GITHUB_T16 class-attribute instance-attribute

GITHUB_T16: Literal['github-t16'] = 'github-t16'

Github: Base-16 color style by "Tinted Theming".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GOOGLE_LIGHT_T16 class-attribute instance-attribute

GOOGLE_LIGHT_T16: Literal['google-light-t16'] = 'google-light-t16'

Google Light: Base-16 color style by "Seth Wright".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRAYSCALE_LIGHT_T16 class-attribute instance-attribute

GRAYSCALE_LIGHT_T16: Literal['grayscale-light-t16'] = 'grayscale-light-t16'

Grayscale Light: Base-16 color style by "Alexandre Gavioli".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_LIGHT_HARD_T16 class-attribute instance-attribute

GRUVBOX_LIGHT_HARD_T16: Literal['gruvbox-light-hard-t16'] = 'gruvbox-light-hard-t16'

Gruvbox light, hard: Base-16 color style by "Dawid Kurek".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_LIGHT_MEDIUM_T16 class-attribute instance-attribute

GRUVBOX_LIGHT_MEDIUM_T16: Literal['gruvbox-light-medium-t16'] = 'gruvbox-light-medium-t16'

Gruvbox light, medium: Base-16 color style by "Dawid Kurek".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_LIGHT_SOFT_T16 class-attribute instance-attribute

GRUVBOX_LIGHT_SOFT_T16: Literal['gruvbox-light-soft-t16'] = 'gruvbox-light-soft-t16'

Gruvbox light, soft: Base-16 color style by "Dawid Kurek".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_LIGHT_T16 class-attribute instance-attribute

GRUVBOX_LIGHT_T16: Literal['gruvbox-light-t16'] = 'gruvbox-light-t16'

Gruvbox Light: Base-16 color style by "Tinted Theming".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_MATERIAL_LIGHT_HARD_T16 class-attribute instance-attribute

GRUVBOX_MATERIAL_LIGHT_HARD_T16: Literal["gruvbox-material-light-hard-t16"] = (
    "gruvbox-material-light-hard-t16"
)

Gruvbox Material Light, Hard: Base-16 color style by "Mayush Kumar".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_MATERIAL_LIGHT_MEDIUM_T16 class-attribute instance-attribute

GRUVBOX_MATERIAL_LIGHT_MEDIUM_T16: Literal["gruvbox-material-light-medium-t16"] = (
    "gruvbox-material-light-medium-t16"
)

Gruvbox Material Light, Medium: Base-16 color style by "Mayush Kumar".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

GRUVBOX_MATERIAL_LIGHT_SOFT_T16 class-attribute instance-attribute

GRUVBOX_MATERIAL_LIGHT_SOFT_T16: Literal["gruvbox-material-light-soft-t16"] = (
    "gruvbox-material-light-soft-t16"
)

Gruvbox Material Light, Soft: Base-16 color style by "Mayush Kumar".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HARMONIC16_LIGHT_T16 class-attribute instance-attribute

HARMONIC16_LIGHT_T16: Literal['harmonic16-light-t16'] = 'harmonic16-light-t16'

Harmonic16 Light: Base-16 color style by "Jannik Siebert".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HEETCH_LIGHT_T16 class-attribute instance-attribute

HEETCH_LIGHT_T16: Literal['heetch-light-t16'] = 'heetch-light-t16'

Heetch Light: Base-16 color style by "Geoffrey Teale".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HORIZON_LIGHT_T16 class-attribute instance-attribute

HORIZON_LIGHT_T16: Literal['horizon-light-t16'] = 'horizon-light-t16'

Horizon Light: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HORIZON_TERMINAL_LIGHT_T16 class-attribute instance-attribute

HORIZON_TERMINAL_LIGHT_T16: Literal['horizon-terminal-light-t16'] = 'horizon-terminal-light-t16'

Horizon Terminal Light: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

HUMANOID_LIGHT_T16 class-attribute instance-attribute

HUMANOID_LIGHT_T16: Literal['humanoid-light-t16'] = 'humanoid-light-t16'

Humanoid light: Base-16 color style by "Thomas Friese".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

IA_LIGHT_T16 class-attribute instance-attribute

IA_LIGHT_T16: Literal['ia-light-t16'] = 'ia-light-t16'

iA Light: Base-16 color style by "iA Inc.".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

Literals class-attribute instance-attribute

Literals = Literal[
    "atelier-cave-light-t16",
    "atelier-dune-light-t16",
    "atelier-estuary-light-t16",
    "atelier-forest-light-t16",
    "atelier-heath-light-t16",
    "atelier-lakeside-light-t16",
    "atelier-plateau-light-t16",
    "atelier-savanna-light-t16",
    "atelier-seaside-light-t16",
    "atelier-sulphurpool-light-t16",
    "ayu-light-t16",
    "catppuccin-latte-t16",
    "charcoal-light-t16",
    "chicago-day-t16",
    "chinoiserie-t16",
    "classic-light-t16",
    "cupertino-t16",
    "da-one-paper-t16",
    "da-one-white-t16",
    "danqing-light-t16",
    "default-light-t16",
    "dirtysea-t16",
    "edge-light-t16",
    "embers-light-t16",
    "emil-t16",
    "equilibrium-gray-light-t16",
    "equilibrium-light-t16",
    "fruit-soda-t16",
    "github-t16",
    "google-light-t16",
    "grayscale-light-t16",
    "gruvbox-light-hard-t16",
    "gruvbox-light-medium-t16",
    "gruvbox-light-soft-t16",
    "gruvbox-light-t16",
    "gruvbox-material-light-hard-t16",
    "gruvbox-material-light-medium-t16",
    "gruvbox-material-light-soft-t16",
    "harmonic16-light-t16",
    "heetch-light-t16",
    "horizon-light-t16",
    "horizon-terminal-light-t16",
    "humanoid-light-t16",
    "ia-light-t16",
    "measured-light-t16",
    "mexico-light-t16",
    "nord-light-t16",
    "one-light-t16",
    "oxocarbon-light-t16",
    "papercolor-light-t16",
    "penumbra-light-contrast-plus-plus-t16",
    "penumbra-light-contrast-plus-t16",
    "penumbra-light-t16",
    "precious-light-warm-t16",
    "precious-light-white-t16",
    "primer-light-t16",
    "rose-pine-dawn-t16",
    "sagelight-t16",
    "sakura-t16",
    "selenized-light-t16",
    "selenized-white-t16",
    "shadesmear-light-t16",
    "shapeshifter-t16",
    "silk-light-t16",
    "solarflare-light-t16",
    "solarized-light-t16",
    "standardized-light-t16",
    "still-alive-t16",
    "summerfruit-light-t16",
    "synth-midnight-light-t16",
    "terracotta-t16",
    "tokyo-city-light-t16",
    "tokyo-city-terminal-light-t16",
    "tokyo-night-light-t16",
    "tokyo-night-terminal-light-t16",
    "tomorrow-t16",
    "unikitty-light-t16",
    "windows-95-light-t16",
    "windows-highcontrast-light-t16",
    "random-light-high-t16",
]

MEASURED_LIGHT_T16 class-attribute instance-attribute

MEASURED_LIGHT_T16: Literal['measured-light-t16'] = 'measured-light-t16'

Measured Light: Base-16 color style by "Measured".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

MEXICO_LIGHT_T16 class-attribute instance-attribute

MEXICO_LIGHT_T16: Literal['mexico-light-t16'] = 'mexico-light-t16'

Mexico Light: Base-16 color style by "Sheldon Johnson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

NORD_LIGHT_T16 class-attribute instance-attribute

NORD_LIGHT_T16: Literal['nord-light-t16'] = 'nord-light-t16'

Nord Light: Base-16 color style by "threddast, based on fuxialexander's doom-nord-light-theme".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

ONE_LIGHT_T16 class-attribute instance-attribute

ONE_LIGHT_T16: Literal['one-light-t16'] = 'one-light-t16'

One Light: Base-16 color style by "Daniel Pfeifer".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

OXOCARBON_LIGHT_T16 class-attribute instance-attribute

OXOCARBON_LIGHT_T16: Literal['oxocarbon-light-t16'] = 'oxocarbon-light-t16'

Oxocarbon Light: Base-16 color style by "shaunsingh/IBM".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PAPERCOLOR_LIGHT_T16 class-attribute instance-attribute

PAPERCOLOR_LIGHT_T16: Literal['papercolor-light-t16'] = 'papercolor-light-t16'

PaperColor Light: Base-16 color style by "Jon Leopard".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PENUMBRA_LIGHT_CONTRAST_PLUS_PLUS_T16 class-attribute instance-attribute

PENUMBRA_LIGHT_CONTRAST_PLUS_PLUS_T16: Literal["penumbra-light-contrast-plus-plus-t16"] = (
    "penumbra-light-contrast-plus-plus-t16"
)

Penumbra Light Contrast Plus Plus: Base-16 color style by "Zachary Weiss".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PENUMBRA_LIGHT_CONTRAST_PLUS_T16 class-attribute instance-attribute

PENUMBRA_LIGHT_CONTRAST_PLUS_T16: Literal["penumbra-light-contrast-plus-t16"] = (
    "penumbra-light-contrast-plus-t16"
)

Penumbra Light Contrast Plus: Base-16 color style by "Zachary Weiss".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PENUMBRA_LIGHT_T16 class-attribute instance-attribute

PENUMBRA_LIGHT_T16: Literal['penumbra-light-t16'] = 'penumbra-light-t16'

Penumbra Light: Base-16 color style by "Zachary Weiss".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PRECIOUS_LIGHT_WARM_T16 class-attribute instance-attribute

PRECIOUS_LIGHT_WARM_T16: Literal['precious-light-warm-t16'] = 'precious-light-warm-t16'

Precious Light Warm: Base-16 color style by "4lex4".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PRECIOUS_LIGHT_WHITE_T16 class-attribute instance-attribute

PRECIOUS_LIGHT_WHITE_T16: Literal['precious-light-white-t16'] = 'precious-light-white-t16'

Precious Light White: Base-16 color style by "4lex4".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

PRIMER_LIGHT_T16 class-attribute instance-attribute

PRIMER_LIGHT_T16: Literal['primer-light-t16'] = 'primer-light-t16'

Primer Light: Base-16 color style by "Jimmy Lin".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

RANDOM_LIGHT_HIGH_CONTRAST_T16 class-attribute instance-attribute

RANDOM_LIGHT_HIGH_CONTRAST_T16: Literal['random-light-high-t16'] = 'random-light-high-t16'

ROSE_PINE_DAWN_T16 class-attribute instance-attribute

ROSE_PINE_DAWN_T16: Literal['rose-pine-dawn-t16'] = 'rose-pine-dawn-t16'

Rosé Pine Dawn: Base-16 color style by "Emilia Dunfelt".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SAGELIGHT_T16 class-attribute instance-attribute

SAGELIGHT_T16: Literal['sagelight-t16'] = 'sagelight-t16'

Sagelight: Base-16 color style by "Carter Veldhuizen".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SAKURA_T16 class-attribute instance-attribute

SAKURA_T16: Literal['sakura-t16'] = 'sakura-t16'

Sakura: Base-16 color style by "Misterio77".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SELENIZED_LIGHT_T16 class-attribute instance-attribute

SELENIZED_LIGHT_T16: Literal['selenized-light-t16'] = 'selenized-light-t16'

selenized-light: Base-16 color style by "Jan Warchol / adapted to base16 by ali".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SELENIZED_WHITE_T16 class-attribute instance-attribute

SELENIZED_WHITE_T16: Literal['selenized-white-t16'] = 'selenized-white-t16'

selenized-white: Base-16 color style by "Jan Warchol / adapted to base16 by ali".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SHADESMEAR_LIGHT_T16 class-attribute instance-attribute

SHADESMEAR_LIGHT_T16: Literal['shadesmear-light-t16'] = 'shadesmear-light-t16'

ShadeSmear Light: Base-16 color style by "Kyle Giammarco".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SHAPESHIFTER_T16 class-attribute instance-attribute

SHAPESHIFTER_T16: Literal['shapeshifter-t16'] = 'shapeshifter-t16'

Shapeshifter: Base-16 color style by "Tyler Benziger".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SILK_LIGHT_T16 class-attribute instance-attribute

SILK_LIGHT_T16: Literal['silk-light-t16'] = 'silk-light-t16'

Silk Light: Base-16 color style by "Gabriel Fontes".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SOLARFLARE_LIGHT_T16 class-attribute instance-attribute

SOLARFLARE_LIGHT_T16: Literal['solarflare-light-t16'] = 'solarflare-light-t16'

Solar Flare Light: Base-16 color style by "Chuck Harmston".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SOLARIZED_LIGHT_T16 class-attribute instance-attribute

SOLARIZED_LIGHT_T16: Literal['solarized-light-t16'] = 'solarized-light-t16'

Solarized Light: Base-16 color style by "Ethan Schoonover".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

STANDARDIZED_LIGHT_T16 class-attribute instance-attribute

STANDARDIZED_LIGHT_T16: Literal['standardized-light-t16'] = 'standardized-light-t16'

standardized-light: Base-16 color style by "ali".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

STILL_ALIVE_T16 class-attribute instance-attribute

STILL_ALIVE_T16: Literal['still-alive-t16'] = 'still-alive-t16'

Still Alive: Base-16 color style by "Derrick McKee".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SUMMERFRUIT_LIGHT_T16 class-attribute instance-attribute

SUMMERFRUIT_LIGHT_T16: Literal['summerfruit-light-t16'] = 'summerfruit-light-t16'

Summerfruit Light: Base-16 color style by "Christopher Corley".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

SYNTH_MIDNIGHT_LIGHT_T16 class-attribute instance-attribute

SYNTH_MIDNIGHT_LIGHT_T16: Literal['synth-midnight-light-t16'] = 'synth-midnight-light-t16'

Synth Midnight Terminal Light: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TERRACOTTA_T16 class-attribute instance-attribute

TERRACOTTA_T16: Literal['terracotta-t16'] = 'terracotta-t16'

Terracotta: Base-16 color style by "Alexander Rossell Hayes".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOKYO_CITY_LIGHT_T16 class-attribute instance-attribute

TOKYO_CITY_LIGHT_T16: Literal['tokyo-city-light-t16'] = 'tokyo-city-light-t16'

Tokyo City Light: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOKYO_CITY_TERMINAL_LIGHT_T16 class-attribute instance-attribute

TOKYO_CITY_TERMINAL_LIGHT_T16: Literal["tokyo-city-terminal-light-t16"] = (
    "tokyo-city-terminal-light-t16"
)

Tokyo City Terminal Light: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOKYO_NIGHT_LIGHT_T16 class-attribute instance-attribute

TOKYO_NIGHT_LIGHT_T16: Literal['tokyo-night-light-t16'] = 'tokyo-night-light-t16'

Tokyo Night Light: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOKYO_NIGHT_TERMINAL_LIGHT_T16 class-attribute instance-attribute

TOKYO_NIGHT_TERMINAL_LIGHT_T16: Literal["tokyo-night-terminal-light-t16"] = (
    "tokyo-night-terminal-light-t16"
)

Tokyo Night Terminal Light: Base-16 color style by "Michaël Ball".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

TOMORROW_T16 class-attribute instance-attribute

TOMORROW_T16: Literal['tomorrow-t16'] = 'tomorrow-t16'

Tomorrow: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

UNIKITTY_LIGHT_T16 class-attribute instance-attribute

UNIKITTY_LIGHT_T16: Literal['unikitty-light-t16'] = 'unikitty-light-t16'

Unikitty Light: Base-16 color style by "Josh W Lewis".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

WINDOWS_95_LIGHT_T16 class-attribute instance-attribute

WINDOWS_95_LIGHT_T16: Literal['windows-95-light-t16'] = 'windows-95-light-t16'

Windows 95 Light: Base-16 color style by "Fergus Collins".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

WINDOWS_HIGHCONTRAST_LIGHT_T16 class-attribute instance-attribute

WINDOWS_HIGHCONTRAST_LIGHT_T16: Literal["windows-highcontrast-light-t16"] = (
    "windows-highcontrast-light-t16"
)

Windows High Contrast Light: Base-16 color style by "Fergus Collins".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with high-level contrast that conforms to the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

LightLowContrastColorStyles

Bases: LightLowContrastTintedThemingBase16ColorStyles, LightLowContrastPygmentsColorStyles

All light, lower contrast color styles for syntax highlighting. See superclasses for more details on the color styles.

ATTRIBUTE DESCRIPTION
Literals

RANDOM_LIGHT_LOW_CONTRAST

TYPE: Literal['random-light-low']

Source code in src/omnipy/shared/enums/colorstyles.py
class LightLowContrastColorStyles(
        LightLowContrastTintedThemingBase16ColorStyles,
        LightLowContrastPygmentsColorStyles,
):
    """
    All light, lower contrast color styles for syntax highlighting. See
    superclasses for more details on the color styles.
    """

    Literals = Literal[LightLowContrastTintedThemingBase16ColorStyles.Literals,
                       LightLowContrastPygmentsColorStyles.Literals,
                       'random-light-low']

    RANDOM_LIGHT_LOW_CONTRAST: Literal['random-light-low'] = 'random-light-low'

Literals class-attribute instance-attribute

RANDOM_LIGHT_LOW_CONTRAST class-attribute instance-attribute

RANDOM_LIGHT_LOW_CONTRAST: Literal['random-light-low'] = 'random-light-low'

LightLowContrastPygmentsColorStyles

Bases: LiteralEnum[str]

ATTRIBUTE DESCRIPTION
ABAP_PYGMENTS

TYPE: Literal['abap-pygments']

ALGOL_NU_PYGMENTS

TYPE: Literal['algol_nu-pygments']

ALGOL_PYGMENTS

TYPE: Literal['algol-pygments']

ARDUINO_PYGMENTS

TYPE: Literal['arduino-pygments']

AUTUMN_PYGMENTS

TYPE: Literal['autumn-pygments']

BORLAND_PYGMENTS

TYPE: Literal['borland-pygments']

COLORFUL_PYGMENTS

TYPE: Literal['colorful-pygments']

EMACS_PYGMENTS

TYPE: Literal['emacs-pygments']

FRIENDLY_GRAYSCALE_PYGMENTS

TYPE: Literal['friendly_grayscale-pygments']

FRIENDLY_PYGMENTS

TYPE: Literal['friendly-pygments']

GRUVBOX_LIGHT_PYGMENTS

TYPE: Literal['gruvbox-light-pygments']

IGOR_PYGMENTS

TYPE: Literal['igor-pygments']

LOVELACE_PYGMENTS

TYPE: Literal['lovelace-pygments']

Literals

MANNI_PYGMENTS

TYPE: Literal['manni-pygments']

MURPHY_PYGMENTS

TYPE: Literal['murphy-pygments']

PARAISO_LIGHT_PYGMENTS

TYPE: Literal['paraiso-light-pygments']

PASTIE_PYGMENTS

TYPE: Literal['pastie-pygments']

PERLDOC_PYGMENTS

TYPE: Literal['perldoc-pygments']

RAINBOW_DASH_PYGMENTS

TYPE: Literal['rainbow_dash-pygments']

SOLARIZED_LIGHT_PYGMENTS

TYPE: Literal['solarized-light-pygments']

STATA_LIGHT_PYGMENTS

TYPE: Literal['stata-light-pygments']

TANGO_PYGMENTS

TYPE: Literal['tango-pygments']

TRAC_PYGMENTS

TYPE: Literal['trac-pygments']

VS_PYGMENTS

TYPE: Literal['vs-pygments']

Source code in src/omnipy/shared/enums/colorstyles.py
class LightLowContrastPygmentsColorStyles(LiteralEnum[str]):
    __doc__ = dedent("""
        Lower contrast dark color styles for syntax highlighting.
        """) + _GENERAL_PYGMENTS_COLOR_STYLE_DOCSTRING

    Literals = Literal[
        'abap-pygments',
        'algol-pygments',
        'algol_nu-pygments',
        'arduino-pygments',
        'autumn-pygments',
        'borland-pygments',
        'colorful-pygments',
        'emacs-pygments',
        'friendly_grayscale-pygments',
        'friendly-pygments',
        'gruvbox-light-pygments',
        'igor-pygments',
        'lovelace-pygments',
        'manni-pygments',
        'murphy-pygments',
        'paraiso-light-pygments',
        'pastie-pygments',
        'perldoc-pygments',
        'rainbow_dash-pygments',
        'solarized-light-pygments',
        'stata-light-pygments',
        'tango-pygments',
        'trac-pygments',
        'vs-pygments',
    ]

    ABAP_PYGMENTS: Literal['abap-pygments'] = 'abap-pygments'
    ALGOL_PYGMENTS: Literal['algol-pygments'] = 'algol-pygments'
    ALGOL_NU_PYGMENTS: Literal['algol_nu-pygments'] = 'algol_nu-pygments'
    ARDUINO_PYGMENTS: Literal['arduino-pygments'] = 'arduino-pygments'
    AUTUMN_PYGMENTS: Literal['autumn-pygments'] = 'autumn-pygments'
    BORLAND_PYGMENTS: Literal['borland-pygments'] = 'borland-pygments'
    COLORFUL_PYGMENTS: Literal['colorful-pygments'] = 'colorful-pygments'
    EMACS_PYGMENTS: Literal['emacs-pygments'] = 'emacs-pygments'
    FRIENDLY_GRAYSCALE_PYGMENTS: Literal[
        'friendly_grayscale-pygments'] = 'friendly_grayscale-pygments'
    FRIENDLY_PYGMENTS: Literal['friendly-pygments'] = 'friendly-pygments'
    GRUVBOX_LIGHT_PYGMENTS: Literal['gruvbox-light-pygments'] = 'gruvbox-light-pygments'
    IGOR_PYGMENTS: Literal['igor-pygments'] = 'igor-pygments'
    LOVELACE_PYGMENTS: Literal['lovelace-pygments'] = 'lovelace-pygments'
    MANNI_PYGMENTS: Literal['manni-pygments'] = 'manni-pygments'
    MURPHY_PYGMENTS: Literal['murphy-pygments'] = 'murphy-pygments'
    PARAISO_LIGHT_PYGMENTS: Literal['paraiso-light-pygments'] = 'paraiso-light-pygments'
    PASTIE_PYGMENTS: Literal['pastie-pygments'] = 'pastie-pygments'
    PERLDOC_PYGMENTS: Literal['perldoc-pygments'] = 'perldoc-pygments'
    RAINBOW_DASH_PYGMENTS: Literal['rainbow_dash-pygments'] = 'rainbow_dash-pygments'
    SOLARIZED_LIGHT_PYGMENTS: Literal['solarized-light-pygments'] = 'solarized-light-pygments'
    STATA_LIGHT_PYGMENTS: Literal['stata-light-pygments'] = 'stata-light-pygments'
    TANGO_PYGMENTS: Literal['tango-pygments'] = 'tango-pygments'
    TRAC_PYGMENTS: Literal['trac-pygments'] = 'trac-pygments'
    VS_PYGMENTS: Literal['vs-pygments'] = 'vs-pygments'

ABAP_PYGMENTS class-attribute instance-attribute

ABAP_PYGMENTS: Literal['abap-pygments'] = 'abap-pygments'

ALGOL_NU_PYGMENTS class-attribute instance-attribute

ALGOL_NU_PYGMENTS: Literal['algol_nu-pygments'] = 'algol_nu-pygments'

ALGOL_PYGMENTS class-attribute instance-attribute

ALGOL_PYGMENTS: Literal['algol-pygments'] = 'algol-pygments'

ARDUINO_PYGMENTS class-attribute instance-attribute

ARDUINO_PYGMENTS: Literal['arduino-pygments'] = 'arduino-pygments'

AUTUMN_PYGMENTS class-attribute instance-attribute

AUTUMN_PYGMENTS: Literal['autumn-pygments'] = 'autumn-pygments'

BORLAND_PYGMENTS class-attribute instance-attribute

BORLAND_PYGMENTS: Literal['borland-pygments'] = 'borland-pygments'

COLORFUL_PYGMENTS class-attribute instance-attribute

COLORFUL_PYGMENTS: Literal['colorful-pygments'] = 'colorful-pygments'

EMACS_PYGMENTS class-attribute instance-attribute

EMACS_PYGMENTS: Literal['emacs-pygments'] = 'emacs-pygments'

FRIENDLY_GRAYSCALE_PYGMENTS class-attribute instance-attribute

FRIENDLY_GRAYSCALE_PYGMENTS: Literal['friendly_grayscale-pygments'] = 'friendly_grayscale-pygments'

FRIENDLY_PYGMENTS class-attribute instance-attribute

FRIENDLY_PYGMENTS: Literal['friendly-pygments'] = 'friendly-pygments'

GRUVBOX_LIGHT_PYGMENTS class-attribute instance-attribute

GRUVBOX_LIGHT_PYGMENTS: Literal['gruvbox-light-pygments'] = 'gruvbox-light-pygments'

IGOR_PYGMENTS class-attribute instance-attribute

IGOR_PYGMENTS: Literal['igor-pygments'] = 'igor-pygments'

LOVELACE_PYGMENTS class-attribute instance-attribute

LOVELACE_PYGMENTS: Literal['lovelace-pygments'] = 'lovelace-pygments'

Literals class-attribute instance-attribute

Literals = Literal[
    "abap-pygments",
    "algol-pygments",
    "algol_nu-pygments",
    "arduino-pygments",
    "autumn-pygments",
    "borland-pygments",
    "colorful-pygments",
    "emacs-pygments",
    "friendly_grayscale-pygments",
    "friendly-pygments",
    "gruvbox-light-pygments",
    "igor-pygments",
    "lovelace-pygments",
    "manni-pygments",
    "murphy-pygments",
    "paraiso-light-pygments",
    "pastie-pygments",
    "perldoc-pygments",
    "rainbow_dash-pygments",
    "solarized-light-pygments",
    "stata-light-pygments",
    "tango-pygments",
    "trac-pygments",
    "vs-pygments",
]

MANNI_PYGMENTS class-attribute instance-attribute

MANNI_PYGMENTS: Literal['manni-pygments'] = 'manni-pygments'

MURPHY_PYGMENTS class-attribute instance-attribute

MURPHY_PYGMENTS: Literal['murphy-pygments'] = 'murphy-pygments'

PARAISO_LIGHT_PYGMENTS class-attribute instance-attribute

PARAISO_LIGHT_PYGMENTS: Literal['paraiso-light-pygments'] = 'paraiso-light-pygments'

PASTIE_PYGMENTS class-attribute instance-attribute

PASTIE_PYGMENTS: Literal['pastie-pygments'] = 'pastie-pygments'

PERLDOC_PYGMENTS class-attribute instance-attribute

PERLDOC_PYGMENTS: Literal['perldoc-pygments'] = 'perldoc-pygments'

RAINBOW_DASH_PYGMENTS class-attribute instance-attribute

RAINBOW_DASH_PYGMENTS: Literal['rainbow_dash-pygments'] = 'rainbow_dash-pygments'

SOLARIZED_LIGHT_PYGMENTS class-attribute instance-attribute

SOLARIZED_LIGHT_PYGMENTS: Literal['solarized-light-pygments'] = 'solarized-light-pygments'

STATA_LIGHT_PYGMENTS class-attribute instance-attribute

STATA_LIGHT_PYGMENTS: Literal['stata-light-pygments'] = 'stata-light-pygments'

TANGO_PYGMENTS class-attribute instance-attribute

TANGO_PYGMENTS: Literal['tango-pygments'] = 'tango-pygments'

TRAC_PYGMENTS class-attribute instance-attribute

TRAC_PYGMENTS: Literal['trac-pygments'] = 'trac-pygments'

VS_PYGMENTS class-attribute instance-attribute

VS_PYGMENTS: Literal['vs-pygments'] = 'vs-pygments'

LightLowContrastTintedThemingBase16ColorStyles

Bases: LiteralEnum[str]

ATTRIBUTE DESCRIPTION
BRUSHTREES_T16

Brush Trees: Base-16 color style by "Abraham White".

TYPE: Literal['brushtrees-t16']

CUPCAKE_T16

Cupcake: Base-16 color style by "Chris Kempson".

TYPE: Literal['cupcake-t16']

Literals

MATERIAL_LIGHTER_T16

Material Lighter: Base-16 color style by "Nate Peterson".

TYPE: Literal['material-lighter-t16']

RANDOM_LIGHT_LOW_CONTRAST_T16

TYPE: Literal['random-light-low-t16']

WINDOWS_10_LIGHT_T16

Windows 10 Light: Base-16 color style by "Fergus Collins".

TYPE: Literal['windows-10-light-t16']

WINDOWS_NT_LIGHT_T16

Windows NT Light: Base-16 color style by "Fergus Collins".

TYPE: Literal['windows-nt-light-t16']

Source code in src/omnipy/shared/enums/colorstyles.py
class LightLowContrastTintedThemingBase16ColorStyles(LiteralEnum[str]):
    f"""
    {_GENERAL_T16_COLOR_STYLE_DOCSTRING.format(description='Light, lower contrast')}

    These styles have lower-level contrast that did not meet {_COLOR_CONTRAST_TEXT}
    """

    Literals = Literal['brushtrees-t16',
                       'cupcake-t16',
                       'material-lighter-t16',
                       'windows-10-light-t16',
                       'windows-nt-light-t16',
                       'random-light-low-t16']

    BRUSHTREES_T16: Literal['brushtrees-t16'] = 'brushtrees-t16'
    """
    Brush Trees: Base-16 color style by "Abraham White".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    CUPCAKE_T16: Literal['cupcake-t16'] = 'cupcake-t16'
    """
    Cupcake: Base-16 color style by "Chris Kempson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    MATERIAL_LIGHTER_T16: Literal['material-lighter-t16'] = 'material-lighter-t16'
    """
    Material Lighter: Base-16 color style by "Nate Peterson".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    WINDOWS_10_LIGHT_T16: Literal['windows-10-light-t16'] = 'windows-10-light-t16'
    """
    Windows 10 Light: Base-16 color style by "Fergus Collins".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    WINDOWS_NT_LIGHT_T16: Literal['windows-nt-light-t16'] = 'windows-nt-light-t16'
    """
    Windows NT Light: Base-16 color style by "Fergus Collins".

    Collected by Tinted Theming (https://github.com/tinted-theming/schemes).
    Automatically downloaded by Omnipy when needed (locally cached).

    This style is a light variant, with lower-level contrast that did not
    meet the AA criteria of the Web Content Accessibility Guidelines (WCAG)
    2.1 (https://www.w3.org/TR/WCAG21/).
    """

    RANDOM_LIGHT_LOW_CONTRAST_T16: Literal['random-light-low-t16'] = 'random-light-low-t16'

BRUSHTREES_T16 class-attribute instance-attribute

BRUSHTREES_T16: Literal['brushtrees-t16'] = 'brushtrees-t16'

Brush Trees: Base-16 color style by "Abraham White".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

CUPCAKE_T16 class-attribute instance-attribute

CUPCAKE_T16: Literal['cupcake-t16'] = 'cupcake-t16'

Cupcake: Base-16 color style by "Chris Kempson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

Literals class-attribute instance-attribute

Literals = Literal[
    "brushtrees-t16",
    "cupcake-t16",
    "material-lighter-t16",
    "windows-10-light-t16",
    "windows-nt-light-t16",
    "random-light-low-t16",
]

MATERIAL_LIGHTER_T16 class-attribute instance-attribute

MATERIAL_LIGHTER_T16: Literal['material-lighter-t16'] = 'material-lighter-t16'

Material Lighter: Base-16 color style by "Nate Peterson".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

RANDOM_LIGHT_LOW_CONTRAST_T16 class-attribute instance-attribute

RANDOM_LIGHT_LOW_CONTRAST_T16: Literal['random-light-low-t16'] = 'random-light-low-t16'

WINDOWS_10_LIGHT_T16 class-attribute instance-attribute

WINDOWS_10_LIGHT_T16: Literal['windows-10-light-t16'] = 'windows-10-light-t16'

Windows 10 Light: Base-16 color style by "Fergus Collins".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

WINDOWS_NT_LIGHT_T16 class-attribute instance-attribute

WINDOWS_NT_LIGHT_T16: Literal['windows-nt-light-t16'] = 'windows-nt-light-t16'

Windows NT Light: Base-16 color style by "Fergus Collins".

Collected by Tinted Theming (https://github.com/tinted-theming/schemes). Automatically downloaded by Omnipy when needed (locally cached).

This style is a light variant, with lower-level contrast that did not meet the AA criteria of the Web Content Accessibility Guidelines (WCAG) 2.1 (https://www.w3.org/TR/WCAG21/).

LightTintedThemingBase16ColorStyles

Bases: LightHighContrastTintedThemingBase16ColorStyles, LightLowContrastTintedThemingBase16ColorStyles

ATTRIBUTE DESCRIPTION
Literals

RANDOM_LIGHT_T16

TYPE: Literal['random-light-t16']

Source code in src/omnipy/shared/enums/colorstyles.py
class LightTintedThemingBase16ColorStyles(
        LightHighContrastTintedThemingBase16ColorStyles,
        LightLowContrastTintedThemingBase16ColorStyles,
):
    f"""
    {_GENERAL_T16_COLOR_STYLE_DOCSTRING.format(description='All light')}
    """

    Literals = Literal[LightHighContrastTintedThemingBase16ColorStyles.Literals,
                       LightLowContrastTintedThemingBase16ColorStyles.Literals,
                       'random-light-t16']

    RANDOM_LIGHT_T16: Literal['random-light-t16'] = 'random-light-t16'

Literals class-attribute instance-attribute

RANDOM_LIGHT_T16 class-attribute instance-attribute

RANDOM_LIGHT_T16: Literal['random-light-t16'] = 'random-light-t16'

RecommendedColorStyles

Bases: LiteralEnum[str]

Recommended color styles for syntax highlighting, provided through the Pygments and Rich libraries.

The ANSI color styles are provided to make Omnipy work ok on a wider range of terminals, but they are not recommended for use in the long run. For best results, you should switch to the light or white variants of the Omnipy Selenized styles, or to another color style of your choice.

METHOD DESCRIPTION
get_default_style

Returns the default color style for the given color system.

ATTRIBUTE DESCRIPTION
ANSI_DARK

TYPE: Literal['ansi-dark']

ANSI_LIGHT

TYPE: Literal['ansi-light']

AUTO

The default color style, which is automatically replaced with one of the

TYPE: Literal['auto']

Literals

OMNIPY_SELENIZED_BLACK

TYPE: Literal['omnipy-selenized-black']

OMNIPY_SELENIZED_DARK

TYPE: Literal['omnipy-selenized-dark']

OMNIPY_SELENIZED_LIGHT

TYPE: Literal['omnipy-selenized-light']

OMNIPY_SELENIZED_WHITE

TYPE: Literal['omnipy-selenized-white']

Source code in src/omnipy/shared/enums/colorstyles.py
class RecommendedColorStyles(LiteralEnum[str]):
    """
    Recommended color styles for syntax highlighting, provided through the
    Pygments and Rich libraries.

    The ANSI color styles are provided to make Omnipy work ok on a wider
    range of terminals, but they are not recommended for use in the long
    run. For best results, you should switch to the light or white variants
    of the Omnipy Selenized styles, or to another color style of your
    choice. """

    Literals = Literal['auto',
                       'ansi-dark',
                       'ansi-light',
                       'omnipy-selenized-black',
                       'omnipy-selenized-dark',
                       'omnipy-selenized-light',
                       'omnipy-selenized-white']

    AUTO: Literal['auto'] = 'auto'
    """
    The default color style, which is automatically replaced with one of the
    other recommended styles based on the color system, dark background
    and transparent background settings.

    ANSI color styles are selected for color systems with fewer than 256
    colors. Otherwise, the Omnipy Selenized styles are selected based on
    the dark background and transparent background settings.

    All recommended styles will automatically replace themselves with other
    recommended styles if the color system or background settings change.
    If you want to fix a specific color style, you should use one of the
    other (non-recommended) styles directly.
    """

    ANSI_DARK: Literal['ansi-dark'] = 'ansi-dark'
    f"""
    {_ANSI_TEXT.format(variant='dark')}
    """

    ANSI_LIGHT: Literal['ansi-light'] = 'ansi-light'
    f"""
    {_ANSI_TEXT.format(variant='light')}Even though the light variant is
    defined for light backgrounds, you may find the ANSI dark variant
    slightly more readable across both light and dark terminal themes.
    """

    OMNIPY_SELENIZED_BLACK: Literal['omnipy-selenized-black'] = 'omnipy-selenized-black'
    f"""
    {_SELENIZED_TEXT}
    Black variant: A slightly soft dark theme with an almost black
    background, suitable also on a fully black background.
    """

    OMNIPY_SELENIZED_DARK: Literal['omnipy-selenized-dark'] = 'omnipy-selenized-dark'
    f"""
    {_SELENIZED_TEXT}
    Dark variant: A dark theme on a dark bluish background, a bit harsh on a
    fully black background.
    """

    OMNIPY_SELENIZED_LIGHT: Literal['omnipy-selenized-light'] = 'omnipy-selenized-light'
    f"""
    {_SELENIZED_TEXT}
    Light variant: A soft light theme on an off-white background, suitable
    also on a fully white background for a softer feel.
    """

    OMNIPY_SELENIZED_WHITE: Literal['omnipy-selenized-white'] = 'omnipy-selenized-white'
    f"""
    {_SELENIZED_TEXT}
    White variant: A light theme on a fully white background.
    """

    # Methods

    @classmethod
    def get_default_style(
        cls,
        color_system: DisplayColorSystem.Literals,
        dark_background: bool,
        solid_background: bool,
    ) -> 'RecommendedColorStyles.Literals':
        """
        Returns the default color style for the given color system.
        """
        match (color_system, dark_background, solid_background):
            case (DisplayColorSystem.ANSI_256 | DisplayColorSystem.ANSI_RGB, False, False):
                return cls.OMNIPY_SELENIZED_WHITE
            case (DisplayColorSystem.ANSI_256 | DisplayColorSystem.ANSI_RGB, False, True):
                return cls.OMNIPY_SELENIZED_LIGHT
            case (DisplayColorSystem.ANSI_256 | DisplayColorSystem.ANSI_RGB, True, False):
                return cls.OMNIPY_SELENIZED_BLACK
            case (DisplayColorSystem.ANSI_256 | DisplayColorSystem.ANSI_RGB, True, True):
                return cls.OMNIPY_SELENIZED_DARK
            case _, False, _:
                return cls.ANSI_LIGHT
            case _, True, _:
                return cls.ANSI_DARK
            case _ as never:
                assert_never(never)  # type: ignore[arg-type] # Unsure why mypy fails here

ANSI_DARK class-attribute instance-attribute

ANSI_DARK: Literal['ansi-dark'] = 'ansi-dark'

ANSI_LIGHT class-attribute instance-attribute

ANSI_LIGHT: Literal['ansi-light'] = 'ansi-light'

AUTO class-attribute instance-attribute

AUTO: Literal['auto'] = 'auto'

The default color style, which is automatically replaced with one of the other recommended styles based on the color system, dark background and transparent background settings.

ANSI color styles are selected for color systems with fewer than 256 colors. Otherwise, the Omnipy Selenized styles are selected based on the dark background and transparent background settings.

All recommended styles will automatically replace themselves with other recommended styles if the color system or background settings change. If you want to fix a specific color style, you should use one of the other (non-recommended) styles directly.

Literals class-attribute instance-attribute

Literals = Literal[
    "auto",
    "ansi-dark",
    "ansi-light",
    "omnipy-selenized-black",
    "omnipy-selenized-dark",
    "omnipy-selenized-light",
    "omnipy-selenized-white",
]

OMNIPY_SELENIZED_BLACK class-attribute instance-attribute

OMNIPY_SELENIZED_BLACK: Literal['omnipy-selenized-black'] = 'omnipy-selenized-black'

OMNIPY_SELENIZED_DARK class-attribute instance-attribute

OMNIPY_SELENIZED_DARK: Literal['omnipy-selenized-dark'] = 'omnipy-selenized-dark'

OMNIPY_SELENIZED_LIGHT class-attribute instance-attribute

OMNIPY_SELENIZED_LIGHT: Literal['omnipy-selenized-light'] = 'omnipy-selenized-light'

OMNIPY_SELENIZED_WHITE class-attribute instance-attribute

OMNIPY_SELENIZED_WHITE: Literal['omnipy-selenized-white'] = 'omnipy-selenized-white'

get_default_style classmethod

get_default_style(
    color_system: DisplayColorSystem.Literals, dark_background: bool, solid_background: bool
) -> RecommendedColorStyles.Literals

Returns the default color style for the given color system.

Source code in src/omnipy/shared/enums/colorstyles.py
@classmethod
def get_default_style(
    cls,
    color_system: DisplayColorSystem.Literals,
    dark_background: bool,
    solid_background: bool,
) -> 'RecommendedColorStyles.Literals':
    """
    Returns the default color style for the given color system.
    """
    match (color_system, dark_background, solid_background):
        case (DisplayColorSystem.ANSI_256 | DisplayColorSystem.ANSI_RGB, False, False):
            return cls.OMNIPY_SELENIZED_WHITE
        case (DisplayColorSystem.ANSI_256 | DisplayColorSystem.ANSI_RGB, False, True):
            return cls.OMNIPY_SELENIZED_LIGHT
        case (DisplayColorSystem.ANSI_256 | DisplayColorSystem.ANSI_RGB, True, False):
            return cls.OMNIPY_SELENIZED_BLACK
        case (DisplayColorSystem.ANSI_256 | DisplayColorSystem.ANSI_RGB, True, True):
            return cls.OMNIPY_SELENIZED_DARK
        case _, False, _:
            return cls.ANSI_LIGHT
        case _, True, _:
            return cls.ANSI_DARK
        case _ as never:
            assert_never(never)  # type: ignore[arg-type] # Unsure why mypy fails here

TintedThemingBase16ColorStyles

Bases: DarkTintedThemingBase16ColorStyles, LightTintedThemingBase16ColorStyles

ATTRIBUTE DESCRIPTION
Literals

RANDOM_T16

TYPE: Literal['random-t16']

Source code in src/omnipy/shared/enums/colorstyles.py
class TintedThemingBase16ColorStyles(
        DarkTintedThemingBase16ColorStyles,
        LightTintedThemingBase16ColorStyles,
):
    f"""
    {_GENERAL_T16_COLOR_STYLE_DOCSTRING.format(description='All')}
    """

    Literals = Literal[DarkTintedThemingBase16ColorStyles.Literals,
                       LightTintedThemingBase16ColorStyles.Literals,
                       'random-t16']

    RANDOM_T16: Literal['random-t16'] = 'random-t16'

Literals class-attribute instance-attribute

RANDOM_T16 class-attribute instance-attribute

RANDOM_T16: Literal['random-t16'] = 'random-t16'