다음 튜토리얼 칼럼인 sublime에서는 맞춤 Sublime Text3 테마, 맞춤 배경색, 전경색, 선택한 색상 및 기타 글꼴 스타일(나의 눈 보호 색상)을 소개합니다. 필요!
이전에 "Sublime Text3 우아하게 사용하는 방법(Sublime은 된장 녹색 배경색을 설정하고 테마를 사용자 정의합니다)" 기사를 기반으로 테마 스타일을 수정했습니다. 패키지를 열어보니 사이드바 버튼과 버튼까지 모두 녹색이더군요.. 원래 검은색 테마로 다시 바꿔보니 텍스트 편집 영역만 빼고 다 검은색이었습니다. 모두 여전히 녹색이었습니다. 패키지에서 테마를 삭제했는데 여전히 작동하지 않아서 소프트웨어를 다시 설치해야 했습니다. 나중에 색상 구성표도 패키지에 있다는 것을 알고 복사할 수 있는지 궁금했습니다. 원하는 효과를 얻기 위해 내부 파일을 수정해 본 결과 실제로 작동하는 것으로 나타났습니다.
1. 먼저 렌더링을 넣습니다.
방법은 다음과 같습니다.
1. Sublime Text3/Packages 디렉터리에서 Color Scheme - Default.sublime-package를 엽니다(압축 패키지로 열림)
2. -color-scheme 파일을 / Desktop
3.Monokai.sublime-color-scheme 파일의 색상 매개변수 값을 수정합니다
4.
7. 색 구성표를 클릭하세요
8. 내 색 구성표 구성 파일의 내용
{ "name": "longxin", "author": "Sublime HQ Pty Ltd, Wimer Hazenberg", "variables": { "black": "hsl(0, 0%, 0%)", "selection_border_color": "hsl(60, 17%, 11%)", "background_color": "hsl(120°, 40.5%, 85.5%)", "blue": "hsl(338°, 94.6%, 56.3%)", "selection_color": "hsl(120°, 9.3%, 58.0%)", "orange": "hsl(32, 98%, 56%)", "orange2": "hsl(30, 83%, 34%)", "orange3": "hsl(47, 100%, 79%)", "purple": "hsl(261, 100%, 75%)", "red": "hsl(0, 93%, 59%)", "red2": "hsl(338, 95%, 56%)", "white": "hsl(0, 0%, 97%)", "white2": "hsl(60, 36%, 96%)", "white3": "hsl(0°, 6.5%, 15.1%)", "yellow": "hsl(0°, 0.0%, 50.2%)", "yellow2": "hsl(0°, 0.0%, 14.1%)", "yellow3": "hsl(60, 12%, 79%)", "yellow4": "hsl(120°, 9.3%, 58.0%)", "yellow5": "hsl(50, 11%, 41%)" }, "globals": { "foreground": "var(white3)", "background": "var(background_color)", "caret": "color(var(white2) alpha(0.9))", "block_caret": "color(var(white2) alpha(0.4))", "invisibles": "color(var(white3) alpha(0.35))", "line_highlight": "var(yellow4)", "selection": "var(selection_color)", "selection_border": "var(selection_border_color)", "misspelling": "var(red2)", "active_guide": "color(var(orange2) alpha(0.69))", "find_highlight_foreground": "var(black)", "find_highlight": "var(orange3)", "brackets_options": "underline", "brackets_foreground": "color(var(white3) alpha(0.65))", "bracket_contents_options": "underline", "bracket_contents_foreground": "color(var(white3) alpha(0.65))", "tags_options": "stippled_underline" }, "rules": [ { "name": "Comment", "scope": "comment", "foreground": "var(yellow5)" }, { "name": "String", "scope": "string", "foreground": "var(yellow)" }, { "name": "Number", "scope": "constant.numeric", "foreground": "var(purple)" }, { "name": "Built-in constant", "scope": "constant.language", "foreground": "var(purple)" }, { "name": "User-defined constant", "scope": "constant.character, constant.other", "foreground": "var(purple)" }, { "name": "Variable", "scope": "variable" }, { "name": "Keyword", "scope": "keyword - (source.c keyword.operator | source.c++ keyword.operator | source.objc keyword.operator | source.objc++ keyword.operator), keyword.operator.word", "foreground": "var(red2)" }, { "name": "Annotation Punctuation", "scope": "punctuation.definition.annotation", "foreground": "var(red2)" }, { "name": "JavaScript Dollar", "scope": "variable.other.dollar.only.js", "foreground": "var(red2)" }, { "name": "Storage", "scope": "storage", "foreground": "var(red2)" }, { "name": "Storage type", "scope": "storage.type", "foreground": "var(blue)", "font_style": "italic" }, { "name": "Entity name", "scope": "entity.name - (entity.name.filename | entity.name.section | entity.name.tag | entity.name.label)", "foreground": "var(yellow2)" }, { "name": "Inherited class", "scope": "entity.other.inherited-class", "foreground": "var(yellow2)", "font_style": "italic underline" }, { "name": "Function argument", "scope": "variable.parameter - (source.c | source.c++ | source.objc | source.objc++)", "foreground": "var(orange)", "font_style": "italic" }, { "name": "Language variable", "scope": "variable.language", "foreground": "var(orange)", "font_style": "italic" }, { "name": "Tag name", "scope": "entity.name.tag", "foreground": "var(red2)" }, { "name": "Tag attribute", "scope": "entity.other.attribute-name", "foreground": "var(yellow2)" }, { "name": "Function call", "scope": "variable.function, variable.annotation", "foreground": "var(blue)" }, { "name": "Library function", "scope": "support.function, support.macro", "foreground": "var(blue)" }, { "name": "Library constant", "scope": "support.constant", "foreground": "var(blue)" }, { "name": "Library class/type", "scope": "support.type, support.class", "foreground": "var(blue)", "font_style": "italic" }, { "name": "Library variable", "scope": "support.other.variable" }, { "name": "Invalid", "scope": "invalid", "foreground": "var(white2)", "background": "var(red2)" }, { "name": "Invalid deprecated", "scope": "invalid.deprecated", "foreground": "var(white2)", "background": "var(purple)" }, { "name": "JSON String", "scope": "meta.structure.dictionary.json string.quoted.double.json", "foreground": "var(yellow3)" }, { "name": "YAML String", "scope": "string.unquoted.yaml", "foreground": "var(white3)" }, { "name": "diff.header", "scope": "meta.diff, meta.diff.header", "foreground": "var(yellow5)" }, { "name": "markup headings", "scope": "markup.heading", "font_style": "bold" }, { "name": "markup headings", "scope": "markup.heading punctuation.definition.heading", "foreground": "var(orange)" }, { "name": "markup h1", "scope": "markup.heading.1 punctuation.definition.heading", "foreground": "var(red2)" }, { "name": "markup links", "scope": "markup.underline.link", "foreground": "var(blue)" }, { "name": "markup bold", "scope": "markup.bold", "font_style": "bold" }, { "name": "markup italic", "scope": "markup.italic", "font_style": "italic" }, { "name": "markup bold/italic", "scope": "markup.italic markup.bold | markup.bold markup.italic", "font_style": "bold italic" }, { "name": "markup hr", "scope": "punctuation.definition.thematic-break", "foreground": "var(yellow5)" }, { "name": "markup blockquote", "scope": "markup.quote punctuation.definition.blockquote", "foreground": "var(yellow5)" }, { "name": "markup bullets", "scope": "markup.list.numbered.bullet", "foreground": "var(purple)" }, { "name": "markup bullets", "scope": "markup.list.unnumbered.bullet | (markup.list.numbered punctuation.definition)", "foreground": "color(var(white) alpha(0.67))" }, { "name": "markup code", "scope": "markup.raw", "background": "color(var(white) alpha(0.094))" }, { "name": "markup punctuation", "scope": "markup.raw punctuation.definition.raw", "foreground": "color(var(white) alpha(0.67))" }, { "name": "markup punctuation", "scope": "text & (punctuation.definition.italic | punctuation.definition.bold | punctuation.definition.raw | punctuation.definition.link | punctuation.definition.metadata | punctuation.definition.image | punctuation.separator.table-cell | punctuation.section.table-header | punctuation.definition.constant)", "foreground": "color(var(white) alpha(0.67))" }, { "name": "diff.deleted", "scope": "markup.deleted", "foreground": "var(red2)" }, { "name": "diff.inserted", "scope": "markup.inserted", "foreground": "var(yellow2)" }, { "name": "diff.changed", "scope": "markup.changed", "foreground": "var(yellow)" }, { "scope": "constant.numeric.line-number.find-in-files - match", "foreground": "color(var(purple) alpha(0.63))" }, { "scope": "entity.name.filename", "foreground": "var(yellow)" }, { "scope": "message.error", "foreground": "var(red)" }, { "scope": "diff.deleted", "background": "hsla(338, 50%, 56%, 0.15)", "foreground_adjust": "l(+ 5%)" }, { "scope": "diff.deleted.char", "background": "hsla(338, 65%, 56%, 0.30)", "foreground_adjust": "l(+ 10%)" }, { "scope": "diff.inserted", "background": "hsla(80, 50%, 53%, 0.15)", "foreground_adjust": "l(+ 5%)" }, { "scope": "diff.inserted.char", "background": "hsla(80, 65%, 53%, 0.30)", "foreground_adjust": "l(+ 10%)" }, ] }
8. ? 빨간 봉투로 표현될 수 있으니 더 말할 필요도 없겠죠... .
위 내용은 Sublime Text3 테마, 배경색, 전경색 및 기타 스타일을 사용자 정의하세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

