summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-03 06:58:04 -0500
committerJeff Carr <[email protected]>2024-10-03 06:58:04 -0500
commit32619e7dadbbb4c812b0b405588b158ba562a50f (patch)
treebe3cfebf6faa8aad21c8c9e9aa82dffca36beedc
parent2ea283ea74232e1d812f4f4da3156dace35a96a3 (diff)
link to blog about terminal color
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--README.md1
-rw-r--r--color.go3
2 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index 03207c1..0e4bd4f 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,4 @@
# a console toolkit around gocui
[terminals that support ture color](https://github.com/termstandard/colors#truecolor-support-in-output-devices)
+[more info about color](https://jvns.ca/blog/2024/10/01/terminal-colours/)
diff --git a/color.go b/color.go
index c647588..6586d3a 100644
--- a/color.go
+++ b/color.go
@@ -1,5 +1,8 @@
package main
+// information about how terminfo works
+// https://jvns.ca/blog/2024/10/01/terminal-colours/
+
import (
"math/rand"