-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.less
45 lines (39 loc) · 1.05 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
/*
* 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
*/
/*
* Examples
* (To see them, uncomment and save)
*/
// style the background color of the tree view
.tree-view {
// background-color: whitesmoke;
}
// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
// color: white;
// background-color: hsl(180, 24%, 12%);
}
// To style other content in the text editor's shadow DOM, use the ::shadow expression
atom-text-editor::shadow .cursor {
// border-color: red;
}
atom-text-editor::shadow pigments-markers::shadow pigments-color-marker.dot,
pigments-margers::shadow pigments-color-marker.dot,
pigments-color-marker.dot {
transform: translate(-8px, -50%) scale(0.7);
}
.editor {
font-weight: normal;
letter-spacing: 0.3px;
.comment {
font-weight: normal;
}
}