Color Scheme Explorer

gigavolt base16 dark

gigavolt
darkcolorfulvividhigh-contrast
readability65/100dark97%bg#202126fg#f2fbffbg hue230°fg hue198°mean lightness66%saturation69%warmth-0.03mean hue222° azurehue variation90°distinct hues7avg contrast8.9fg contrast15.3text 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.22.39.910.913.014.215.35.511.411.912.86.17.76.44.9
base011.2·1.98.08.910.611.612.54.59.39.710.45.06.35.24.0
base022.31.9·4.34.75.66.16.62.44.95.15.52.73.32.82.1
base039.98.04.3·1.11.31.41.61.81.21.21.31.61.31.52.0
base0410.98.94.71.1·1.21.31.42.01.01.11.21.81.41.72.2
base0513.010.65.61.31.2·1.11.22.41.11.11.02.11.72.02.6
base0614.211.66.11.41.31.1·1.12.61.21.21.12.31.82.22.9
base0715.312.56.61.61.41.21.1·2.81.31.31.22.52.02.43.1
base085.54.52.41.82.02.42.62.8·2.12.22.31.11.41.21.1
base0911.49.34.91.21.01.11.21.32.1·1.01.11.91.51.82.3
base0a11.99.75.11.21.11.11.21.32.21.0·1.11.91.51.82.4
base0b12.810.45.51.31.21.01.11.22.31.11.1·2.11.62.02.6
base0c6.15.02.71.61.82.12.32.51.11.91.92.1·1.31.01.3
base0d7.76.33.31.31.41.71.82.01.41.51.51.61.3·1.21.6
base0e6.45.22.81.51.72.02.22.41.21.81.82.01.01.2·1.3
base0f4.94.02.12.02.22.62.93.11.12.32.42.61.31.61.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"