Color Scheme Explorer

woodland base16 dark

woodland
darkwarmhigh-contrast
readability66/100dark97%bg#231e18fg#e4d4c8bg hue33°fg hue26°mean lightness54%saturation36%warmth+0.26mean hue30° orangehue variation57°distinct hues6avg contrast6.4fg contrast11.5text on bgwhiteachromatic0

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.65.06.88.910.111.54.35.27.98.06.96.56.55.8
base011.2·1.44.25.87.68.69.73.64.46.76.85.85.55.54.9
base021.61.4·3.04.15.46.27.02.63.24.84.94.24.03.93.5
base035.04.23.0·1.41.82.02.31.21.01.61.61.41.31.31.1
base046.85.84.11.4·1.31.51.71.61.31.21.21.01.01.11.2
base058.97.65.41.81.3·1.11.32.11.71.11.11.31.41.41.6
base0610.18.66.22.01.51.1·1.12.42.01.31.31.51.61.61.8
base0711.59.77.02.31.71.31.1·2.72.21.41.41.71.81.82.0
base084.33.62.61.21.62.12.42.7·1.21.81.91.61.51.51.3
base095.24.43.21.01.31.72.02.21.2·1.51.51.31.31.21.1
base0a7.96.74.81.61.21.11.31.41.81.5·1.01.21.21.21.4
base0b8.06.84.91.61.21.11.31.41.91.51.0·1.21.21.21.4
base0c6.95.84.21.41.01.31.51.71.61.31.21.2·1.11.11.2
base0d6.55.54.01.31.01.41.61.81.51.31.21.21.1·1.01.1
base0e6.55.53.91.31.11.41.61.81.51.21.21.21.11.0·1.1
base0f5.84.93.51.11.21.61.82.01.31.11.41.41.21.11.1·

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"