This repository was archived by the owner on Nov 19, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 11 files changed +1395
-0
lines changed Expand file tree Collapse file tree 11 files changed +1395
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ Watch the master branch of this repository to stay up to date with our efforts.
15
15
* added [ Mode Documentation] [ ModeExample ] with example Mode
16
16
* added [ Transition Guide] [ ModeUpdate ] : _ Notes on how to update a mode from 3.x to 4_
17
17
* added [ Mode creation tutorial] [ ModeTutorial ]
18
+ * added [ Styles] [ SEE4Styles ] Directory containing the built-in SEE4 styles
18
19
19
20
### Links
20
21
[ SubEthaEdit] [ subethaedit_net ]
@@ -35,6 +36,7 @@ Watch the master branch of this repository to stay up to date with our efforts.
35
36
[ ModeExample ] : Documentation/ExampleMode/ " SubEthaEdit 4 Example Mode "
36
37
[ SEE3Modes ] : Attic/SubEthaEdit3/Modes " SubEthaEdit 3.x Modes "
37
38
[ SEE4Modes ] : Modes " SubEthaEdit 4 Modes "
39
+ [ SEE4Styles ] : Styles " SubEthaEdit 4 Styles "
38
40
[ ModeTutorial ] : Documentation/ModeTutorial " Mode Creation Tutorials "
39
41
40
42
<!-- Referenced URLs -->
Original file line number Diff line number Diff line change
1
+ /*
2
+
3
+ Based on:
4
+
5
+ Blueby
6
+ ======
7
+
8
+ Based on the coding samples at ruby-lang.org
9
+
10
+ By Justin Hileman - http://justinhileman.com
11
+
12
+ * Sometimes Coda doesn't get the text and background colors right on import.
13
+ If that happens, use #213449 as your background and #8aa6c1 for text.
14
+
15
+ http://justinhileman.info/coda-colors/
16
+
17
+ Adjusted for SubEthaEdit 4.0
18
+
19
+ */
20
+
21
+ comment {
22
+ color :#428bdd ;
23
+ font-style :italic ;
24
+ }
25
+
26
+ constant.numeric {
27
+ color :#eddd3d ;
28
+ font-weight :normal ;
29
+ }
30
+
31
+ constant.numeric.keyword {
32
+ color :#b53b3c ;
33
+ }
34
+
35
+ keyword {
36
+ color :#e7ad00 ;
37
+ font- strike - through:none ;
38
+ font-weight :normal ;
39
+ }
40
+
41
+ keyword.control {
42
+ color :#ffffff ;
43
+ }
44
+
45
+ keyword.type {
46
+ color :#e7ad00 ;
47
+ }
48
+
49
+ language.function {
50
+ color :#eee ;
51
+ }
52
+
53
+ language.operator {
54
+ color :#8aa6c1 ;
55
+ }
56
+
57
+ language.variable {
58
+ color :#ffffff ;
59
+ }
60
+
61
+ markup.comment {
62
+ color :#428bdd ;
63
+ font-style :italic ;
64
+ }
65
+
66
+ markup.constant.entity {
67
+ color :#eddd3d ;
68
+ }
69
+
70
+ markup.declaration {
71
+ color :#428bdd ;
72
+ }
73
+
74
+ markup.inline.cdata {
75
+ color :#15A102 ;
76
+ }
77
+
78
+ markup.processing {
79
+ color :#428bdd ;
80
+ font-style :italic ;
81
+ font-weight :normal ;
82
+ }
83
+
84
+ markup.tag {
85
+ color :#ffffff ;
86
+ }
87
+
88
+ markup.tag.attribute.name {
89
+ color :#8aa6c1 ;
90
+ }
91
+
92
+ markup.tag.attribute.value {
93
+ color :#15A102 ;
94
+ }
95
+
96
+ meta .default {
97
+ background-color :#213449 ;
98
+ color :#8aa6c1 ;
99
+ }
100
+
101
+ meta .higlight.currentline {
102
+ background-color :#364b61 ;
103
+ }
104
+
105
+ meta .important {
106
+ color :#d30060 ;
107
+ }
108
+
109
+ meta .invalid {
110
+ color :#d30060 ;
111
+ font-weight :bold ;
112
+ }
113
+
114
+ meta .invisible.characters {
115
+ color :#364b61 ;
116
+ }
117
+
118
+ meta .link {
119
+ color :#636cff ;
120
+ font- underline :none ;
121
+ }
122
+
123
+ string {
124
+ color :#15A102 ;
125
+ }
126
+
127
+ string.regex {
128
+ color :#ca4344 ;
129
+ }
130
+
131
+ style .at-rule {
132
+ color :#ffffff ;
133
+ font-style :italic ;
134
+ font-weight :bold ;
135
+ }
136
+
137
+ style .comment {
138
+ color :#428bdd ;
139
+ font-style :italic ;
140
+ font-weight :normal ;
141
+ }
142
+
143
+ style .property.name {
144
+ color :#8aa6c1 ;
145
+ }
146
+
147
+ style .value.color.rgb-value {
148
+ color :#eddd3d ;
149
+ }
150
+
151
+ style .value.keyword {
152
+ color :#e7ad00 ;
153
+ }
154
+
155
+ style .value.numeric {
156
+ color :#eddd3d ;
157
+ }
158
+
159
+ style .value.string {
160
+ color :#15A102 ;
161
+ }
162
+
163
+ support {
164
+ color :#ffffff ;
165
+ }
166
+
167
+
168
+ /* The following Scopes were added to accommodate scope-name changes for SEE 4.0 */
169
+
170
+ language.subroutine.function {
171
+ color :#eee ;
172
+ }
173
+
174
+ keyword.constant {
175
+ color :#cc4141 ;
176
+ }
177
+
178
+ language.constant.numeric {
179
+ color :#eddd3d ;
180
+ font-weight :normal ;
181
+ }
182
+
Original file line number Diff line number Diff line change
1
+ /*
2
+
3
+ Based on:
4
+
5
+ Desert for Coda
6
+ ===============
7
+
8
+ This is a port of Hans Fugal's Desert color scheme for Vim:
9
+
10
+ http://fugal.net/vim/colors/
11
+
12
+ By Justin Hileman - http://justinhileman.com
13
+
14
+ * Sometimes Coda doesn't get the text and background colors right on import.
15
+ If that happens, use #333333 as your background and #ffffff for text.
16
+
17
+ http://justinhileman.info/coda-colors/
18
+
19
+ Adjusted for SubEthaEdit 4.0
20
+
21
+ */
22
+
23
+ comment {
24
+ color :#6aa3ba ;
25
+ font-style :italic ;
26
+ }
27
+
28
+ constant.numeric {
29
+ color :#FFA0A0 ;
30
+ font-weight :normal ;
31
+ }
32
+
33
+ constant.numeric.keyword {
34
+ color :#FFA0A0 ;
35
+ }
36
+
37
+ keyword {
38
+ color :#CD5C5C ;
39
+ font- strike - through:none ;
40
+ font-weight :normal ;
41
+ }
42
+
43
+ keyword.control {
44
+ color :#C67516 ;
45
+ }
46
+
47
+ keyword.type {
48
+ color :#C67516 ;
49
+ }
50
+
51
+ language.function {
52
+ color :#61a161 ;
53
+ }
54
+
55
+ language.operator {
56
+ color :#aaaaaa ;
57
+ }
58
+
59
+ language.variable {
60
+ color :#CD5C5C ;
61
+ }
62
+
63
+ markup.comment {
64
+ color :#6aa3ba ;
65
+ font-style :italic ;
66
+ }
67
+
68
+ markup.constant.entity {
69
+ color :#FFA0A0 ;
70
+ }
71
+
72
+ markup.declaration {
73
+ color :#6aa3ba ;
74
+ }
75
+
76
+ markup.inline.cdata {
77
+ color :#FFA0A0 ;
78
+ }
79
+
80
+ markup.processing {
81
+ color :#FFA0A0 ;
82
+ font-style :italic ;
83
+ font-weight :normal ;
84
+ }
85
+
86
+ markup.tag {
87
+ color :#CD5C5C ;
88
+ }
89
+
90
+ markup.tag.attribute.name {
91
+ color :#61a161 ;
92
+ }
93
+
94
+ markup.tag.attribute.value {
95
+ color :#bdb76b ;
96
+ }
97
+
98
+ meta .default {
99
+ background-color :#333333 ;
100
+ color :#aaaaaa ;
101
+ }
102
+
103
+ meta .higlight.currentline {
104
+ background-color :#444444 ;
105
+ }
106
+
107
+ meta .important {
108
+ color :#A5391D ;
109
+ }
110
+
111
+ meta .invalid {
112
+ color :#A5391D ;
113
+ font-weight :bold ;
114
+ }
115
+
116
+ meta .invisible.characters {
117
+ color :#444444 ;
118
+ }
119
+
120
+ meta .link {
121
+ color :#636cff ;
122
+ font- underline :none ;
123
+ }
124
+
125
+ string {
126
+ color :#bdb76b ;
127
+ }
128
+
129
+ string.regex {
130
+ color :#FFDEAD ;
131
+ }
132
+
133
+ style .at-rule {
134
+ color :#C67516 ;
135
+ font-style :italic ;
136
+ font-weight :bold ;
137
+ }
138
+
139
+ style .comment {
140
+ color :#6aa3ba ;
141
+ font-style :italic ;
142
+ font-weight :normal ;
143
+ }
144
+
145
+ style .property.name {
146
+ color :#61a161 ;
147
+ }
148
+
149
+ style .value.color.rgb-value {
150
+ color :#FFA0A0 ;
151
+ }
152
+
153
+ style .value.keyword {
154
+ color :#CD5C5C ;
155
+ }
156
+
157
+ style .value.numeric {
158
+ color :#FFA0A0 ;
159
+ }
160
+
161
+ style .value.string {
162
+ color :#bdb76b ;
163
+ }
164
+
165
+ support {
166
+ color :#C67516 ;
167
+ }
168
+
169
+
170
+ /* The following Scopes were added to accommodate scope-name changes for SEE 4.0 */
171
+
172
+ language.subroutine.function {
173
+ color :#61a161 ;
174
+ }
175
+
176
+ keyword.constant {
177
+ color :#ffa0a0 ;
178
+ }
179
+
180
+ language.constant.numeric {
181
+ color :#ffa0a0 ;
182
+ font-weight :normal ;
183
+ }
184
+
You can’t perform that action at this time.
0 commit comments