Atom themes.

This commit is contained in:
Dayle Rees 2014-02-27 20:38:58 +00:00
parent 40f4a90a9b
commit 600f896e21
184 changed files with 14438 additions and 0 deletions

View File

@ -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!

147
atom/arstotzka/index.less Normal file
View File

@ -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;
}

View File

@ -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
atom/azure/index.less Normal file
View File

@ -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
atom/azure/package.json Normal file
View File

@ -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"
}
}

147
atom/bold/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #2a2626;
@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: #2a2626;
color: #ffffff;
}
.editor {
.invisible-character,
.indent-guide {
color: #393434;
}
.gutter {
background-color: #2a2626;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #F0624B;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #3D8E91;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #393434;
}
}
.bracket-matcher {
background-color: #F0624B;
opacity: 0.4;
}
.comment {
color: #534b4b;
}
.entity {
color: #B4B7AD;
}
.entity.name.type.class {
color: #ffffff;
}
.keyword {
color: #F0624B;
}
.storage.type {
color: #3D8E91;
}
.storage.modifier {
color: #F0624B;
}
.constant {
color: #F0624B;
&.numeric,
&.boolean {
color: #F7A21B;
}
}
.variable {
color: #ffffff;
}
.delimiter, .brace {
color: #ffffff;
}
.delimiter.period {
color: #F0624B;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F7A21B;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #F7A21B;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #6b6161;
}
.entity.name.tag {
color: #3D8E91;
}
.entity.other.attribute-name {
color: #F0624B;
}

12
atom/bold/package.json Normal file
View File

@ -0,0 +1,12 @@
{
"name": "Bold",
"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
atom/boxuk/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #ffffff;
@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: #ffffff;
color: #414f5c;
}
.editor {
.invisible-character,
.indent-guide {
color: #eeeeee;
}
.gutter {
background-color: #ffffff;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #019d76;
}
.cursor {
border-color: #222222;
}
.selection .region {
background-color: #017c9d;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #eeeeee;
}
}
.bracket-matcher {
background-color: #019d76;
opacity: 0.4;
}
.comment {
color: #b8b6b1;
}
.entity {
color: #15b8ae;
}
.entity.name.type.class {
color: #414f5c;
}
.keyword {
color: #017c9d;
}
.storage.type {
color: #017c9d;
}
.storage.modifier {
color: #019d76;
}
.constant {
color: #019d76;
&.numeric,
&.boolean {
color: #15b8ae;
}
}
.variable {
color: #414f5c;
}
.delimiter, .brace {
color: #414f5c;
}
.delimiter.period {
color: #019d76;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #15b8ae;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #15b8ae;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #888888;
}
.entity.name.tag {
color: #017c9d;
}
.entity.other.attribute-name {
color: #019d76;
}

12
atom/boxuk/package.json Normal file
View File

@ -0,0 +1,12 @@
{
"name": "Box UK",
"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
atom/carbonight/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #2E2C2B;
@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: #2E2C2B;
color: #B0B0B0;
}
.editor {
.invisible-character,
.indent-guide {
color: #3B3633;
}
.gutter {
background-color: #2E2C2B;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #8C8C8C;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #8C8C8C;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #3B3633;
}
}
.bracket-matcher {
background-color: #8C8C8C;
opacity: 0.4;
}
.comment {
color: #423F3D;
}
.entity {
color: #ffffff;
}
.entity.name.type.class {
color: #B0B0B0;
}
.keyword {
color: #eeeeee;
}
.storage.type {
color: #C4C4C4;
}
.storage.modifier {
color: #8C8C8C;
}
.constant {
color: #8C8C8C;
&.numeric,
&.boolean {
color: #B0B0B0;
}
}
.variable {
color: #B0B0B0;
}
.delimiter, .brace {
color: #B0B0B0;
}
.delimiter.period {
color: #8C8C8C;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #ffffff;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #B0B0B0;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #5c5856;
}
.entity.name.tag {
color: #C4C4C4;
}
.entity.other.attribute-name {
color: #8C8C8C;
}

View File

@ -0,0 +1,12 @@
{
"name": "Carbonight",
"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
atom/chocolate/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #150f08;
@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: #150f08;
color: #ffffff;
}
.editor {
.invisible-character,
.indent-guide {
color: #362715;
}
.gutter {
background-color: #150f08;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #CCB697;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #8B6E46;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #362715;
}
}
.bracket-matcher {
background-color: #CCB697;
opacity: 0.4;
}
.comment {
color: #795431;
}
.entity {
color: #E2CDB0;
}
.entity.name.type.class {
color: #ffffff;
}
.keyword {
color: #B99768;
}
.storage.type {
color: #8B6E46;
}
.storage.modifier {
color: #CCB697;
}
.constant {
color: #CCB697;
&.numeric,
&.boolean {
color: #F7A21B;
}
}
.variable {
color: #ffffff;
}
.delimiter, .brace {
color: #ffffff;
}
.delimiter.period {
color: #CCB697;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F7A21B;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #F7A21B;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #795431;
}
.entity.name.tag {
color: #8B6E46;
}
.entity.other.attribute-name {
color: #CCB697;
}

View File

@ -0,0 +1,12 @@
{
"name": "Chocolate",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #000000;
@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: #000000;
color: #ffffff;
}
.editor {
.invisible-character,
.indent-guide {
color: #151515;
}
.gutter {
background-color: #000000;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #8C8C8C;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #8C8C8C;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #151515;
}
}
.bracket-matcher {
background-color: #8C8C8C;
opacity: 0.4;
}
.comment {
color: #423F3D;
}
.entity {
color: #ffffff;
}
.entity.name.type.class {
color: #ffffff;
}
.keyword {
color: #eeeeee;
}
.storage.type {
color: #C4C4C4;
}
.storage.modifier {
color: #8C8C8C;
}
.constant {
color: #8C8C8C;
&.numeric,
&.boolean {
color: #B0B0B0;
}
}
.variable {
color: #ffffff;
}
.delimiter, .brace {
color: #ffffff;
}
.delimiter.period {
color: #8C8C8C;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #ffffff;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #B0B0B0;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #5c5856;
}
.entity.name.tag {
color: #C4C4C4;
}
.entity.other.attribute-name {
color: #8C8C8C;
}

View File

@ -0,0 +1,12 @@
{
"name": "Carbonight Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #000000;
@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: #000000;
color: #BABABA;
}
.editor {
.invisible-character,
.indent-guide {
color: #151515;
}
.gutter {
background-color: #000000;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #E8341C;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #FF4E50;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #151515;
}
}
.bracket-matcher {
background-color: #E8341C;
opacity: 0.4;
}
.comment {
color: #494B4D;
}
.entity {
color: #68C244;
}
.entity.name.type.class {
color: #BABABA;
}
.keyword {
color: #F08D24;
}
.storage.type {
color: #1CC3E8;
}
.storage.modifier {
color: #E8341C;
}
.constant {
color: #E8341C;
&.numeric,
&.boolean {
color: #8E69C9;
}
}
.variable {
color: #BABABA;
}
.delimiter, .brace {
color: #BABABA;
}
.delimiter.period {
color: #E8341C;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F2D42C;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #8E69C9;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #696b6e;
}
.entity.name.tag {
color: #1CC3E8;
}
.entity.other.attribute-name {
color: #E8341C;
}

