-
Notifications
You must be signed in to change notification settings - Fork 3.7k
(themes) Add tokyo-night-dark
#3467
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 11 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
31042fb
Create tokyonight-dark.css
Vanderscycle 0868261
Update CHANGES.md
Vanderscycle 3559bcb
Merge pull request #1 from Vanderscycle/patch-2
Vanderscycle 46b6a46
Update developer.html
Vanderscycle 88393bb
modified the file based on the testing
Vanderscycle c599d2f
Merge branch 'main' into patch-1
Vanderscycle 9a6023c
make a few changes but its hard to pinpoint specific .hljs
Vanderscycle 071c268
moved the changes.md to the riht location
Vanderscycle 6325548
used the develloper tools to trouble shoot the theme
Vanderscycle 7decd71
forgot to uncomment on line (caught during the test)
Vanderscycle 8c6fcfd
last commit on a sunday night
Vanderscycle 58bda7e
Update CHANGES.md
joshgoebel c50847f
Update CHANGES.md
joshgoebel d21a76e
Update tokyonight-dark.css
Vanderscycle 71b048a
Merge branch 'main' into patch-1
Vanderscycle 1566fc1
Update src/styles/tokyonight-dark.css
joshgoebel 2e3ad09
Rename tokyonight-dark.css to tokyo-night-dark.css
Vanderscycle e6d16ce
Apply suggestions from code review
joshgoebel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,112 @@ | ||
| /* Tokyo Night Blue Theme */ | ||
| /* Original theme https://github.com/enkia/tokyo-night-vscode-theme*/ | ||
Vanderscycle marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| /* Comment */ | ||
| .hljs-meta, | ||
| .hljs-comment { | ||
| color: #565f89; | ||
| } | ||
|
|
||
| /* Red */ | ||
| /*INFO: This keyword, HTML elements, Regex group symbol, CSS units, Terminal Red */ | ||
| .hljs-tag, | ||
| .hljs-doctag, | ||
| .hljs-selector-id, | ||
| .hljs-selector-class, | ||
| .hljs-regexp, | ||
| .hljs-template-tag, | ||
| .hljs-selector-pseudo, | ||
| .hljs-selector-attr, | ||
| .hljs-variable.language_, | ||
| .hljs-deletion { | ||
| color: #f7768e; | ||
| } | ||
|
|
||
| /*Orange */ | ||
| /*INFO: Number and Boolean constants, Language support constants */ | ||
| .hljs-variable, | ||
| .hljs-template-variable, | ||
| .hljs-number, | ||
| .hljs-literal, | ||
| .hljs-type, | ||
| .hljs-params, | ||
| .hljs-link { | ||
| color: #ff9e64; | ||
| } | ||
|
|
||
|
|
||
| /* Yellow */ | ||
| /* INFO: Function parameters, Regex character sets, Terminal Yellow */ | ||
| .hljs-built_in, | ||
| .hljs-attribute { | ||
| color: #e0af68; | ||
| } | ||
| /* cyan */ | ||
| /* INFO: Language support functions, CSS HTML elements */ | ||
| .hljs-selector-tag { | ||
| color: #2ac3de; | ||
| } | ||
|
|
||
| /* light blue */ | ||
| /* INFO: Object properties, Regex quantifiers and flags, Markdown headings, Terminal Cyan, Markdown code, Import/export keywords */ | ||
| .hljs-keyword, | ||
| .hljs-title.function_, | ||
| .hljs-title, | ||
| .hljs-title.class_, | ||
| .hljs-title.class_.inherited__, | ||
| .hljs-subst, | ||
| .hljs-property {color: #7dcfff;} | ||
|
|
||
| /*Green*/ | ||
| /* INFO: Object literal keys, Markdown links, Terminal Green */ | ||
| .hljs-selector-tag { color: #73daca;} | ||
|
|
||
|
|
||
| /*Green(er) */ | ||
| /* INFO: Strings, CSS class names */ | ||
| .hljs-quote, | ||
| .hljs-string, | ||
| .hljs-symbol, | ||
| .hljs-bullet, | ||
| .hljs-addition { | ||
| color: #9ece6a; | ||
| } | ||
|
|
||
| /* Blue */ | ||
| /* INFO: Function names, CSS property names, Terminal Blue */ | ||
| .hljs-code, | ||
| .hljs-formula, | ||
| .hljs-section { | ||
| color: #7aa2f7; | ||
| } | ||
|
|
||
|
|
||
|
|
||
| /* Purple */ | ||
| /*INFO: Control Keywords, Storage Types, Regex symbols and operators, HTML Attributes, Terminal Magenta */ | ||
| .hljs-name, | ||
| .hljs-keyword, | ||
| .hljs-operator, | ||
| .hljs-keyword, | ||
| .hljs-char.escape_, | ||
| .hljs-attr { | ||
| color: #bb9af7; | ||
| } | ||
|
|
||
| /* white*/ | ||
| /* INFO: Variables, Class names, Terminal White */ | ||
| .hljs-punctuation {color: #c0caf5} | ||
|
|
||
| .hljs { | ||
| /* background: #002451; */ | ||
| background: #1a1b26; | ||
| color: #9aa5ce; | ||
| } | ||
|
|
||
| .hljs-emphasis { | ||
| font-style: italic; | ||
| } | ||
|
|
||
| .hljs-strong { | ||
| font-weight: bold; | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.