From 816730456cf09555b897101b0e9bafb72b28a868 Mon Sep 17 00:00:00 2001 From: Veit Lehmann Date: Mon, 31 Oct 2022 19:57:07 +0100 Subject: [PATCH] document font-family configuration via css variables --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 47628d22..44032632 100644 --- a/README.md +++ b/README.md @@ -28,9 +28,16 @@ There are different color schemes available. If you choose the `auto` variants, You can configure the post content font size and the general UI spacing by using the `Customize` button in the TT-RSS settings and adding and adjusting this chunk of CSS code: ```css +/* These are the default settings for feedly.css */ :root { --base-spacing: 30px; --font-size-post: 14px; + --fonts-ui: "Helvetica Neue", Arial, Helvetica, "Liberation Sans", + "Nimbus Sans L", FreeSans, sans-serif; + --fonts-content: var(--fonts-ui); + --fonts-heading: SansCn; + --fonts-mono: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", + "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace; } ```