commit 71123ef7c32d13bf655eddc56a59194db8ed5cd5
parent 3f2572c79b0e5cabf729c97dc9ec9ba7e561f597
Author: Thomas Frössman <thomasf@jossystem.se>
Date: Sun, 17 Nov 2019 13:27:21 +0100
colorlab: added readme with very basic information about the tool
Diffstat:
4 files changed, 20 insertions(+), 14 deletions(-)
diff --git a/colorlab/README.md b/colorlab/README.md
@@ -0,0 +1,17 @@
+# colorlab
+
+This utility generates color palette lists for use in themes.
+
+`color.el` can be a bit cumbersome and it *might* not have every color feature
+we want so for the sake of easy experimentation it's written in Go because I
+found a more fully featured color package to work with.
+
+When we know more about which color functionality is actually required we might
+port missing features and translate color palette generation into elisp as well.
+
+This utility is currently not documented or very user friendly since it's an
+internal tool under development.
+
+The utility requires at least go 1.13
+
+`go run main.go` will rewrite all palettes in `../solarized-palettes.el` when run.
diff --git a/colorlab/go.mod b/colorlab/go.mod
@@ -2,7 +2,4 @@ module github.com/bbatsov/solarized-emacs/colorlab
go 1.13
-require (
- github.com/davecgh/go-spew v1.1.1
- github.com/lucasb-eyer/go-colorful v1.0.2
-)
+require github.com/lucasb-eyer/go-colorful v1.0.3
diff --git a/colorlab/go.sum b/colorlab/go.sum
@@ -1,6 +1,2 @@
-github.com/DATA-DOG/go-sqlmock v1.3.3 h1:CWUqKXe0s8A2z6qCgkP4Kru7wC11YoAnoupUKFDnH08=
-github.com/DATA-DOG/go-sqlmock v1.3.3/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM=
-github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
-github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
-github.com/lucasb-eyer/go-colorful v1.0.2 h1:mCMFu6PgSozg9tDNMMK3g18oJBX7oYGrC09mS6CXfO4=
-github.com/lucasb-eyer/go-colorful v1.0.2/go.mod h1:0MS4r+7BZKSJ5mw4/S5MPN+qHFF1fYclkSPilDOKW0s=
+github.com/lucasb-eyer/go-colorful v1.0.3 h1:QIbQXiugsb+q10B+MI+7DI1oQLdmnep86tWFlaaUAac=
+github.com/lucasb-eyer/go-colorful v1.0.3/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
diff --git a/colorlab/main.go b/colorlab/main.go
@@ -1,7 +1,3 @@
-// this is just a WIP where color.el can be a bit cumbersome and it *might* not
-// have every color feature we need so at least initial experimentation is done
-// here. If the process can be automated or needs manual ajdustments or needs
-// porting of colorspace code to elisp we don't know.
package main
import (