Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Atom Editor theme change the color of character pointer

Hello guys I have 2 questions.

  1. How can I change the color of the character pointer in Atom?

enter image description here

  1. When I use the find function atom highlight all the words that match my query in grey that is to hard to see... How can I change the color??
like image 614
Usi Usi Avatar asked Feb 08 '15 10:02

Usi Usi


1 Answers

There is a very simple way to do this in Atom. Navigate to styles.less through File > Open Your Stylesheet. At the bottom of this file, there will be this code

atom-text-editor::shadow .cursor {

}

This is the code for the cursor color. You can change the color by doing

border-color: //your color here; (yellow stands out well against the darker background)

inside the the brackets.

like image 113
michaelpri Avatar answered Nov 09 '22 14:11

michaelpri