mirror of
https://github.com/atom/atom.git
synced 2026-02-04 19:54:59 -05:00
15 lines
423 B
Markdown
15 lines
423 B
Markdown
# User Stylesheet
|
|
|
|
If you want to apply quick-and-dirty personal styling changes without creating
|
|
an entire theme that you intend to distribute, you can add styles to
|
|
`user.css` in your `~/.atom` directory.
|
|
|
|
For example to change the color of the highlighted line number for the line that
|
|
contains the cursor, you could add the following style to `user.css`:
|
|
|
|
```css
|
|
.editor .line-number.cursor-line {
|
|
color: pink;
|
|
}
|
|
```
|