View File

@ -0,0 +1,12 @@
{
"name": "Darkside Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #12100f;
@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: #12100f;
color: #EBD1B7;
}
.editor {
.invisible-character,
.indent-guide {
color: #282521;
}
.gutter {
background-color: #12100f;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #DB784D;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #DB784D;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #282521;
}
}
.bracket-matcher {
background-color: #DB784D;
opacity: 0.4;
}
.comment {
color: #7A7267;
}
.entity {
color: #60A365;
}
.entity.name.type.class {
color: #EBD1B7;
}
.keyword {
color: #DB784D;
}
.storage.type {
color: #95CC5E;
}
.storage.modifier {
color: #DB784D;
}
.constant {
color: #DB784D;
&.numeric,
&.boolean {
color: #F8BB39;
}
}
.variable {
color: #EBD1B7;
}
.delimiter, .brace {
color: #EBD1B7;
}
.delimiter.period {
color: #DB784D;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F8BB39;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #F8BB39;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #9a9082;
}
.entity.name.tag {
color: #95CC5E;
}
.entity.other.attribute-name {
color: #DB784D;
}

View File

@ -0,0 +1,12 @@
{
"name": "Earthsong Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #000000;
@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: #000000;
color: #F8F8F2;
}
.editor {
.invisible-character,
.indent-guide {
color: #151515;
}
.gutter {
background-color: #000000;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #00A8C6;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #008097;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #151515;
}
}
.bracket-matcher {
background-color: #00A8C6;
opacity: 0.4;
}
.comment {
color: #737b84;
}
.entity {
color: #AEE239;
}
.entity.name.type.class {
color: #F8F8F2;
}
.keyword {
color: #C8D7E8;
}
.storage.type {
color: #4ECDC4;
}
.storage.modifier {
color: #00A8C6;
}
.constant {
color: #00A8C6;
&.numeric,
&.boolean {
color: #8FBE00;
}
}
.variable {
color: #F8F8F2;
}
.delimiter, .brace {
color: #F8F8F2;
}
.delimiter.period {
color: #00A8C6;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #e9ee00;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #8FBE00;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #939da8;
}
.entity.name.tag {
color: #4ECDC4;
}
.entity.other.attribute-name {
color: #00A8C6;
}

View File

@ -0,0 +1,12 @@
{
"name": "FreshCut Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #110f0e;
@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: #110f0e;
color: #F8F8F2;
}
.editor {
.invisible-character,
.indent-guide {
color: #221f1c;
}
.gutter {
background-color: #110f0e;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #F23A3A;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #2EBF7E;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #221f1c;
}
}
.bracket-matcher {
background-color: #F23A3A;
opacity: 0.4;
}
.comment {
color: #7A7267;
}
.entity {
color: #F8BB39;
}
.entity.name.type.class {
color: #F8F8F2;
}
.keyword {
color: #FC803D;
}
.storage.type {
color: #2EBF7E;
}
.storage.modifier {
color: #F23A3A;
}
.constant {
color: #F23A3A;
&.numeric,
&.boolean {
color: #2EBF7E;
}
}
.variable {
color: #F8F8F2;
}
.delimiter, .brace {
color: #F8F8F2;
}
.delimiter.period {
color: #F23A3A;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F8BB39;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #2EBF7E;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #a59a8a;
}
.entity.name.tag {
color: #2EBF7E;
}
.entity.other.attribute-name {
color: #F23A3A;
}

View File

@ -0,0 +1,12 @@
{
"name": "Frontier Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0f120f;
@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: #0f120f;
color: #D8EBE5;
}
.editor {
.invisible-character,
.indent-guide {
color: #1b211c;
}
.gutter {
background-color: #0f120f;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #FF5D38;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #FF5D38;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #1b211c;
}
}
.bracket-matcher {
background-color: #FF5D38;
opacity: 0.4;
}
.comment {
color: #4F6E64;
}
.entity {
color: #BCD42A;
}
.entity.name.type.class {
color: #D8EBE5;
}
.keyword {
color: #26A6A6;
}
.storage.type {
color: #26A6A6;
}
.storage.modifier {
color: #FF5D38;
}
.constant {
color: #FF5D38;
&.numeric,
&.boolean {
color: #BCD42A;
}
}
.variable {
color: #D8EBE5;
}
.delimiter, .brace {
color: #D8EBE5;
}
.delimiter.period {
color: #FF5D38;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #BCD42A;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #BCD42A;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #668e81;
}
.entity.name.tag {
color: #26A6A6;
}
.entity.other.attribute-name {
color: #FF5D38;
}

View File

@ -0,0 +1,12 @@
{
"name": "Gloom Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #090b07;
@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: #090b07;
color: #6ea240;
}
.editor {
.invisible-character,
.indent-guide {
color: #12160d;
}
.gutter {
background-color: #090b07;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #DB784D;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #DB784D;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #12160d;
}
}
.bracket-matcher {
background-color: #DB784D;
opacity: 0.4;
}
.comment {
color: #3c4e2d;
}
.entity {
color: #60A365;
}
.entity.name.type.class {
color: #6ea240;
}
.keyword {
color: #D65940;
}
.storage.type {
color: #95CC5E;
}
.storage.modifier {
color: #DB784D;
}
.constant {
color: #DB784D;
&.numeric,
&.boolean {
color: #95CC5E;
}
}
.variable {
color: #6ea240;
}
.delimiter, .brace {
color: #6ea240;
}
.delimiter.period {
color: #DB784D;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F8BB39;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #95CC5E;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #67854f;
}
.entity.name.tag {
color: #95CC5E;
}
.entity.other.attribute-name {
color: #DB784D;
}

View File

@ -0,0 +1,12 @@
{
"name": "Glowfish Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0c0d0e;
@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: #0c0d0e;
color: #F8F8F2;
}
.editor {
.invisible-character,
.indent-guide {
color: #16181a;
}
.gutter {
background-color: #0c0d0e;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #FA6900;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #F38630;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #16181a;
}
}
.bracket-matcher {
background-color: #FA6900;
opacity: 0.4;
}
.comment {
color: #505C63;
}
.entity {
color: #69D2E7;
}
.entity.name.type.class {
color: #F8F8F2;
}
.keyword {
color: #A7DBD8;
}
.storage.type {
color: #F38630;
}
.storage.modifier {
color: #FA6900;
}
.constant {
color: #FA6900;
&.numeric,
&.boolean {
color: #f25619;
}
}
.variable {
color: #F8F8F2;
}
.delimiter, .brace {
color: #F8F8F2;
}
.delimiter.period {
color: #FA6900;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #f36e3a;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #f25619;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #798891;
}
.entity.name.tag {
color: #F38630;
}
.entity.other.attribute-name {
color: #FA6900;
}

