Atelier colorscheme
Sulphurpool
Base color for sulphurpool is purple, and here the background-colors have these grey purplish colors for the background. Darkest background-color needed not to be as desaturated as some of the warmer palettes, giving this colorscheme it’s otherworldly character. Yellow and green are close, because of avoidance of too greenish hues. In all: easy on the eye.
Colors in code Scss variables
$base00: hsl(229, 37%, 20%); /* #202746 */
$base01: hsl(229, 35%, 25%); /* #293256 */
$base02: hsl(228, 18%, 45%); /* #5e6687 */
$base03: hsl(229, 16%, 50%); /* #6b7394 */
$base04: hsl(229, 13%, 59%); /* #898ea4 */
$base05: hsl(229, 16%, 65%); /* #979db4 */
$base06: hsl(229, 40%, 91%); /* #dfe2f1 */
$base07: hsl(229, 94%, 98%); /* #f5f7ff */
$base08: hsl(14, 71%, 47%);; /* #c94922 */
$base09: hsl(25, 66%, 47%); /* #c76b29 */
$base0a: hsl(38, 60%, 47%); /* #c08b30 */
$base0b: hsl(49, 50%, 45%); /* #ac9739 */
$base0c: hsl(194, 71%, 46%); /* #22a2c9 */
$base0d: hsl(207, 62%, 53%); /* #3d8fd1 */
$base0e: hsl(229, 50%, 60%); /* #6679cc */
$base0f: hsl(336, 22%, 50%); /* #9c637a */
$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.