Syntax Highlighting Colorschemes

Atelier colorscheme

Plateau

Base color for Plateau is red, and here the background-colors have these chocolate brown/grey colors for the background, while the “color-wheel colors” are quite desaturated. A warm palette; no real green in here, (see also “Cave”).

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

Colors in code Scss variables


$base00: hsl(0, 7%, 10%)     /* #1b1818 */
$base01: hsl(0, 6%, 15%)     /* #292424 */
$base02: hsl(0, 5%, 33%)     /* #585050 */
$base03: hsl(0, 4%, 38%)     /* #655d5d */
$base04: hsl(0, 3%, 48%)     /* #7e7777 */
$base05: hsl(0, 2%, 53%)     /* #8a8585 */
$base06: hsl(0, 15%, 89%)    /* #e7dfdf */
$base07: hsl(0, 25%, 94%)    /* #f4ecec */
$base08: hsl(0, 55%, 54%)    /* #ca4949 */
$base09: hsl(15, 50%, 47%)   /* #b45a3c */
$base0a: hsl(30, 46%, 43%)   /* #a06e3b */
$base0b: hsl(180, 30%, 42%)  /* #4b8b8b */
$base0c: hsl(210, 40%, 52%)  /* #5485b6 */
$base0d: hsl(240, 45%, 62%)  /* #7272ca */
$base0e: hsl(260, 45%, 58%)  /* #8464c4 */
$base0f: hsl(330, 45%, 53%)  /* #bd5187 */

$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