View File

@ -0,0 +1,12 @@
{
"name": "Goldfish Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0c0c0a;
@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: #0c0c0a;
color: #F8F8F2;
}
.editor {
.invisible-character,
.indent-guide {
color: #1b1c18;
}
.gutter {
background-color: #0c0c0a;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #F56991;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #F56991;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #1b1c18;
}
}
.bracket-matcher {
background-color: #F56991;
opacity: 0.4;
}
.comment {
color: #5C634F;
}
.entity {
color: #FFC48C;
}
.entity.name.type.class {
color: #F8F8F2;
}
.keyword {
color: #91A374;
}
.storage.type {
color: #D1F2A5;
}
.storage.modifier {
color: #F56991;
}
.constant {
color: #F56991;
&.numeric,
&.boolean {
color: #F56991;
}
}
.variable {
color: #F8F8F2;
}
.delimiter, .brace {
color: #F8F8F2;
}
.delimiter.period {
color: #F56991;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #D1F2A5;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #F56991;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #7f886f;
}
.entity.name.tag {
color: #D1F2A5;
}
.entity.other.attribute-name {
color: #F56991;
}

View File

@ -0,0 +1,12 @@
{
"name": "Grunge Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #000000;
@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: #000000;
color: #cccccc;
}
.editor {
.invisible-character,
.indent-guide {
color: #151515;
}
.gutter {
background-color: #000000;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #7D8991;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #F85931;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #151515;
}
}
.bracket-matcher {
background-color: #7D8991;
opacity: 0.4;
}
.comment {
color: #555555;
}
.entity {
color: #F9D423;
}
.entity.name.type.class {
color: #cccccc;
}
.keyword {
color: #7D8991;
}
.storage.type {
color: #FC913A;
}
.storage.modifier {
color: #7D8991;
}
.constant {
color: #7D8991;
&.numeric,
&.boolean {
color: #F9D423;
}
}
.variable {
color: #cccccc;
}
.delimiter, .brace {
color: #cccccc;
}
.delimiter.period {
color: #7D8991;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F9D423;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #F9D423;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #808080;
}
.entity.name.tag {
color: #FC913A;
}
.entity.other.attribute-name {
color: #7D8991;
}

View File

@ -0,0 +1,12 @@
{
"name": "Halflife Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0c0c0c;
@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: #0c0c0c;
color: #c0d5c1;
}
.editor {
.invisible-character,
.indent-guide {
color: #141413;
}
.gutter {
background-color: #0c0c0c;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #569e16;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #569e16;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #141413;
}
}
.bracket-matcher {
background-color: #569e16;
opacity: 0.4;
}
.comment {
color: #716d6a;
}
.entity {
color: #90c93f;
}
.entity.name.type.class {
color: #c0d5c1;
}
.keyword {
color: #90c93f;
}
.storage.type {
color: #f5c504;
}
.storage.modifier {
color: #569e16;
}
.constant {
color: #569e16;
&.numeric,
&.boolean {
color: #f5c504;
}
}
.variable {
color: #c0d5c1;
}
.delimiter, .brace {
color: #c0d5c1;
}
.delimiter.period {
color: #569e16;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #ce830d;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #f5c504;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #9e9a98;
}
.entity.name.tag {
color: #f5c504;
}
.entity.other.attribute-name {
color: #569e16;
}

View File

@ -0,0 +1,12 @@
{
"name": "Hyrule Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0b0e0e;
@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: #0b0e0e;
color: #BDD6DB;
}
.editor {
.invisible-character,
.indent-guide {
color: #141718;
}
.gutter {
background-color: #0b0e0e;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #2D8DA1;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #2D8DA1;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #141718;
}
}
.bracket-matcher {
background-color: #2D8DA1;
opacity: 0.4;
}
.comment {
color: #537178;
}
.entity {
color: #FFFFFF;
}
.entity.name.type.class {
color: #BDD6DB;
}
.keyword {
color: #B1E2F2;
}
.storage.type {
color: #59C0E3;
}
.storage.modifier {
color: #2D8DA1;
}
.constant {
color: #2D8DA1;
&.numeric,
&.boolean {
color: #FFFFFF;
}
}
.variable {
color: #BDD6DB;
}
.delimiter, .brace {
color: #BDD6DB;
}
.delimiter.period {
color: #2D8DA1;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #FFFFFF;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #FFFFFF;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #79a2ab;
}
.entity.name.tag {
color: #59C0E3;
}
.entity.other.attribute-name {
color: #2D8DA1;
}

View File

@ -0,0 +1,12 @@
{
"name": "Iceberg Contrast",
"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"
}
}

129
atom/contrast/index.less Normal file
View File

