Procházet zdrojové kódy

fix(colors): use colors adapted on both dark and light background

tags/v0.10.6
Jérôme Deuchnord před 2 roky
committed by Jérôme Deuchnord
rodič
revize
9bdb490435
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. +3
    -3
      _kosmorro/dumper.py

+ 3
- 3
_kosmorro/dumper.py Zobrazit soubor

@@ -145,14 +145,14 @@ class TextDumper(Dumper):
return text

styles = {
"h1": lambda t: colored(t, "yellow", attrs=["bold"]),
"h1": lambda t: colored(t, "green", attrs=["bold"]),
"h2": lambda t: colored(t, "magenta", attrs=["bold"]),
"th": lambda t: colored(t, "white", attrs=["bold"]),
"th": lambda t: colored(t, attrs=["bold"]),
"strong": lambda t: colored(t, attrs=["bold"]),
"em": lambda t: colored(t, attrs=["dark"]),
}

return styles[tag](text)
return styles.get(tag, lambda t: t)(text)

def stringify_ephemerides(self) -> str:
data = []


Načítá se…
Zrušit
Uložit