Color Scheme Explorer

everforest base16 dark

everforest
darkcolorfulwarmhigh-contrast
readability64/100dark92%bg#2f383efg#fdf6e3bg hue204°fg hue44°mean lightness63%saturation36%warmth+0.17mean hue44° orangehue variation58°distinct hues7avg contrast5.8fg contrast11.1text on bgwhiteachromatic1

Colors

base00
base01
base02
base03
base04
base05
base06
base07
base08
base09
base0A
base0B
base0C
base0D
base0E
base0F
roygcbpb

Ramp is sorted by WCAG relative luminance; the strip maps the 8 ANSI roles (base08–base0F).

Code sample

package main

import "fmt"

const (
	Version  = "1.2.0" // release
	MaxTries = 3
)

type Server struct {
	Host string
	Port int
}

func (s *Server) start(tls bool) error {
	addr := fmt.Sprintf("%s:%d", s.Host, s.Port)
	if tls {
		return listen(addr, 443)
	}
	return listen(addr, 80)
}

Analysis

hue wheel
hue histogram
<1.21.2234.5≥7
contrast buckets
WCAG contrast matrix
vsbase00base01base02base03base04base05base06base07base08base09base0abase0bbase0cbase0dbase0ebase0f
base00·1.21.63.74.97.19.111.15.55.26.65.65.26.04.49.9
base011.2·1.33.24.26.17.89.64.84.55.74.94.55.23.88.6
base021.61.3·2.43.14.55.87.13.53.34.23.63.33.82.86.4
base033.73.22.4·1.31.92.53.01.51.41.81.51.41.61.22.7
base044.94.23.11.3·1.41.92.31.11.11.31.21.11.21.12.0
base057.16.14.51.91.4·1.31.61.31.41.11.31.41.21.61.4
base069.17.85.82.51.91.3·1.21.71.81.41.61.81.52.11.1
base0711.19.67.13.02.31.61.2·2.02.11.72.02.11.92.51.1
base085.54.83.51.51.11.31.72.0·1.11.21.01.11.11.31.8
base095.24.53.31.41.11.41.82.11.1·1.31.11.01.21.21.9
base0a6.65.74.21.81.31.11.41.71.21.3·1.21.31.11.51.5
base0b5.64.93.61.51.21.31.62.01.01.11.2·1.11.11.31.8
base0c5.24.53.31.41.11.41.82.11.11.01.31.1·1.21.21.9
base0d6.05.23.81.61.21.21.51.91.11.21.11.11.2·1.41.7
base0e4.43.82.81.21.11.62.12.51.31.21.51.31.21.4·2.3
base0f9.98.66.42.72.01.41.11.11.81.91.51.81.91.72.3·

Each cell is the WCAG contrast ratio between the row color and the column color (darker cell = higher ratio). ≥4.5 passes AA for normal text, ≥7 passes AAA.

Terminal

user@host:~/dev/scheme$ ls -la
-rw-r--r-- 8.9K user main.go
-rw-r--r-- 5.8K user preview.go
-rwxr-xr-x 9.9M user colorexplorer
drwxr-xr-x 4096 user cache/
lrwxrwxrwx 11 user site -> public
-rw-r--r-- 2400 user bundle.zip
user@host:~/dev/scheme$ git diff --stat
diff --git a/main.go b/main.go
--- a/main.go
+++ b/main.go
@@ -12,7 +12,8 @@
-	addr := ":8080"
+	addr := ":9090"