Notice
Recent Posts
Recent Comments
Tags
- php 캐쉬제거
- javascript 바코드스캔
- 바코드 스캔하기
- 하드 마이그레이션
- 말줄임표시
- django 엑셀불러오기
- Mac Oracle
- 파일업로드 체크
- ViewBag
- ViewData
- javascript 유효성체크
- 바코드 생성하기
- XSS방어
- 하드 윈도우 복사
- 타임피커
- 맥 오라클설치
- TempData
- 파일업로드 유효성체크
- SSD 복사
- 강제이동
- asp.net Select
- 404에러페이지
- XSS PHP
- jquery 바코드생성
- javascript redirection
- ASP.Net Core 404
- asp.net core Select
- asp.net dropdownlist
- jquery 바코드
- javascript 바코드 생성
웹개발자의 기지개
[Atom] 주석 색깔 변경 본문
웹코딩 작업중에 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; }
'개발툴 > Atom' 카테고리의 다른 글
[Atom] 단축키 정리 (0) | 2021.08.15 |
---|---|
[Atom] 맥북 Atom 에서 html 파일에서 php 문법소스 적용하기 (0) | 2020.10.29 |
Comments