@ -0,0 +1,129 @@
@import "ui-variables";
@import "colors";
@base03: #002b36;
@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: @base03;
color: @base0;
}
.editor {
.invisible-character,
.indent-guide {
color: @base01;
}
.gutter {
background-color: @base02;
}
.gutter .line-number {
opacity: 1;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: @magenta;
}
.cursor {
border-color: @base3;
}
.selection .region {
background-color: @base01;
color: @base03;
}
.line-number.cursor-line-no-selection {
background-color: @base01;
}
}
.bracket-matcher {
background-color: @base1;
opacity: 0.7;
}
.comment {
color: @base01;
font-style: italic;
}
.entity {
color: @yellow;
}
.keyword {
color: @green;
}
.storage.type {
color: @green;
}
.constant {
color: @yellow;
&.numeric,
&.boolean {
color: @cyan;
}
}
.variable {
color: @blue;
}
.delimiter, .brace {
color: @red;
}
.delimiter.period {
color: @green;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: @cyan;
.constant.character.escape {
color: @red;
}
&.regexp {
color: @cyan;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #000000;
@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: #000000;
color: #e3e2e0;
}
.editor {
.invisible-character,
.indent-guide {
color: #151515;
}
.gutter {
background-color: #000000;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #3bc7b8;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #FF4E50;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #151515;
}
}
.bracket-matcher {
background-color: #3bc7b8;
opacity: 0.4;
}
.comment {
color: #777777;
}
.entity {
color: #c3cb4c;
}
.entity.name.type.class {
color: #e3e2e0;
}
.keyword {
color: #EDB92E;
}
.storage.type {
color: #FF4E50;
}
.storage.modifier {
color: #3bc7b8;
}
.constant {
color: #3bc7b8;
&.numeric,
&.boolean {
color: #CE1836;
}
}
.variable {
color: #e3e2e0;
}
.delimiter, .brace {
color: #e3e2e0;
}
.delimiter.period {
color: #3bc7b8;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #3bc7b8;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #CE1836;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #9b9b9b;
}
.entity.name.tag {
color: #FF4E50;
}
.entity.other.attribute-name {
color: #3bc7b8;
}

View File

@ -0,0 +1,12 @@
{
"name": "Juicy Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #000000;
@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: #000000;
color: #ffffff;
}
.editor {
.invisible-character,
.indent-guide {
color: #151515;
}
.gutter {
background-color: #000000;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #8767b7;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #8767b7;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #151515;
}
}
.bracket-matcher {
background-color: #8767b7;
opacity: 0.4;
}
.comment {
color: #374c60;
}
.entity {
color: #b5db99;
}
.entity.name.type.class {
color: #ffffff;
}
.keyword {
color: #6F8B94;
}
.storage.type {
color: #6F8B94;
}
.storage.modifier {
color: #8767b7;
}
.constant {
color: #8767b7;
&.numeric,
&.boolean {
color: #b5db99;
}
}
.variable {
color: #ffffff;
}
.delimiter, .brace {
color: #ffffff;
}
.delimiter.period {
color: #8767b7;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #b5db99;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #b5db99;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #56738e;
}
.entity.name.tag {
color: #6F8B94;
}
.entity.other.attribute-name {
color: #8767b7;
}

View File

@ -0,0 +1,12 @@
{
"name": "Keen Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #000000;
@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: #000000;
color: #ffffff;
}
.editor {
.invisible-character,
.indent-guide {
color: #151515;
}
.gutter {
background-color: #000000;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #FC6B0A;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #cd724e;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #151515;
}
}
.bracket-matcher {
background-color: #FC6B0A;
opacity: 0.4;
}
.comment {
color: #615953;
}
.entity {
color: #FC580C;
}
.entity.name.type.class {
color: #ffffff;
}
.keyword {
color: #FFA927;
}
.storage.type {
color: #FFC48C;
}
.storage.modifier {
color: #FC6B0A;
}
.constant {
color: #FC6B0A;
&.numeric,
&.boolean {
color: #FC580C;
}
}
.variable {
color: #ffffff;
}
.delimiter, .brace {
color: #ffffff;
}
.delimiter.period {
color: #FC6B0A;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #FDCA49;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #FC580C;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #8e8279;
}
.entity.name.tag {
color: #FFC48C;
}
.entity.other.attribute-name {
color: #FC6B0A;
}

View File

@ -0,0 +1,12 @@
{
"name": "Laravel Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #080709;
@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: #080709;
color: #E0CEED;
}
.editor {
.invisible-character,
.indent-guide {
color: #110e13;
}
.gutter {
background-color: #080709;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #B657FF;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #B657FF;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #110e13;
}
}
.bracket-matcher {
background-color: #B657FF;
opacity: 0.4;
}
.comment {
color: #614e6e;
}
.entity {
color: #F5B0EF;
}
.entity.name.type.class {
color: #E0CEED;
}
.keyword {
color: #8E6DA6;
}
.storage.type {
color: #A29DFA;
}
.storage.modifier {
color: #B657FF;
}
.constant {
color: #B657FF;
&.numeric,
&.boolean {
color: #F25AE6;
}
}
.variable {
color: #E0CEED;
}
.delimiter, .brace {
color: #E0CEED;
}
.delimiter.period {
color: #B657FF;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F5B0EF;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #F25AE6;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #9076a1;
}
.entity.name.tag {
color: #A29DFA;
}
.entity.other.attribute-name {
color: #B657FF;
}

View File

@ -0,0 +1,12 @@
{
"name": "Lavender Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0b0a09;
@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: #0b0a09;
color: #F8F8F2;
}
.editor {
.invisible-character,
.indent-guide {
color: #13110f;
}
.gutter {
background-color: #0b0a09;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #1F8181;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #F55D79;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #13110f;
}
}
.bracket-matcher {
background-color: #1F8181;
opacity: 0.4;
}
.comment {
color: #7A7267;
}
.entity {
color: #F28972;
}
.entity.name.type.class {
color: #F8F8F2;
}
.keyword {
color: #F2BC79;
}
.storage.type {
color: #F2BC79;
}
.storage.modifier {
color: #1F8181;
}
.constant {
color: #1F8181;
&.numeric,
&.boolean {
color: #F8BB39;
}
}
.variable {
color: #F8F8F2;
}
.delimiter, .brace {
color: #F8F8F2;
}
.delimiter.period {
color: #1F8181;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F8BB39;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #F8BB39;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #a09688;
}
.entity.name.tag {
color: #F2BC79;
}
.entity.other.attribute-name {
color: #1F8181;
}

View File

@ -0,0 +1,12 @@
{
"name": "Mellow Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0d0b0b;
@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: #0d0b0b;
color: #ffffff;
}
.editor {
.invisible-character,
.indent-guide {
color: #171413;
}
.gutter {
background-color: #0d0b0b;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #f55239;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #b5db99;
color: #4e653d;
}
.line-number.cursor-line-no-selection {
background-color: #171413;
}
}
.bracket-matcher {
background-color: #f55239;
opacity: 0.4;
}
.comment {
color: #524343;
}
.entity {
color: #8ee350;
}
.entity.name.type.class {
color: #ffffff;
}
.keyword {
color: #f8553c;
}
.storage.type {
color: #f2c12f;
}
.storage.modifier {
color: #f55239;
}
.constant {
color: #f55239;
&.numeric,
&.boolean {
color: #b5db99;
}
}
.variable {
color: #ffffff;
}
.delimiter, .brace {
color: #ffffff;
}
.delimiter.period {
color: #f55239;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #b5db99;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #b5db99;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #e3d7d6;
}
.entity.name.tag {
color: #f2c12f;
}
.entity.other.attribute-name {
color: #f55239;
}

View File

@ -0,0 +1,12 @@
{
"name": "Mud Contrast",
"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"
}
}

View File

@ -0,0 +1,12 @@
{
"name": "Zacks Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0d0e0f;
@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: #0d0e0f;
color: #CAD9E3;
}
.editor {
.invisible-character,
.indent-guide {
color: #191b1c;
}
.gutter {
background-color: #0d0e0f;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #2E6FD9;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #DE333C;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #191b1c;
}
}
.bracket-matcher {
background-color: #2E6FD9;
opacity: 0.4;
}
.comment {
color: #515E66;
}
.entity {
color: #ffffff;
}
.entity.name.type.class {
color: #CAD9E3;
}
.keyword {
color: #BBBCC4;
}
.storage.type {
color: #DE333C;
}
.storage.modifier {
color: #2E6FD9;
}
.constant {
color: #2E6FD9;
&.numeric,
&.boolean {
color: #2E6FD9;
}
}
.variable {
color: #CAD9E3;
}
.delimiter, .brace {
color: #CAD9E3;
}
.delimiter.period {
color: #2E6FD9;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #3790DE;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #2E6FD9;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #798b96;
}
.entity.name.tag {
color: #DE333C;
}
.entity.other.attribute-name {
color: #2E6FD9;
}

View File

