fish_config: Use the same body fonts as the doc theme

Otherwise this was 100% monospace.

But since we have a specific list of fonts that we have checked, let's
use the same list instead of just adding "Helvetica" again.
This commit is contained in:
Fabian Homborg 2022-03-26 21:57:11 +01:00
parent ff6a12e9c6
commit 25e02ea07f

View File

@ -1,10 +1,14 @@
body {
background: linear-gradient(to bottom, #a7cfdf 0%, #23538a 100%);
/* List explained in the doc theme pydoctheme.css */
font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, "Ubuntu Mono", "Hack", "Noto Sans Mono", Liberation Mono, monospace;
font-family: "Segoe UI", system-ui, sans-serif;
color: #222;
}
.prompt_demo, .prompt_demo_text, .data_table_row, .colorpicker_text_sample_tight, .colorpicker_text_sample, .history_text, pre, code, tt {
font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, "Ubuntu Mono", "Hack", "Noto Sans Mono", Liberation Mono, monospace;
}
#ancestor {
width: 90%;
margin-left: auto;