From 027c5a339c4947d52ba67681ae752898c5f618b4 Mon Sep 17 00:00:00 2001 From: Tai Groot Date: Thu, 31 Mar 2022 05:57:32 -0700 Subject: [PATCH] added warning readme --- .gitignore | 1 + README.md | 9 +++++++++ color_hex/curated.go | 3 +++ 3 files changed, 13 insertions(+) create mode 100644 README.md create mode 100644 color_hex/curated.go diff --git a/.gitignore b/.gitignore index e05280e..6708238 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ go-colorpalettes +pallettes/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..840d220 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# DO NOT USE + +This repo is far from ready. +The goal is to eventually have a ton of color palettes ready for use in go-colorhash or other color libraries. +However, to keep the library as small as possible, all colors will be stored in integer format, and it is on the user to load them into a color library (such as the color package in the standard library). + +Pulling in as many sources for color palettes is a time-consuming process, especially when many colors have names, but most do not, etc. + +**EXPECT THE API TO CHANGE DAILY UNTIL v1.x.x IS RELEASED!* diff --git a/color_hex/curated.go b/color_hex/curated.go new file mode 100644 index 0000000..a40e49b --- /dev/null +++ b/color_hex/curated.go @@ -0,0 +1,3 @@ +package color_hex + +var Curated = append(Palettes["ESO MOTD Color Text"], append(Palettes["Cyberpunk Neon"], Palettes["cool"]...)...)