관리 메뉴

웹개발자의 기지개

[Atom] 주석 색깔 변경 본문

개발툴/Atom

[Atom] 주석 색깔 변경

http://portfolio.wonpaper.net 2020. 10. 29. 06:41

웹코딩 작업중에 php 나 asp 의 주석 부분이 기본 배경색이 흐릿하여 잘 눈에 띄지 않는다.

 

File -> Stylesheet 클릭

styles.less 파일 하단에 아래의 소스를 추가한다.

 

atom-text-editor::shadow .comment { 
   color: #F3F781;
   font-style: normal;
}
atom-text-editor::shadow .punctuation.definition.comment { 
  color: #CCEEFF;
  font-style: normal;
}
atom-text-editor::shadow .markup.underline.link.hyperlink { color: #CCEEFF; } 

 

참고 : onlyfor-me-blog.tistory.com/104

Comments