finalynx.theme

DOCUMENTATION

  • See available colors: https://rich.readthedocs.io/en/stable/appendix/colors.html#appendix-colors

  • See available styles: https://rich.readthedocs.io/en/stable/style.html

Module Contents

Classes

Theme

Default theme with sensible values for light terminal backgrounds.

DarkTheme

Default theme with sensible values for dark terminal backgrounds.

DashboardTheme

Used when showing the rich output in the dashboard or when exporting to PNG.

Data

LightTheme

AVAILABLE_THEMES

API

class finalynx.theme.Theme[source]

Default theme with sensible values for light terminal backgrounds.

TEXT

‘black’

ACCENT

‘deep_sky_blue2’

HINT

‘dim white’

FOLDER_COLOR

‘dodger_blue2’

FOLDER_STYLE

‘bold’

ENVELOPE_CODE

‘dim white’

TARGET_NONE

‘black’

TARGET_START

‘cyan’

TARGET_OK

‘green’

TARGET_TOLERATED

‘yellow’

TARGET_NOK

‘red’

TARGET_INVEST

‘red’

TARGET_DEVEST

‘magenta’

DELTA_POS

‘green’

DELTA_NEG

‘red’

TREE_BRANCH

‘grey42’

PANEL

‘black’

finalynx.theme.LightTheme

None

class finalynx.theme.DarkTheme[source]

Bases: finalynx.theme.Theme

Default theme with sensible values for dark terminal backgrounds.

TEXT

‘white’

HINT

‘dim white’

ENVELOPE_CODE

‘dim white’

TARGET_NONE

‘white’

PANEL

‘white’

class finalynx.theme.DashboardTheme[source]

Bases: finalynx.theme.Theme

Used when showing the rich output in the dashboard or when exporting to PNG.

HINT

‘grey62’

finalynx.theme.AVAILABLE_THEMES: Dict[str, Type[finalynx.theme.Theme]]

None