Skip to content

Commit

Permalink
Atom themes.
Browse files Browse the repository at this point in the history
  • Loading branch information
daylerees committed Feb 27, 2014
1 parent 40f4a90 commit 600f896
Show file tree
Hide file tree
Showing 184 changed files with 14,438 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@ To use the Highlight.JS themes, simply use the appropriate CSS file from within

To install a Coda theme, enter the preferences for Code, click the 'Colors' tab, hit the cog icon and choose import to select a theme from the `coda` directory.

### Atom

To install an atom theme, simply copy it from the `atom` directory to `~/.atom/packages`. Now you can select it from the settings menu. Enjoy!

## Requests

- **Hyrule** - Requested by Taylor Otwell of Laravel, a Zelda theme!
Expand Down
147 changes: 147 additions & 0 deletions atom/arstotzka/index.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
@import "ui-variables";

@base03: #211f1e;
@base02: #073642;
@base01: #586e75;
@base00: #657b83;
@base0: #839496;
@base1: #93a1a1;
@base2: #eee8d5;
@base3: #fdf6e3;

@yellow: #b58900;
@orange: #cb4b16;
@red: #dc322f;
@magenta: #d33682;
@violet: #6c71c4;
@blue: #268bd2;
@cyan: #2aa198;
@green: #859900;


.editor-colors {
background-color: #211f1e;
color: #EDEBE6;
}

.editor {
.invisible-character,
.indent-guide {
color: #292725;
}

.gutter {
background-color: #211f1e;
}

.gutter .line-number {
opacity: 0.3;
}

.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #516B6B;
}

.cursor {
border-color: #f8f8f0;
}

.selection .region {
background-color: #516B6B;
color: #ffffff;
}

.line-number.cursor-line-no-selection {
background-color: #292725;
}
}

.bracket-matcher {
background-color: #516B6B;
opacity: 0.4;
}

.comment {
color: #3f3a36;
}

.entity {
color: #70807B;
}

.entity.name.type.class {
color: #EDEBE6;
}

.keyword {
color: #A2A797;
}

.storage.type {
color: #A2A797;
}

.storage.modifier {
color: #516B6B;
}

.constant {
color: #516B6B;

&.numeric,
&.boolean {
color: #a5e3d0;
}
}

.variable {
color: #EDEBE6;
}

.delimiter, .brace {
color: #EDEBE6;
}

.delimiter.period {
color: #516B6B;
}

.invalid.deprecated {
text-decoration: underline;
color: @red;
}

.invalid.illegal {
color: @red;
}

.string {
color: #a5e3d0;

.constant.character.escape {
color: @red;
}

&.regexp {
color: #a5e3d0;

.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}

.keyword.other.phpdoc {
color: #605852;
}

.entity.name.tag {
color: #A2A797;
}

.entity.other.attribute-name {
color: #516B6B;
}
12 changes: 12 additions & 0 deletions atom/arstotzka/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Arstotzka",
"theme": "syntax",
"version": "1.0.0",
"private": false,
"description": "Theme by Dayle Rees.",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"atom": ">0.50.0"
}
}
147 changes: 147 additions & 0 deletions atom/azure/index.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
@import "ui-variables";

@base03: #181D26;
@base02: #073642;
@base01: #586e75;
@base00: #657b83;
@base0: #839496;
@base1: #93a1a1;
@base2: #eee8d5;
@base3: #fdf6e3;

@yellow: #b58900;
@orange: #cb4b16;
@red: #dc322f;
@magenta: #d33682;
@violet: #6c71c4;
@blue: #268bd2;
@cyan: #2aa198;
@green: #859900;


.editor-colors {
background-color: #181D26;
color: #ffffff;
}

.editor {
.invisible-character,
.indent-guide {
color: #33333c;
}

.gutter {
background-color: #181D26;
}

.gutter .line-number {
opacity: 0.3;
}

.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #52708b;
}

.cursor {
border-color: #f8f8f0;
}

.selection .region {
background-color: #47959a;
color: #ffffff;
}

.line-number.cursor-line-no-selection {
background-color: #33333c;
}
}

.bracket-matcher {
background-color: #52708b;
opacity: 0.4;
}

.comment {
color: #414d62;
}

.entity {
color: #508aaa;
}

.entity.name.type.class {
color: #ffffff;
}

.keyword {
color: #508aaa;
}

.storage.type {
color: #6AB0A3;
}

.storage.modifier {
color: #52708b;
}

.constant {
color: #52708b;

&.numeric,
&.boolean {
color: #64aeb3;
}
}

.variable {
color: #ffffff;
}

.delimiter, .brace {
color: #ffffff;
}

.delimiter.period {
color: #52708b;
}

.invalid.deprecated {
text-decoration: underline;
color: @red;
}

.invalid.illegal {
color: @red;
}

.string {
color: #64aeb3;

.constant.character.escape {
color: @red;
}

&.regexp {
color: #64aeb3;

.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}

.keyword.other.phpdoc {
color: #5c6b86;
}

.entity.name.tag {
color: #6AB0A3;
}

.entity.other.attribute-name {
color: #52708b;
}
12 changes: 12 additions & 0 deletions atom/azure/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Azure",
"theme": "syntax",
"version": "1.0.0",
"private": false,
"description": "Theme by Dayle Rees.",
"repository": "https://github.com/daylerees/colour-schemes",
"license": "MIT",
"engines": {
"atom": ">0.50.0"
}
}
Loading

0 comments on commit 600f896

Please sign in to comment.