@ -0,0 +1,12 @@
{
"name": "Patriot Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0c0c0b;
@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: #0c0c0b;
color: #ffffff;
}
.editor {
.invisible-character,
.indent-guide {
color: #151513;
}
.gutter {
background-color: #0c0c0b;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #ff5d38;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #ff5d38;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #151513;
}
}
.bracket-matcher {
background-color: #ff5d38;
opacity: 0.4;
}
.comment {
color: #555555;
}
.entity {
color: #bcd42a;
}
.entity.name.type.class {
color: #ffffff;
}
.keyword {
color: #26A6A6;
}
.storage.type {
color: #26a6a6;
}
.storage.modifier {
color: #ff5d38;
}
.constant {
color: #ff5d38;
&.numeric,
&.boolean {
color: #bcd42a;
}
}
.variable {
color: #ffffff;
}
.delimiter, .brace {
color: #ffffff;
}
.delimiter.period {
color: #ff5d38;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #bcd42a;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #bcd42a;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #888888;
}
.entity.name.tag {
color: #26a6a6;
}
.entity.other.attribute-name {
color: #ff5d38;
}

View File

@ -0,0 +1,12 @@
{
"name": "Peacock Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0d0c0c;
@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: #0d0c0c;
color: #F8F8F2;
}
.editor {
.invisible-character,
.indent-guide {
color: #141313;
}
.gutter {
background-color: #0d0c0c;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #ED1153;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #ED1153;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #141313;
}
}
.bracket-matcher {
background-color: #ED1153;
opacity: 0.4;
}
.comment {
color: #696363;
}
.entity {
color: #B866FA;
}
.entity.name.type.class {
color: #F8F8F2;
}
.keyword {
color: #ED1153;
}
.storage.type {
color: #C491C4;
}
.storage.modifier {
color: #ED1153;
}
.constant {
color: #ED1153;
&.numeric,
&.boolean {
color: #C84FF0;
}
}
.variable {
color: #F8F8F2;
}
.delimiter, .brace {
color: #F8F8F2;
}
.delimiter.period {
color: #ED1153;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #B866FA;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #C84FF0;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #8f8787;
}
.entity.name.tag {
color: #C491C4;
}
.entity.other.attribute-name {
color: #ED1153;
}

View File

@ -0,0 +1,12 @@
{
"name": "Potpourri Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0c0b0b;
@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: #0c0b0b;
color: #DEDEDE;
}
.editor {
.invisible-character,
.indent-guide {
color: #1a1918;
}
.gutter {
background-color: #0c0b0b;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #617FA0;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #617FA0;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #1a1918;
}
}
.bracket-matcher {
background-color: #617FA0;
opacity: 0.4;
}
.comment {
color: #7b726b;
}
.entity {
color: #95C2E8;
}
.entity.name.type.class {
color: #DEDEDE;
}
.keyword {
color: #C2DCF2;
}
.storage.type {
color: #4E5D84;
}
.storage.modifier {
color: #617FA0;
}
.constant {
color: #617FA0;
&.numeric,
&.boolean {
color: #617FA0;
}
}
.variable {
color: #DEDEDE;
}
.delimiter, .brace {
color: #DEDEDE;
}
.delimiter.period {
color: #617FA0;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #FFBB29;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #617FA0;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #a19790;
}
.entity.name.tag {
color: #4E5D84;
}
.entity.other.attribute-name {
color: #617FA0;
}

View File

@ -0,0 +1,12 @@
{
"name": "Revelation Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0b0c0d;
@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: #0b0c0d;
color: #FFFFFF;
}
.editor {
.invisible-character,
.indent-guide {
color: #131516;
}
.gutter {
background-color: #0b0c0d;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #6a9ec5;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #C7AF3F;
color: #4e653d;
}
.line-number.cursor-line-no-selection {
background-color: #131516;
}
}
.bracket-matcher {
background-color: #6a9ec5;
opacity: 0.4;
}
.comment {
color: #4F5A63;
}
.entity {
color: #d0b123;
}
.entity.name.type.class {
color: #FFFFFF;
}
.keyword {
color: #689dc5;
}
.storage.type {
color: #d8e778;
}
.storage.modifier {
color: #6a9ec5;
}
.constant {
color: #6a9ec5;
&.numeric,
&.boolean {
color: #C7AF3F;
}
}
.variable {
color: #FFFFFF;
}
.delimiter, .brace {
color: #FFFFFF;
}
.delimiter.period {
color: #6a9ec5;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #FAFFDB;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #C7AF3F;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #80919f;
}
.entity.name.tag {
color: #d8e778;
}
.entity.other.attribute-name {
color: #6a9ec5;
}

View File

@ -0,0 +1,12 @@
{
"name": "Slime Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0c0c0c;
@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: #0c0c0c;
color: #e3e2e0;
}
.editor {
.invisible-character,
.indent-guide {
color: #181818;
}
.gutter {
background-color: #0c0c0c;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #f66153;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #f66153;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #181818;
}
}
.bracket-matcher {
background-color: #f66153;
opacity: 0.4;
}
.comment {
color: #696969;
}
.entity {
color: #808dd3;
}
.entity.name.type.class {
color: #e3e2e0;
}
.keyword {
color: #f66153;
}
.storage.type {
color: #4ea1df;
}
.storage.modifier {
color: #f66153;
}
.constant {
color: #f66153;
&.numeric,
&.boolean {
color: #4ea1df;
}
}
.variable {
color: #e3e2e0;
}
.delimiter, .brace {
color: #e3e2e0;
}
.delimiter.period {
color: #f66153;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #4ea1df;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #4ea1df;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #909090;
}
.entity.name.tag {
color: #4ea1df;
}
.entity.other.attribute-name {
color: #f66153;
}

View File

@ -0,0 +1,12 @@
{
"name": "Snappy Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #000000;
@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: #000000;
color: #e3e2e0;
}
.editor {
.invisible-character,
.indent-guide {
color: #151515;
}
.gutter {
background-color: #000000;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #FF4E50;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #FF4E50;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #151515;
}
}
.bracket-matcher {
background-color: #FF4E50;
opacity: 0.4;
}
.comment {
color: #777777;
}
.entity {
color: #EDE574;
}
.entity.name.type.class {
color: #e3e2e0;
}
.keyword {
color: #FF4E50;
}
.storage.type {
color: #FC913A;
}
.storage.modifier {
color: #FF4E50;
}
.constant {
color: #FF4E50;
&.numeric,
&.boolean {
color: #FF4E50;
}
}
.variable {
color: #e3e2e0;
}
.delimiter, .brace {
color: #e3e2e0;
}
.delimiter.period {
color: #FF4E50;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #EDE574;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #FF4E50;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #9b9b9b;
}
.entity.name.tag {
color: #FC913A;
}
.entity.other.attribute-name {
color: #FF4E50;
}

View File

