2021. 5. 24. 10:20
UltraEdit v16.30 에서 Color Scheme 변경
2021. 5. 24. 10:20 in Windows
드디어 관련 정보를 찾았다.
http://forums.ultraedit.com/new-color-scheme-tango-dark-t6393.html
너무 오래된 것이라서...
Windows 10 에서는 "Uedit32.INI" 화일의 위치가
C:\Documents and Settings\[user_name]\AddData\Roaming\IDMComp\UltraEdit\
이었다.
바꾸기 전의 설정은
[User Color Schemes] 0=User Scheme 1;0;16777215;16777215;14120960;16711680;16640196;13882323;16777215;8750469;15724785;0;16777215;0;16776960;16777215;0;0;12632256;0;16119285;0;16119285;0;65280;0;255;13882323;16777215 |
인데, [User Color Schemes] 아래에 다음의 것을 추가하고,
1=Tango Dark;13621203;3552302;15527662;8751752;13621203;5461845;8081525;0;13621203;0;13621203;3552302;0;164;0;1776151;0;8751752;0;1776151 2=Tango Dark Alt;13621203;3552302;15527662;8751752;13621203;2631458;8081525;0;13621203;0;13621203;3552302;0;164;0;1776151;0;5461845;0;1776151 |
UltraEdit 를 다시 실행하고, set color로 변경했는데.... 화면이 제대로 보이질 않는다.
언의의 highlightening 기능 때문이다.
wordfiles\c_cplusplus.uew 에서
/Colors = 0,8421376,8421376,8421504,255, /Colors Back = 16777215,16777215,16777215,16777215,16777215, /Colors Auto Back = 1,1,1,1,1, /Font Style = 0,0,0,0,0, |
이렇게 되어 있는 것을
/Colors = 13621203,8751752,8751752,54509,13621203,7256553,13606770,3465866,2697711,4108284,31221,1146305,13621203, /Colors Back = 3552302,3552302,3552302,3552302,3552302,3552302,3552302,3552302,3552302,3552302,3552302,3552302,3552302, /Colors Auto Back = 1,1,1,1,1,1,1,1,1,1,1,1,1, /Font Style = 0,0,0,0,0,1,0,0,0,0,0,0,0, |
으로 변경하고,,,,
음 그래도 화면이 마음에 들지 않음...
수정하여 최종 변경 한 것은,
UEdit32.ini
[User Color Schemes] 0=Tango Dark;13621203;3552302;15527662;8751752;13621203;5461845;8081525;0;13621203;0;13621203;3552302;0;164;0;1776151;0;8751752;0;1776151;0;16119285;0;65280;0;255;13882323;16777215 1=Tango Dark Alt;13621203;3552302;15527662;8751752;13621203;2631458;8081525;0;13621203;0;13621203;3552302;0;164;0;1776151;0;5461845;0;1776151;0;16119285;0;65280;0;255;13882323;16777215 2=User Scheme 1;0;16777215;16777215;14120960;16711680;16640196;13882323;16777215;8750469;15724785;0;16777215;0;16776960;16777215;0;0;12632256;0;16119285;0;16119285;0;65280;0;255;13882323;16777215 |
이다.
뭐 그런데로...
keyword , [] 의 색이 마음에 들지 않아서,
wordfiles\c_cplusplus.uew 에서
/C1"Keywords" STYLE_KEYWORD Colors = 16711680 Colors Back = 16777215 Colors Auto Back = 1 Font Style = 0 /C5"Braces, comma, semicolon" Colors = 4210816 Colors Back = 16777215 Colors Auto Back = 1 Font Style = 0 |
를
/C1"Keywords" STYLE_KEYWORD Colors = 16777088 Colors Back = 16777215 Colors Auto Back = 1 Font Style = 0 /C5"Braces, comma, semicolon" Colors = 16711935 Colors Back = 16777215 Colors Auto Back = 1 Font Style = 0 |
로 수정하니, 조금 마음에 드는 군요... 하하.
Color 코드를 변경할 때, 순서는 (b * 65536 + g * 256 + r) 입니다.