about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2021-05-31 19:18:07 +0200
committerSören Tempel <soeren+git@soeren-tempel.net>2021-05-31 19:18:07 +0200
commitc428e4ad4476e60941a4c0b2e77b141ceb4e6548 (patch)
treef63a2e4307efbaad74a8699101eb9cdee7f475bb
parentc7b61612ed57cfe6c013d1fc93e4d82bbf4b45a2 (diff)
README.md: Fix font configuration in example CSS configuration file
-rw-r--r--README.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/README.md b/README.md
index 351da99..615320f 100644
--- a/README.md
+++ b/README.md
@@ -81,13 +81,17 @@ For example, to change the color scheme and employed font. Add the
 following to your `gtk.css` configuration file located at
 `$XDG_CONFIG_HOME/gtk-3.0/gtk.css`:
 
-	#saneterm textview text {
-		font-size: 15px;
-		font-family: "Terminus";
+	#saneterm textview {
+		font-family: Terminus;
+		font-size: 16px;
+	}
 
+	#saneterm textview text {
 		background-color: #181818;
 		color: #d8d8d8;
-		caret-color: #d8d8d8; /* cursor color */
+
+		/* change cursor color too */
+		caret-color: #d8d8d8;
 	}
 
 Keybindings can be configured using the same mechanism, see `keys.py`