Sublimetext는 한 번 동안 구매할 수 있으며 가격은 70 달러이며 PC와 함께 영구적으로 사용됩니다. VSCODE는 무료로 사용할 수 있으며 라이센스 비용이 없지만 확장 및 테마가 청구될 수 있습니다. 선택할 때 사용 요구 사항 및 예산을 고려해야합니다.

Sublime Text를 실행하려면 다운로드, 응용 프로그램을 설치하고 라이센스 구매 (선택 사항)를 구매 한 다음 응용 프로그램을 시작해야합니다. 인코딩을 시작할 파일을 만들거나 열십시오.

숭고한 텍스트는 다음 단계를 통해 중국어를 사용할 수 있습니다. 1. 중국 패키지 다운로드; 2. 중국 패키지를 설치하십시오. 3. 숭고한 텍스트를 다시 시작하십시오. 4. 기본 언어 (선택 사항)를 설정합니다. 5. 중국어 버전을 확인하십시오.

Sublime 텍스트에서 플러그인을 삭제하는 두 가지 방법이 있습니다. 플러그인 관리자를 통해 삭제하십시오. 삭제할 플러그인을 선택하고 마우스 오른쪽 버튼으로 클릭하고 "삭제"를 선택하십시오. 수동 삭제 : 사용자 데이터 디렉토리로 이동하여 플러그인 폴더를 찾아 재활용 빈 또는 쓰레기로 드래그하십시오.

