Atelier colorscheme
Estuary
Base color for Estuary is yellow-green, no real blue, red or purple in here, (red goes to the orange), only the yellow/greenish colors are saturated. Colors are all very close in terms of (mid-range) tonal-contrast (‘“grey value”). A bit of a poisonous colorscheme, be aware of the crocodiles …, they’re hiding in there.
Colors in code Scss variables
$base00: hsl(55, 12%, 12%) /* #22221b */
$base01: hsl(55, 11%, 17%) /* #302f27 */
$base02: hsl(55, 10%, 34%) /* #5f5e4e */
$base03: hsl(55, 9%, 39%) /* #6c6b5a */
$base04: hsl(55, 8%, 49%) /* #878573 */
$base05: hsl(55, 7%, 54%) /* #929181 */
$base06: hsl(55, 15%, 89%) /* #e7e6df */
$base07: hsl(55, 25%, 94%) /* #f4f3ec */
$base08: hsl(20, 55%, 47%) /* #ba6236 */
$base09: hsl(37, 80%, 38%) /* #ae7313 */
$base0a: hsl(55, 85%, 35%) /* #a5980d */
$base0b: hsl(74, 60%, 37%) /* #7d9726 */
$base0c: hsl(107, 37%, 45% /* #5b9d48 */
$base0d: hsl(147, 50%, 42% /* #36a166 */
$base0e: hsl(162, 21%, 47% /* #5f9182 */
$base0f: hsl(340, 20%, 52% /* #9d6c7c */
$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.