diff --git a/AUTHORS.txt b/AUTHORS.txt index bb8025bd75..131f873ad8 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -287,3 +287,4 @@ Contributors: - Samia Ali - Alexandre Grison - Jim Mason +- lioshi diff --git a/CHANGES.md b/CHANGES.md index 9390783d22..09c82dbdd2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,7 @@ New themes: - *NNFX* by [Jim Mason][] +- *lioshi* by [lioshi][] Parser Engine: @@ -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 diff --git a/src/styles/lioshi.css b/src/styles/lioshi.css new file mode 100644 index 0000000000..594ac21556 --- /dev/null +++ b/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; +} + + + +