Atelier colorscheme
Heath
Base color for Heath is magenta, and here the background-colors have these cool-red colors for the background, but then obviously toned down quite a bit ….
Colors in code Scss variables
$base00: hsl(300, 5%, 10%); /* #1b181b */
$base01: hsl(300, 8%, 15%); /* #292329 */
$base02: hsl(300, 6%, 39%); /* #695d69 */
$base03: hsl(300, 6%, 44%); /* #776977 */
$base04: hsl(300, 7%, 59%); /* #9e8f9e */
$base05: hsl(300, 9%, 64%); /* #ab9bab */
$base06: hsl(300, 16%, 86%); /* #d8cad8 */
$base07: hsl(300, 20%, 96%); /* #f7f3f7 */
$base08: hsl(8, 65%, 48%); /* #ca402b */
$base09: hsl(24, 63%, 40%); /* #a65926 */
$base0a: hsl(38, 56%, 47%); /* #bb8a35 */
$base0b: hsl(56, 42%, 40%); /* #918b3b */
$base0c: hsl(180, 75%, 33%); /* #159393 */
$base0d: hsl(230, 80%, 62%); /* #516aec */
$base0e: hsl(260, 45%, 55%); /* #7b59c0 */
$base0f: hsl(300, 60%, 50%); /* #c3c */
$red: $base08;
$orange: $base09;
$yellow: $base0a;
$green: $base0b;
$cyan: $base0c;
$blue: $base0d;
$violet: $base0e;
$magenta: $base0f;
require "gem" string = "base16" symbol = :base16 fixnum = 0 float = 0.00 array = Array.new array = ['chris', 85] hash = {"test" => "test"} regexp = /[abc]/ # This is a comment class Person attr_accessor :name def initialize(attributes = {}) @name = attributes[:name] end def self.greet "hello" end end person1 = Person.new(:name => "Chris") print Person::greet, " ", person1.name, "\n" puts "another #{Person::greet} #{person1.name}"
require "rubygems" string = "tomorrow" symbol = :tomorrow fixnum = 0 float = 0.00 array = Array.new array = ['chris', 85] hash = {"test" => "test"} regexp = /[abc]/ # This is a comment class Person attr_accessor :name def initialize(attributes = {}) @name = attributes[:name] end def self.greet "hello" end end person1 = Person.new(:name => "Chris") print Person::greet, " ", person1.name, "\n" puts "another #{Person::greet} #{person1.name}"
Downloads
All downloads are archived now but can still be found in the archived output folder.
Note: For Sublime Text, go to Textmate folder, or download the zip-file directly.
For Vim with Pathogen you can clone the dedicated repo for this purpose in the ~/.vim/bundle
directory like so:
cd ~/.vim/bundle
git clone https://github.com/atelierbram/vim-colors_atelier-schemes.git
Credits
- Credits to Ethan Schoonover whose Solarized colorscheme was a model for these colorschemes
- And credits to Chris Kempson, whose Base16 Builder was used for conversion to the different output formats.