@ -0,0 +1,12 @@
{
"name": "Solarflare Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #060606;
@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: #060606;
color: #DEDEDE;
}
.editor {
.invisible-character,
.indent-guide {
color: #171615;
}
.gutter {
background-color: #060606;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #8AC27A;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #518f0d;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #171615;
}
}
.bracket-matcher {
background-color: #8AC27A;
opacity: 0.4;
}
.comment {
color: #615953;
}
.entity {
color: #BDF522;
}
.entity.name.type.class {
color: #DEDEDE;
}
.keyword {
color: #D2EB31;
}
.storage.type {
color: #EDF252;
}
.storage.modifier {
color: #8AC27A;
}
.constant {
color: #8AC27A;
&.numeric,
&.boolean {
color: #FC580C;
}
}
.variable {
color: #DEDEDE;
}
.delimiter, .brace {
color: #DEDEDE;
}
.delimiter.period {
color: #8AC27A;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #E4FF33;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #FC580C;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #92867d;
}
.entity.name.tag {
color: #EDF252;
}
.entity.other.attribute-name {
color: #8AC27A;
}

View File

@ -0,0 +1,12 @@
{
"name": "Sourlick Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #0b0a0a;
@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: #0b0a0a;
color: #DEDEDE;
}
.editor {
.invisible-character,
.indent-guide {
color: #181716;
}
.gutter {
background-color: #0b0a0a;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #F03113;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #F03113;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #181716;
}
}
.bracket-matcher {
background-color: #F03113;
opacity: 0.4;
}
.comment {
color: #615953;
}
.entity {
color: #F03113;
}
.entity.name.type.class {
color: #DEDEDE;
}
.keyword {
color: #aaaaaa;
}
.storage.type {
color: #FFBB29;
}
.storage.modifier {
color: #F03113;
}
.constant {
color: #F03113;
&.numeric,
&.boolean {
color: #617FA0;
}
}
.variable {
color: #DEDEDE;
}
.delimiter, .brace {
color: #DEDEDE;
}
.delimiter.period {
color: #F03113;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #FFBB29;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #617FA0;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #877d76;
}
.entity.name.tag {
color: #FFBB29;
}
.entity.other.attribute-name {
color: #F03113;
}

View File

@ -0,0 +1,12 @@
{
"name": "Stark Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #07090b;
@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: #07090b;
color: #aec2e0;
}
.editor {
.invisible-character,
.indent-guide {
color: #101419;
}
.gutter {
background-color: #07090b;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #ffffff;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #7a9bc2;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #101419;
}
}
.bracket-matcher {
background-color: #ffffff;
opacity: 0.4;
}
.comment {
color: #324357;
}
.entity {
color: #ffffff;
}
.entity.name.type.class {
color: #aec2e0;
}
.keyword {
color: #748aa6;
}
.storage.type {
color: #267fb5;
}
.storage.modifier {
color: #ffffff;
}
.constant {
color: #ffffff;
&.numeric,
&.boolean {
color: #6ee2ff;
}
}
.variable {
color: #aec2e0;
}
.delimiter, .brace {
color: #aec2e0;
}
.delimiter.period {
color: #ffffff;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #6ee2ff;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #6ee2ff;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #4d6785;
}
.entity.name.tag {
color: #267fb5;
}
.entity.other.attribute-name {
color: #ffffff;
}

View File

@ -0,0 +1,12 @@
{
"name": "Tron Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #080809;
@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: #080809;
color: #EDE0CE;
}
.editor {
.invisible-character,
.indent-guide {
color: #1c1d1f;
}
.gutter {
background-color: #080809;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #487D76;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #487D76;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #1c1d1f;
}
}
.bracket-matcher {
background-color: #487D76;
opacity: 0.4;
}
.comment {
color: #7A7267;
}
.entity {
color: #E8DA5E;
}
.entity.name.type.class {
color: #EDE0CE;
}
.keyword {
color: #92B55F;
}
.storage.type {
color: #92B55F;
}
.storage.modifier {
color: #487D76;
}
.constant {
color: #487D76;
&.numeric,
&.boolean {
color: #E8DA5E;
}
}
.variable {
color: #EDE0CE;
}
.delimiter, .brace {
color: #EDE0CE;
}
.delimiter.period {
color: #487D76;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #E8DA5E;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #E8DA5E;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #aea395;
}
.entity.name.tag {
color: #92B55F;
}
.entity.other.attribute-name {
color: #487D76;
}

View File

@ -0,0 +1,12 @@
{
"name": "Turnip Contrast",
"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"
}
}

View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #000000;
@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: #000000;
color: #f0f0f0;
}
.editor {
.invisible-character,
.indent-guide {
color: #151515;
}
.gutter {
background-color: #000000;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #ff6a38;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #9c7ddb;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #151515;
}
}
.bracket-matcher {
background-color: #ff6a38;
opacity: 0.4;
}
.comment {
color: #777777;
}
.entity {
color: #bcd42a;
}
.entity.name.type.class {
color: #f0f0f0;
}
.keyword {
color: #ff6a38;
}
.storage.type {
color: #9c7ddb;
}
.storage.modifier {
color: #ff6a38;
}
.constant {
color: #ff6a38;
&.numeric,
&.boolean {
color: #bcd42a;
}
}
.variable {
color: #f0f0f0;
}
.delimiter, .brace {
color: #f0f0f0;
}
.delimiter.period {
color: #ff6a38;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #bcd42a;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #bcd42a;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #afafaf;
}
.entity.name.tag {
color: #9c7ddb;
}
.entity.other.attribute-name {
color: #ff6a38;
}

View File

@ -0,0 +1,12 @@
{
"name": "Zacks Contrast",
"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
atom/crisp/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #221a22;
@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: #221a22;
color: #ffffff;
}
.editor {
.invisible-character,
.indent-guide {
color: #1c151c;
}
.gutter {
background-color: #221a22;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #765478;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #FC6A0F;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #1c151c;
}
}
.bracket-matcher {
background-color: #765478;
opacity: 0.4;
}
.comment {
color: #574457;
}
.entity {
color: #FC6A0F;
}
.entity.name.type.class {
color: #ffffff;
}
.keyword {
color: #FC6A0F;
}
.storage.type {
color: #cba0cd;
}
.storage.modifier {
color: #765478;
}
.constant {
color: #765478;
&.numeric,
&.boolean {
color: #fc9a0f;
}
}
.variable {
color: #ffffff;
}
.delimiter, .brace {
color: #ffffff;
}
.delimiter.period {
color: #765478;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #fc9a0f;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #fc9a0f;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #776377;
}
.entity.name.tag {
color: #cba0cd;
}
.entity.other.attribute-name {
color: #765478;
}

12
atom/crisp/package.json Normal file
View File

