about summary refs log tree commit diff stats
path: root/atom/styles
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-12-28 18:40:44 -0800
committerKartik Agaram <vc@akkartik.com>2019-12-28 18:40:44 -0800
commitdc6bd625f2ac8e67b7507431ab4fa6f72e5fd5bb (patch)
treec6acd503667447c046a60a01cb006d549fcaf339 /atom/styles
parentbc81e7719770c903930899285ba6b7e96a9c70e3 (diff)
downloadmu-dc6bd625f2ac8e67b7507431ab4fa6f72e5fd5bb.tar.gz
5839 - colors for comments and string literals
Diffstat (limited to 'atom/styles')
-rw-r--r--atom/styles/styles.less15
1 files changed, 15 insertions, 0 deletions
diff --git a/atom/styles/styles.less b/atom/styles/styles.less
index e1a749a3..7aa18ef7 100644
--- a/atom/styles/styles.less
+++ b/atom/styles/styles.less
@@ -1,5 +1,20 @@
 atom-text-editor.editor {
   .syntax--source.syntax--subx {
+    .syntax--header-comment.syntax--subx {
+      color: #ccccff;
+    }
+    .syntax--comment-sub-1.syntax--subx {
+      color: #888888;
+    }
+    .syntax--comment-sub-2.syntax--subx {
+      color: #666666;
+    }
+    .syntax--comment.syntax--subx {
+      color: #8888ff;
+    }
+    .syntax--strings.syntax--subx {
+      color: cyan;
+    }
     .syntax--function.syntax--subx {
       color: orange;
     }