This repository was archived by the owner on Dec 15, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +399
-303
lines changed Expand file tree Collapse file tree 5 files changed +399
-303
lines changed Original file line number Diff line number Diff line change @@ -128,8 +128,10 @@ describe "apm init", ->
128
128
runs ->
129
129
expect (fs .existsSync (themePath)).toBeTruthy ()
130
130
expect (fs .existsSync (path .join (themePath, ' styles' ))).toBeTruthy ()
131
- expect (fs .existsSync (path .join (themePath, ' styles' , ' base .less' ))).toBeTruthy ()
131
+ expect (fs .existsSync (path .join (themePath, ' styles' , ' colors .less' ))).toBeTruthy ()
132
132
expect (fs .existsSync (path .join (themePath, ' styles' , ' syntax-variables.less' ))).toBeTruthy ()
133
+ expect (fs .existsSync (path .join (themePath, ' styles' , ' syntax.less' ))).toBeTruthy ()
134
+ expect (fs .existsSync (path .join (themePath, ' styles' , ' editor.less' ))).toBeTruthy ()
133
135
expect (fs .existsSync (path .join (themePath, ' index.less' ))).toBeTruthy ()
134
136
expect (fs .existsSync (path .join (themePath, ' README.md' ))).toBeTruthy ()
135
137
expect (fs .existsSync (path .join (themePath, ' package.json' ))).toBeTruthy ()
Original file line number Diff line number Diff line change 1
- @import " ./styles/base.less" ;
1
+ @import " styles/syntax-variables.less" ;
2
+ @import " styles/syntax.less" ;
3
+ @import " styles/editor.less" ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ // This defines styling rules for the editor.
2
+
3
+ atom- text- editor {
4
+ background-color : @syntax-background-color ;
5
+ color : @syntax-text-color ;
6
+
7
+ .wrap-guide {
8
+ background-color : @syntax-wrap-guide-color ;
9
+ }
10
+
11
+ .indent-guide {
12
+ color : @syntax-indent-guide-color ;
13
+ }
14
+
15
+ .invisible-character {
16
+ color : @syntax-invisible-character-color ;
17
+ }
18
+
19
+ .gutter {
20
+ background-color : @syntax-gutter-background-color ;
21
+ color : @syntax-gutter-text-color ;
22
+
23
+ .line-number {
24
+ & .cursor-line {
25
+ background-color : @syntax-gutter-background-color-selected ;
26
+ color : @syntax-gutter-text-color-selected ;
27
+ }
28
+
29
+ & .cursor-line-no-selection {
30
+ color : @syntax-gutter-text-color-selected ;
31
+ }
32
+ }
33
+ }
34
+
35
+ .gutter .line-number.folded ,
36
+ .gutter .line-number :after ,
37
+ .fold-marker :after {
38
+ color : @light-gray ;
39
+ }
40
+
41
+ .invisible {
42
+ color : @syntax-text-color ;
43
+ }
44
+
45
+ .cursor {
46
+ color : @syntax-cursor-color ;
47
+ }
48
+
49
+ .selection .region {
50
+ background-color : @syntax-selection-color ;
51
+ }
52
+ }
53
+
54
+ atom- text- editor[mini] .scroll-view {
55
+ padding-left : 1px ;
56
+ }
You can’t perform that action at this time.
0 commit comments