Atelier colorscheme
Forest
Starting point for Forest was to have brownish colors for the background, not unlike a colorsheme like “Birds of Paradise”, but a bit muddier on the browns, less red and more greyed out, like clay.
Colors in code Scss variables
$base00: hsl(20, 6%, 10%); /* #1b1918 */
$base01: hsl(16, 14%, 15%); /* #2c2421 */
$base02: hsl(18, 5%, 39%); /* #68615e */
$base03: hsl(16, 5%, 44%); /* #766e6b */
$base04: hsl(16, 5%, 59%); /* #9c9491 */
$base05: hsl(13, 5%, 64%); /* #a8a19f */
$base06: hsl(20, 11%, 89%); /* #e6e2e0 */
$base07: hsl(20, 10%, 94%); /* #f1efee */
$base08: hsl(354, 88%, 56%); /* #f22c40 */
$base09: hsl(16, 75%, 50%); /* #df5320 */
$base0a: hsl(38, 78%, 43%); /* #c38418 */
$base0b: hsl(75, 60%, 37%); /* #7b9726 */
$base0c: hsl(174, 100%, 34%); /* #00ad9c */
$base0d: hsl(218, 78%, 58%); /* #407ee7 */
$base0e: hsl(240, 76%, 66%); /* #6666ea */
$base0f: hsl(284, 88%, 60%); /* #c33ff3 */
$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.