sup

A curses threads-with-tags style email client

sup-colors.git

git clone https://supmua.dev/git/sup-colors/

template/generate_template.rb (237B) - raw

      1 #! /usr/bin/env ruby
      2 #
      3 # get latest color scheme defintion from sup
      4 #
      5 
      6 require 'yaml'
      7 require 'rubygems'
      8 gem 'sup'
      9 
     10 require 'sup/colormap.rb'
     11 
     12 File.open('colors.yaml', 'w') do |f|
     13   f.write Redwood::Colormap::DEFAULT_COLORS.to_yaml
     14 end
     15