Syntax Highlighting Colorschemes

Atelier colorscheme

Savanna

Base color for Savanna is green, it has greenish colors for the background. “Color-wheel colors” are desaturated considerably, giving this colorscheme a rather understated appeal and, dear I say it, a ‘natural’ look and feel.

base00 base01 base02 base03 base04 base05 base06 base07 yellow orange red magenta violet blue cyan green

Colors in code Scss variables


$base00: hsl(140, 10%, 10%)  /* #171c19 */
$base01: hsl(140, 9%, 15%)   /* #232a25 */
$base02: hsl(140, 8%, 35%)   /* #526057 */
$base03: hsl(140, 7%, 40%)   /* #5f6d64 */
$base04: hsl(140, 6%, 50%)   /* #78877d */
$base05: hsl(140, 5%, 55%)   /* #87928a */
$base06: hsl(140, 15%, 89%)  /* #dfe7e2 */
$base07: hsl(140, 25%, 94%)  /* #ecf4ee */
$base08: hsl(20, 51%, 46%)   /* #b16139 */
$base09: hsl(32, 45%, 43%)   /* #9f713c */
$base0a: hsl(40, 46%, 43%)   /* #a07e3b */
$base0b: hsl(140, 36%, 44%)  /* #489963 */
$base0c: hsl(183, 70%, 37%)  /* #1c9aa0 */
$base0d: hsl(183, 34%, 42%)  /* #478c90 */
$base0e: hsl(199, 29%, 47%)  /* #55859b */
$base0f: hsl(21, 12%, 47%)   /* #867469 */

$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

This repo on Github Go to Top