Atelier colorscheme
Cave
Base color for Cave is violet, and although the colors are regularly spaced out, there is no real green in here, (see also “Plateau”) a “cool-warm” palette; not for the claustrophobic.
Colors in code Scss variables
$base00: hsl(265, 10%, 10%); /* #19171c */
$base01: hsl(265, 9%, 15%); /* #26232a */
$base02: hsl(265, 8%, 35%); /* #585260 */
$base03: hsl(265, 7%, 40%); /* #655f6d */
$base04: hsl(265, 6%, 50%); /* #7e7887 */
$base05: hsl(265, 5%, 55%); /* #8b8792 */
$base06: hsl(265, 15%, 89%); /* #e2dfe7 */
$base07: hsl(265, 25%, 94%); /* #efecf4 */
$base08: hsl(335, 48%, 51%); /* #be4678 */
$base09: hsl(15, 48%, 45%); /* #aa573c */
$base0a: hsl(30, 46%, 43%); /* #a06e3b */
$base0b: hsl(180, 55%, 37%); /* #2a9292 */
$base0c: hsl(205, 55%, 50%); /* #398bc6 */
$base0d: hsl(230, 65%, 60%); /* #576ddb */
$base0e: hsl(265, 75%, 63%); /* #955ae7 */
$base0f: hsl(300, 50%, 50%); /* #bf40bf */
$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.