Syntax Highlighting Colorschemes

Atelier colorscheme

Seaside

Base color for Seaside is green, which leads to greenish colors for the background.

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

Colors in code Scss variables


$base00: hsl(120, 5%, 8%);    /* #131513; */
$base01: hsl(120, 6%, 15%);   /* #242924; */
$base02: hsl(120, 8%, 40%);   /* #5e6e5e; */
$base03: hsl(120, 9%, 45%);   /* #687d68; */
$base04: hsl(120, 11%, 55%);  /* #809980; */
$base05: hsl(120, 13%, 60%);  /* #8ca68c; */
$base06: hsl(120, 35%, 86%);  /* #cfe8cf; */
$base07: hsl(120, 50%, 97%);  /* #f4fbf4; */
$base08: hsl(350, 80%, 50%);  /* #e6193c; */
$base09: hsl(48, 65%, 32%);   /* #87711d; */
$base0a: hsl(60, 70%, 35%);   /* #98981b; */
$base0b: hsl(120, 60%, 40%);  /* #29a329; */
$base0c: hsl(190, 75%, 40%);  /* #1999b3; */
$base0d: hsl(228, 95%, 63%);  /* #3d62f5; */
$base0e: hsl(280, 85%, 55%);  /* #ad2bee; */
$base0f: hsl(310, 80%, 50%);  /* #e619c3; */

$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