@ -0,0 +1,12 @@
{
"name": "Crisp",
"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
atom/darkside/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #222324;
@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: #222324;
color: #BABABA;
}
.editor {
.invisible-character,
.indent-guide {
color: #303333;
}
.gutter {
background-color: #222324;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #E8341C;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #FF4E50;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #303333;
}
}
.bracket-matcher {
background-color: #E8341C;
opacity: 0.4;
}
.comment {
color: #494B4D;
}
.entity {
color: #68C244;
}
.entity.name.type.class {
color: #BABABA;
}
.keyword {
color: #F08D24;
}
.storage.type {
color: #1CC3E8;
}
.storage.modifier {
color: #E8341C;
}
.constant {
color: #E8341C;
&.numeric,
&.boolean {
color: #8E69C9;
}
}
.variable {
color: #BABABA;
}
.delimiter, .brace {
color: #BABABA;
}
.delimiter.period {
color: #E8341C;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F2D42C;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #8E69C9;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #696b6e;
}
.entity.name.tag {
color: #1CC3E8;
}
.entity.other.attribute-name {
color: #E8341C;
}

View File

@ -0,0 +1,12 @@
{
"name": "Darkside",
"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
atom/earthsong/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #36312C;
@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: #36312C;
color: #EBD1B7;
}
.editor {
.invisible-character,
.indent-guide {
color: #45403B;
}
.gutter {
background-color: #36312C;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #DB784D;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #DB784D;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #45403B;
}
}
.bracket-matcher {
background-color: #DB784D;
opacity: 0.4;
}
.comment {
color: #7A7267;
}
.entity {
color: #60A365;
}
.entity.name.type.class {
color: #EBD1B7;
}
.keyword {
color: #DB784D;
}
.storage.type {
color: #95CC5E;
}
.storage.modifier {
color: #DB784D;
}
.constant {
color: #DB784D;
&.numeric,
&.boolean {
color: #F8BB39;
}
}
.variable {
color: #EBD1B7;
}
.delimiter, .brace {
color: #EBD1B7;
}
.delimiter.period {
color: #DB784D;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F8BB39;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #F8BB39;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #9a9082;
}
.entity.name.tag {
color: #95CC5E;
}
.entity.other.attribute-name {
color: #DB784D;
}

View File

@ -0,0 +1,12 @@
{
"name": "Earthsong",
"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
atom/freshcut/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #2F3030;
@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: #2F3030;
color: #F8F8F2;
}
.editor {
.invisible-character,
.indent-guide {
color: #383939;
}
.gutter {
background-color: #2F3030;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #00A8C6;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #008097;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #383939;
}
}
.bracket-matcher {
background-color: #00A8C6;
opacity: 0.4;
}
.comment {
color: #737b84;
}
.entity {
color: #AEE239;
}
.entity.name.type.class {
color: #F8F8F2;
}
.keyword {
color: #C8D7E8;
}
.storage.type {
color: #4ECDC4;
}
.storage.modifier {
color: #00A8C6;
}
.constant {
color: #00A8C6;
&.numeric,
&.boolean {
color: #8FBE00;
}
}
.variable {
color: #F8F8F2;
}
.delimiter, .brace {
color: #F8F8F2;
}
.delimiter.period {
color: #00A8C6;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #e9ee00;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #8FBE00;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #939da8;
}
.entity.name.tag {
color: #4ECDC4;
}
.entity.other.attribute-name {
color: #00A8C6;
}

View File

@ -0,0 +1,12 @@
{
"name": "FreshCut",
"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
atom/frontier/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #36312C;
@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: #36312C;
color: #F8F8F2;
}
.editor {
.invisible-character,
.indent-guide {
color: #45403B;
}
.gutter {
background-color: #36312C;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #F23A3A;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #2EBF7E;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #45403B;
}
}
.bracket-matcher {
background-color: #F23A3A;
opacity: 0.4;
}
.comment {
color: #7A7267;
}
.entity {
color: #F8BB39;
}
.entity.name.type.class {
color: #F8F8F2;
}
.keyword {
color: #FC803D;
}
.storage.type {
color: #2EBF7E;
}
.storage.modifier {
color: #F23A3A;
}
.constant {
color: #F23A3A;
&.numeric,
&.boolean {
color: #2EBF7E;
}
}
.variable {
color: #F8F8F2;
}
.delimiter, .brace {
color: #F8F8F2;
}
.delimiter.period {
color: #F23A3A;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F8BB39;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #2EBF7E;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #a59a8a;
}
.entity.name.tag {
color: #2EBF7E;
}
.entity.other.attribute-name {
color: #F23A3A;
}

View File

@ -0,0 +1,12 @@
{
"name": "Frontier",
"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
atom/github/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #ffffff;
@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: #ffffff;
color: #555555;
}
.editor {
.invisible-character,
.indent-guide {
color: #eeeeee;
}
.gutter {
background-color: #ffffff;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #008080;
}
.cursor {
border-color: #444444;
}
.selection .region {
background-color: #008080;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #eeeeee;
}
}
.bracket-matcher {
background-color: #008080;
opacity: 0.4;
}
.comment {
color: #b8b6b1;
}
.entity {
color: #DD1144;
}
.entity.name.type.class {
color: #555555;
}
.keyword {
color: #555555;
}
.storage.type {
color: #445588;
}
.storage.modifier {
color: #008080;
}
.constant {
color: #008080;
&.numeric,
&.boolean {
color: #DD1144;
}
}
.variable {
color: #555555;
}
.delimiter, .brace {
color: #555555;
}
.delimiter.period {
color: #008080;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #DD1144;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #DD1144;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #7f7e7a;
}
.entity.name.tag {
color: #445588;
}
.entity.other.attribute-name {
color: #008080;
}

12
atom/github/package.json Normal file
View File

@ -0,0 +1,12 @@
{
"name": "Github",
"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
atom/gloom/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #2A332B;
@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: #2A332B;
color: #D8EBE5;
}
.editor {
.invisible-character,
.indent-guide {
color: #3C4D3E;
}
.gutter {
background-color: #2A332B;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #FF5D38;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #FF5D38;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #3C4D3E;
}
}
.bracket-matcher {
background-color: #FF5D38;
opacity: 0.4;
}
.comment {
color: #4F6E64;
}
.entity {
color: #BCD42A;
}
.entity.name.type.class {
color: #D8EBE5;
}
.keyword {
color: #26A6A6;
}
.storage.type {
color: #26A6A6;
}
.storage.modifier {
color: #FF5D38;
}
.constant {
color: #FF5D38;
&.numeric,
&.boolean {
color: #BCD42A;
}
}
.variable {
color: #D8EBE5;
}
.delimiter, .brace {
color: #D8EBE5;
}
.delimiter.period {
color: #FF5D38;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #BCD42A;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #BCD42A;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #668e81;
}
.entity.name.tag {
color: #26A6A6;
}
.entity.other.attribute-name {
color: #FF5D38;
}

12
atom/gloom/package.json Normal file
View File

