-
vscode에서 다운받은 테마의 글자 색을 바꾸고 싶을 때문제 해결 2023. 2. 4. 00:07
VScode에서 다운받은 테마의 '글자 색깔'을 바꾸고 싶을 때
나는 저렇게 일반적인 영역?의 글자색을 바꿔주고 싶었다.
( 테마는 Community Material Theme 다운받아서 Palenight High Contrast 사용중 )
저기 회색의 text, onChange, onReset, onClickButton, text 말이다 !
테마를 다운받아 보면 저런거 처럼
일부분의 색깔이 영 선명하지 않아서 내 눈까지 침침해지는 느낌이다.
그래서 검색한 결과 커스터마이징으로 글자색을 바꿔줄 수 있다는 것을 알아냈다 !
아래 블로그 글을 참고했다!
https://dearmycode.tistory.com/8
Visual Studio Code 주석 및 키워드 글꼴 스타일 설정하기
vs code 비주얼 스튜디오 코드를 사용한다면, 기존 테마나 사용 중인 확장 테마에 적용된 주석 혹은 if 등의 키워드의 글꼴(이탤릭체 등)이나 색상이 마음에 들지 않는 경우가 있을것이다. 나는 개
dearmycode.tistory.com
↓ 복붙하세요
"editor.tokenColorCustomizations": { "variables": "#FFFFFF" }
settings.json 파일에서 이렇게 붙여넣고 저장해주면 끝 !!
결과 :
아주 선명해졌따.
사실 공식문서에 나오는 내용인데 영어로 된 페이지면 조금 읽다가 뒤로가기 버튼 눌러버린다 ......
😂
(내가 본 공식문서 ↓)
https://code.visualstudio.com/docs/getstarted/themes#_customizing-a-color-theme
Visual Studio Code Themes
Changing the color theme in Visual Studio Code. You can use color themes provided by VS Code, the community or create your own new themes.
code.visualstudio.com
또 하나 더
'초기화', '등록하기' 저 부분도 바꾸고 싶은데
Developer 어쩌구 해보면 no theme selector 뜬다. 검색하니 답은 금방 나왔다.
How to modify the editor text color in Visual Studio Code?
I know how to install and switch different color themes (like "dark-plus" etc.). I also found out how to modify settings in settings.json): "editor.tokenColorCustomizations": { ...
stackoverflow.com
↓ 복붙 ㄱ
"workbench.colorCustomizations": { "editor.foreground": "#aabbcc" }
settings.json 에서 아래에 이렇게 추가해줌
결과 :
굿굿
이런식으로 원하는 부분도 글자색을 바꾸면 될듯
답답한 마음이 뚫리는 기분이다 ㅋㅋ 끝!