Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -287,3 +287,4 @@ Contributors:
- Samia Ali <[email protected]>
- Alexandre Grison <[email protected]>
- Jim Mason <[email protected]>
- lioshi <[email protected]>
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
New themes:

- *NNFX* by [Jim Mason][]
- *lioshi* by [lioshi][]

Parser Engine:

Expand Down Expand Up @@ -58,6 +59,7 @@ Language Improvements:
[Nils Knappmeier]: https://github.com/nknapp
[Martin (Lhoerion)]: https://github.com/Lhoerion
[Jim Mason]: https://github.com/RocketMan
[lioshi]: https://github.com/lioshi


## Version 10.0.2
Expand Down
88 changes: 88 additions & 0 deletions src/styles/lioshi.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
/* lioshi Theme */
/* Original theme - https://github.com/lioshi/vscode-lioshi-theme */

/* Comment */
.hljs-comment {
color: #8d8d8d;
}

/* quote */
.hljs-quote {
color: #b3c7d8;
}

/* Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-deletion {
color: #cc6666;
}

/* Orange */
.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-subst
.hljs-link {
color: #de935f;
}

/* Yellow */
.hljs-attribute {
color: #f0c674;
}

/* Green */
.hljs-string,
.hljs-bullet,
.hljs-params,
.hljs-addition {
color: #b5bd68;
}

/* Blue */
.hljs-title,
.hljs-meta,
.hljs-section {
color: #81a2be;
}

/* Purple */
.hljs-selector-tag,
.hljs-keyword,
.hljs-function,
.hljs-class {
color: #be94bb;
}

/* Purple light */
.hljs-symbol {
color: #dbc4d9;
}

.hljs {
display: block;
overflow-x: auto;
background: #303030;
color: #c5c8c6;
padding: 0.5em;
}

.hljs-emphasis {
font-style: italic;
}

.hljs-strong {
font-weight: bold;
}