Skip to content

Commit

Permalink
[GHI-#17] Implement PHP language styles
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Sep 17, 2016
1 parent badfcc2 commit c89f4f3
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.less
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ LESSCSS
@import "styles/languages/javascript";
@import "styles/languages/json";
@import "styles/languages/lesscss";
@import "styles/languages/php";
@import "styles/languages/python";
@import "styles/languages/ruby";
@import "styles/languages/shell";
Expand Down
41 changes: 41 additions & 0 deletions styles/languages/php.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
title Language PHP +
project nord-atom-syntax +
version +
repository https://github.com/arcticicestudio/nord-atom-syntax +
author Arctic Ice Studio +
email development@arcticicestudio.com +
copyright Copyright (C) 2016 +
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
[Language Packages]
> language-php (https://atom.io/packages/language-php)
[References]
PHP
(https://secure.php.net)
*/
.source.php {
.meta {
&.function-call {
color: @syntax-color-function;

&.static {
font-style: italic;
}
}

&.string-contents {
color: @syntax-color-string;
}
}

.punctuation.definition.variable {
color: @syntax-color-keyword;
}

.support.other.namespace.use {
color: @syntax-color-class;
}
}

0 comments on commit c89f4f3

Please sign in to comment.