Sha256: 750b398657b35333e02fc1a7e2920b64087f44a1e7263c588c974f6f0e50978a

Contents?: true

Size: 706 Bytes

Versions: 44

Compression:

Stored size: 706 Bytes

Contents

#!/usr/bin/env ruby

require 'term/ansicolor'

class String
  include Term::ANSIColor
end

def print_color(c)
  color = Term::ANSIColor::Attribute[c]
  text = [
    Term::ANSIColor::Attribute.nearest_rgb_color('#000'),
    Term::ANSIColor::Attribute.nearest_rgb_color('#fff'),
  ].max_by { |t| t.distance_to(color) }
  print ("%3u #{color.rgb.html} " % c).on_color(color.name).color(text.name)
end

for c in 0..3
  print_color c
end
puts

for c in 4..7
  print_color c
end
puts

for c in 8..11
  print_color c
end
puts

for c in 12..15
  print_color c
end
puts

for c in 16..231
  (c - 16) % 6 == 0 and puts
  print_color c
end
puts

for c in 232..255
  (c - 16) % 6 == 0 and puts
  print_color c
end
puts

Version data entries

44 entries across 40 versions & 9 rubygems

Version Path
tdiary-5.1.2 vendor/bundle/ruby/2.6.0/gems/term-ansicolor-1.2.2/bin/colortab
tdiary-5.1.1 vendor/bundle/ruby/2.6.0/gems/term-ansicolor-1.2.2/bin/colortab
tdiary-5.0.11 vendor/bundle/gems/term-ansicolor-1.6.0/bin/term_colortab
tdiary-5.0.9 vendor/bundle/gems/term-ansicolor-1.6.0/bin/term_colortab
tdiary-5.0.8 vendor/bundle/gems/tdiary-5.0.7/vendor/bundle/gems/term-ansicolor-1.6.0/bin/term_colortab
tdiary-5.0.8 vendor/bundle/gems/term-ansicolor-1.2.2/bin/colortab
tdiary-5.0.8 vendor/bundle/ruby/2.5.0/gems/term-ansicolor-1.2.2/bin/colortab
tdiary-5.0.7 vendor/bundle/gems/term-ansicolor-1.6.0/bin/term_colortab
tdiary-5.0.6 vendor/bundle/gems/term-ansicolor-1.6.0/bin/term_colortab
logstash-filter-cache-redis-0.3.1 vendor/bundle/jruby/1.9/gems/term-ansicolor-1.3.2/bin/colortab
logstash-filter-cache-redis-0.3.0 vendor/bundle/jruby/1.9/gems/term-ansicolor-1.3.2/bin/colortab
logstash-filter-cache-redis-0.2.0 vendor/bundle/jruby/1.9/gems/term-ansicolor-1.3.2/bin/colortab
logstash-filter-cache-redis-0.1.0 vendor/bundle/jruby/1.9/gems/term-ansicolor-1.3.2/bin/colortab
tdiary-5.0.5 vendor/bundle/gems/term-ansicolor-1.6.0/bin/term_colortab
tdiary-5.0.5 vendor/bundle/gems/term-ansicolor-1.4.0/bin/term_colortab
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/term-ansicolor-1.4.0/bin/term_colortab
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/term-ansicolor-1.6.0/bin/term_colortab
term-ansicolor-1.6.0 bin/term_colortab
tdiary-5.0.4 vendor/bundle/gems/term-ansicolor-1.4.0/bin/term_colortab
term-ansicolor-1.5.0 bin/term_colortab