Skip to content

Commit

Permalink
(themes) Add new lioshi theme (highlightjs#2581)
Browse files Browse the repository at this point in the history
  • Loading branch information
lioshi committed May 29, 2020
1 parent f30dbf7 commit 87a338b
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 0 deletions.
1 change: 1 addition & 0 deletions AUTHORS.txt
Expand Up @@ -287,3 +287,4 @@ Contributors:
- Samia Ali <samiaab1990@gmail.com>
- Alexandre Grison <a.grison@gmail.com>
- Jim Mason <jmason@ibinx.com>
- lioshi <lioshi@lioshi.com>
2 changes: 2 additions & 0 deletions CHANGES.md
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
@@ -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;
}




0 comments on commit 87a338b

Please sign in to comment.