Syntax Highlighting Colorschemes

Atelier colorscheme

Dune

Base color for Dune is yellow, and then warm yellowish brown greyed colors for the background. A welcoming, soothing friendly but also bright, colorscheme.

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

Colors in code Scss variables


$base00: hsl(50, 5%, 12%);   /* #20201d */
$base01: hsl(50, 6%, 15%);   /* #292824 */
$base02: hsl(50, 8%, 40%);   /* #6e6b5e */
$base03: hsl(50, 9%, 45%);   /* #7d7a68 */
$base04: hsl(50, 11%, 55%);  /* #999580 */
$base05: hsl(50, 13%, 60%);  /* #a6a28c */
$base06: hsl(50, 35%, 86%);  /* #e8e4cf */
$base07: hsl(50, 87%, 96%);  /* #fefbec */
$base08: hsl(0, 67%, 53%);   /* #d73737 */
$base09: hsl(25, 83%, 39%);  /* #b65611 */
$base0a: hsl(50, 80%, 38%);  /* #ae9513 */
$base0b: hsl(100, 50%, 45%); /* #60ac39 */
$base0c: hsl(162, 70%, 40%); /* #1fad83 */
$base0d: hsl(225, 67%, 64%); /* #6684e1 */
$base0e: hsl(287, 60%, 58%); /* #b854d4 */
$base0f: hsl(349, 65%, 52%); /* #d43552 */

$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