-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.less
149 lines (129 loc) · 2.86 KB
/
styles.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/
// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
color: #333333;
background-color: #BDBDBD;
font-size: 12px
}
atom-text-editor::shadow {
.line.cursor-line {
background-color: #ADABAB;
}
.comment,
.punctuation.definition.comment {
color: #CC6600;
}
atom-workspace,
.meta.method-call,
.meta.method,
.punctuation,
.variable,
.source .keyword.operator,
.punctuation.definition.method-parameters,
.punctuation.definition.function-parameters,
.punctuation.definition.parameters,
.punctuation.definition.separator,
.punctuation.definition.seperator,
.punctuation.definition.array,
.entity.name.type,
.keyword.unit.other,
.meta.selector {
color: #333333;
}
.keyword,
.entity.attribute-name,
.function,
.language,
.storage,
.source .keyword.operator.delete,
.source .keyword.operator.in,
.source .keyword.operator.of,
.source .keyword.operator.instanceof,
.source .keyword.operator.new,
.source .keyword.operator.typeof,
.source .keyword.operator.void,
.entity.name.tag {
color: #000080;
font-weight: bold;
}
.css.property-name.support,
.css.meta.property-name,
.css.name.tag.entity,
.meta.tag,
.html.constant.entity {
color: #0000FF;
font-weight: bold;
}
.css.property-value.support,
.source.css .property-value {
color: #333333;
font-weight: bold;
}
.entity.name.function,
.support.function,
.variable.other.property {
color: #7A7A2B;
font-style: normal;
font-weight: bold;
}
.string,
.css.support.font-name {
color: #008000;
font-weight: bold;
}
.constant {
color: #660E7A;
font-weight: bold;
}
.variable,
.entity.name.type {
font-style: italic;
}
.parameter {
text-decoration: underline;
color: #333333;
font-style: normal;
font-weight: normal;
}
.support.class {
color: #660E7A;
font-weight: bold;
font-style: italic;
}
.selection .region,
:host .selection .region,
.gutter .line-number.cursor-line,
:host .gutter .line-number.cursor-line {
background-color: #89B2C1;
color: #fff;
}
.numeric {
color: #0000FF;
}
.line-number {
color: #7C000B;
background-color: #EFEFEF;
}
.find-result .region, atom-text-editor::shadow .find-result .region {
z-index: -1;
border-radius: 0;
}
.bracket-matcher .region {
border: 1px solid #fff;
animation: none;
}
}
atom-text-editor .find-result .region,
atom-text-editor::shadow .find-result .region {
background-color: #FFFF00;
border: none;
}