@ -0,0 +1,12 @@
{
"name": "Gloom",
"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
atom/glowfish/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #191f13;
@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: #191f13;
color: #6ea240;
}
.editor {
.invisible-character,
.indent-guide {
color: #222a1a;
}
.gutter {
background-color: #191f13;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #DB784D;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #DB784D;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #222a1a;
}
}
.bracket-matcher {
background-color: #DB784D;
opacity: 0.4;
}
.comment {
color: #3c4e2d;
}
.entity {
color: #60A365;
}
.entity.name.type.class {
color: #6ea240;
}
.keyword {
color: #D65940;
}
.storage.type {
color: #95CC5E;
}
.storage.modifier {
color: #DB784D;
}
.constant {
color: #DB784D;
&.numeric,
&.boolean {
color: #95CC5E;
}
}
.variable {
color: #6ea240;
}
.delimiter, .brace {
color: #6ea240;
}
.delimiter.period {
color: #DB784D;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F8BB39;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #95CC5E;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #67854f;
}
.entity.name.tag {
color: #95CC5E;
}
.entity.other.attribute-name {
color: #DB784D;
}

View File

@ -0,0 +1,12 @@
{
"name": "Glowfish",
"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
atom/goldfish/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #2E3336;
@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: #2E3336;
color: #F8F8F2;
}
.editor {
.invisible-character,
.indent-guide {
color: #465459;
}
.gutter {
background-color: #2E3336;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #FA6900;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #F38630;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #465459;
}
}
.bracket-matcher {
background-color: #FA6900;
opacity: 0.4;
}
.comment {
color: #505C63;
}
.entity {
color: #69D2E7;
}
.entity.name.type.class {
color: #F8F8F2;
}
.keyword {
color: #A7DBD8;
}
.storage.type {
color: #F38630;
}
.storage.modifier {
color: #FA6900;
}
.constant {
color: #FA6900;
&.numeric,
&.boolean {
color: #f25619;
}
}
.variable {
color: #F8F8F2;
}
.delimiter, .brace {
color: #F8F8F2;
}
.delimiter.period {
color: #FA6900;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #f36e3a;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #f25619;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #798891;
}
.entity.name.tag {
color: #F38630;
}
.entity.other.attribute-name {
color: #FA6900;
}

View File

@ -0,0 +1,12 @@
{
"name": "Goldfish",
"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
atom/grunge/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #31332C;
@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: #31332C;
color: #F8F8F2;
}
.editor {
.invisible-character,
.indent-guide {
color: #41453A;
}
.gutter {
background-color: #31332C;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #F56991;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #F56991;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #41453A;
}
}
.bracket-matcher {
background-color: #F56991;
opacity: 0.4;
}
.comment {
color: #5C634F;
}
.entity {
color: #FFC48C;
}
.entity.name.type.class {
color: #F8F8F2;
}
.keyword {
color: #91A374;
}
.storage.type {
color: #D1F2A5;
}
.storage.modifier {
color: #F56991;
}
.constant {
color: #F56991;
&.numeric,
&.boolean {
color: #F56991;
}
}
.variable {
color: #F8F8F2;
}
.delimiter, .brace {
color: #F8F8F2;
}
.delimiter.period {
color: #F56991;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #D1F2A5;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #F56991;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #7f886f;
}
.entity.name.tag {
color: #D1F2A5;
}
.entity.other.attribute-name {
color: #F56991;
}

12
atom/grunge/package.json Normal file
View File

@ -0,0 +1,12 @@
{
"name": "Grunge",
"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
atom/halflife/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #222222;
@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: #222222;
color: #cccccc;
}
.editor {
.invisible-character,
.indent-guide {
color: #282828;
}
.gutter {
background-color: #222222;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #7D8991;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #F85931;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #282828;
}
}
.bracket-matcher {
background-color: #7D8991;
opacity: 0.4;
}
.comment {
color: #555555;
}
.entity {
color: #F9D423;
}
.entity.name.type.class {
color: #cccccc;
}
.keyword {
color: #7D8991;
}
.storage.type {
color: #FC913A;
}
.storage.modifier {
color: #7D8991;
}
.constant {
color: #7D8991;
&.numeric,
&.boolean {
color: #F9D423;
}
}
.variable {
color: #cccccc;
}
.delimiter, .brace {
color: #cccccc;
}
.delimiter.period {
color: #7D8991;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #F9D423;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #F9D423;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #808080;
}
.entity.name.tag {
color: #FC913A;
}
.entity.other.attribute-name {
color: #7D8991;
}

View File

@ -0,0 +1,12 @@
{
"name": "Halflife",
"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
atom/heroku/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #1b1b24;
@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: #1b1b24;
color: #c8c7d5;
}
.editor {
.invisible-character,
.indent-guide {
color: #242430;
}
.gutter {
background-color: #1b1b24;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #7873ae;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #7873ae;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #242430;
}
}
.bracket-matcher {
background-color: #7873ae;
opacity: 0.4;
}
.comment {
color: #505067;
}
.entity {
color: #ffffff;
}
.entity.name.type.class {
color: #c8c7d5;
}
.keyword {
color: #7873ae;
}
.storage.type {
color: #585480;
}
.storage.modifier {
color: #7873ae;
}
.constant {
color: #7873ae;
&.numeric,
&.boolean {
color: #a6fa62;
}
}
.variable {
color: #c8c7d5;
}
.delimiter, .brace {
color: #c8c7d5;
}
.delimiter.period {
color: #7873ae;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #a6fa62;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #a6fa62;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #5d5d76;
}
.entity.name.tag {
color: #585480;
}
.entity.other.attribute-name {
color: #7873ae;
}

12
atom/heroku/package.json Normal file
View File

@ -0,0 +1,12 @@
{
"name": "Heroku",
"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
atom/hyrule/index.less Normal file
View File

@ -0,0 +1,147 @@
@import "ui-variables";
@base03: #2d2c2b;
@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: #2d2c2b;
color: #c0d5c1;
}
.editor {
.invisible-character,
.indent-guide {
color: #3d3934;
}
.gutter {
background-color: #2d2c2b;
}
.gutter .line-number {
opacity: 0.3;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: #569e16;
}
.cursor {
border-color: #f8f8f0;
}
.selection .region {
background-color: #569e16;
color: #ffffff;
}
.line-number.cursor-line-no-selection {
background-color: #3d3934;
}
}
.bracket-matcher {
background-color: #569e16;
opacity: 0.4;
}
.comment {
color: #716d6a;
}
.entity {
color: #90c93f;
}
.entity.name.type.class {
color: #c0d5c1;
}
.keyword {
color: #90c93f;
}
.storage.type {
color: #f5c504;
}
.storage.modifier {
color: #569e16;
}
.constant {
color: #569e16;
&.numeric,
&.boolean {
color: #f5c504;
}
}
.variable {
color: #c0d5c1;
}
.delimiter, .brace {
color: #c0d5c1;
}
.delimiter.period {
color: #569e16;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: #ce830d;
.constant.character.escape {
color: @red;
}
&.regexp {
color: #f5c504;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}
.keyword.other.phpdoc {
color: #9e9a98;
}
.entity.name.tag {
color: #f5c504;
}
.entity.other.attribute-name {
color: #569e16;
}

Some files were not shown because too many files have changed in this diff Show More