Sublime 텍스트로 GBK 인코딩을 사용하여 코드를 작성하려면 다음과 같은 것이 필요합니다. 1. 프로젝트 인코딩을 GBK로 설정하십시오. 2. 새 파일을 만듭니다. 3. 저장시 GBK 인코딩을 선택하십시오. 4. GBK 인코딩을 사용하여 코드를 입력하십시오.

숭고한 것은 다음과 같이 중국어로 번역 될 수 있습니다. 1. 숭고한, 신성한; 2. 극단적, 특별한; 3. 설명 할 수없고 굉장합니다. 4. 숭고한 생각.

숭고한 텍스트 등록 코드를 구매하는 단계는 다음과 같습니다. 웹 사이트를 방문하여 "구매"를 선택하십시오. 라이센스 유형을 선택하고 정보를 입력하십시오. 등록 코드가 포함 된 이메일을 지불하고받습니다. 숭고한 텍스트를 열고 라이센스 메뉴로 이동하여 등록 코드를 붙여 넣습니다. 등록을 클릭하여 등록 코드 및 고급 기능을 활성화하십시오.

Sublime Text는 바로 가기 키 (Ctrl S), 메뉴 막대 (파일 & gt; 저장), 도구 모음 (디스크 아이콘) 및 명령 패널 (CTRL P)을 포함하여 코드를 저장하는 다양한 방법을 제공합니다. 또한 자동 저장 기능을 제공하여 열린 파일을 정기적으로 자동으로 저장할 수 있습니다.


핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

MinGW - Windows용 미니멀리스트 GNU
이 프로젝트는 osdn.net/projects/mingw로 마이그레이션되는 중입니다. 계속해서 그곳에서 우리를 팔로우할 수 있습니다. MinGW: GCC(GNU Compiler Collection)의 기본 Windows 포트로, 기본 Windows 애플리케이션을 구축하기 위한 무료 배포 가능 가져오기 라이브러리 및 헤더 파일로 C99 기능을 지원하는 MSVC 런타임에 대한 확장이 포함되어 있습니다. 모든 MinGW 소프트웨어는 64비트 Windows 플랫폼에서 실행될 수 있습니다.

SublimeText3 영어 버전
권장 사항: Win 버전, 코드 프롬프트 지원!

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

Eclipse용 SAP NetWeaver 서버 어댑터
Eclipse를 SAP NetWeaver 애플리케이션 서버와 통합합니다.

PhpStorm 맥 버전
최신(2018.2.1) 전문 PHP 통합 개발 도구
