From 1501de989858d2bba0d2240917ecd9b957ff4c50 Mon Sep 17 00:00:00 2001 From: lioshi Date: Wed, 27 May 2020 23:52:37 +0200 Subject: [PATCH 1/9] Create lioshi.css --- src/styles/lioshi.css | 73 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 src/styles/lioshi.css diff --git a/src/styles/lioshi.css b/src/styles/lioshi.css new file mode 100644 index 0000000000..3b7c7a5688 --- /dev/null +++ b/src/styles/lioshi.css @@ -0,0 +1,73 @@ +/* Lioshi Theme */ +/* Original theme - https://github.com/lioshi/vscode-lioshi-theme */ + +/* Comment */ +.hljs-comment, +.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-params, +.hljs-meta, +.hljs-link { + color: #de935f; +} + +/* Yellow */ +.hljs-attribute { + color: #f0c674; +} + +/* Green */ +.hljs-string, +.hljs-symbol, +.hljs-bullet, +.hljs-addition { + color: #b5bd68; +} + +/* Blue */ +.hljs-title, +.hljs-section { + color: #81a2be; +} + +/* Purple */ +.hljs-keyword, +.hljs-selector-tag { + color: #be94bb; +} + +.hljs { + display: block; + overflow-x: auto; + background: #303030; + color: #c5c8c6; + padding: 0.5em; +} + +.hljs-emphasis { + font-style: italic; +} + +.hljs-strong { + font-weight: bold; +} From 9b1f81a9a934f0397ae22543efd28a31d5aa450b Mon Sep 17 00:00:00 2001 From: lioshi Date: Wed, 27 May 2020 23:57:11 +0200 Subject: [PATCH 2/9] Update AUTHORS.txt --- AUTHORS.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS.txt b/AUTHORS.txt index bb8025bd75..604ca71e2f 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -287,3 +287,4 @@ Contributors: - Samia Ali - Alexandre Grison - Jim Mason +- Lioshi From ca9c6a6915e68f0f90dc3c61d6f85c51e8ffaa4e Mon Sep 17 00:00:00 2001 From: lioshi Date: Thu, 28 May 2020 00:00:07 +0200 Subject: [PATCH 3/9] Update CHANGES.md --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index 9390783d22..f107962619 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,7 @@ New themes: - *NNFX* by [Jim Mason][] +- *lioshi* by [lioshi][] Parser Engine: From 4d293a6469d6607a7000176cf4d2c0216c2bf704 Mon Sep 17 00:00:00 2001 From: lioshi Date: Thu, 28 May 2020 00:02:48 +0200 Subject: [PATCH 4/9] Update CHANGES.md --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index f107962619..dead160de7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -59,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/ ## Version 10.0.2 From be51a48e3709d62ec41c08cf2db73ef204ac7ecc Mon Sep 17 00:00:00 2001 From: lioshi Date: Thu, 28 May 2020 00:24:07 +0200 Subject: [PATCH 5/9] Update CHANGES.md --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index dead160de7..09c82dbdd2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -59,7 +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]: https://github.com/lioshi ## Version 10.0.2 From b3a493f5d21bf6266f29bdd426279f13cbd2cf44 Mon Sep 17 00:00:00 2001 From: lioshi Date: Thu, 28 May 2020 00:33:39 +0200 Subject: [PATCH 6/9] Update lioshi.css --- src/styles/lioshi.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/styles/lioshi.css b/src/styles/lioshi.css index 3b7c7a5688..60d30016c2 100644 --- a/src/styles/lioshi.css +++ b/src/styles/lioshi.css @@ -38,6 +38,7 @@ /* Green */ .hljs-string, +.hljs-subst, .hljs-symbol, .hljs-bullet, .hljs-addition { From beb4c745aeda5112ca5a19d5a9f927d329a21b93 Mon Sep 17 00:00:00 2001 From: lioshi Date: Thu, 28 May 2020 12:46:59 +0200 Subject: [PATCH 7/9] some colors updates --- src/styles/lioshi.css | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/src/styles/lioshi.css b/src/styles/lioshi.css index 60d30016c2..d41c953d52 100644 --- a/src/styles/lioshi.css +++ b/src/styles/lioshi.css @@ -2,7 +2,11 @@ /* Original theme - https://github.com/lioshi/vscode-lioshi-theme */ /* Comment */ -.hljs-comment, +.hljs-comment { + color: #8d8d8d; +} + +/* quote */ .hljs-quote { color: #b3c7d8; } @@ -25,8 +29,7 @@ .hljs-builtin-name, .hljs-literal, .hljs-type, -.hljs-params, -.hljs-meta, +.hljs-subst .hljs-link { color: #de935f; } @@ -38,25 +41,32 @@ /* Green */ .hljs-string, -.hljs-subst, -.hljs-symbol, .hljs-bullet, +.hljs-params, .hljs-addition { color: #b5bd68; } /* Blue */ .hljs-title, +.hljs-meta, .hljs-section { color: #81a2be; } /* Purple */ +.hljs-selector-tag, .hljs-keyword, -.hljs-selector-tag { +.hljs-function, +.hljs-class { color: #be94bb; } +/* Purple light */ +.hljs-symbol { + color: #dbc4d9; +} + .hljs { display: block; overflow-x: auto; @@ -72,3 +82,7 @@ .hljs-strong { font-weight: bold; } + + + + From fbfa11c1ca5026e35cf7e566e6240f1410d309f9 Mon Sep 17 00:00:00 2001 From: lioshi Date: Fri, 29 May 2020 00:18:12 +0200 Subject: [PATCH 8/9] Update AUTHORS.txt --- AUTHORS.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AUTHORS.txt b/AUTHORS.txt index 604ca71e2f..131f873ad8 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -287,4 +287,4 @@ Contributors: - Samia Ali - Alexandre Grison - Jim Mason -- Lioshi +- lioshi From e5db4e8dd220d17d05932e33d19533386a0bb980 Mon Sep 17 00:00:00 2001 From: lioshi Date: Fri, 29 May 2020 16:57:09 +0200 Subject: [PATCH 9/9] Update lioshi.css --- src/styles/lioshi.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/lioshi.css b/src/styles/lioshi.css index d41c953d52..594ac21556 100644 --- a/src/styles/lioshi.css +++ b/src/styles/lioshi.css @@ -1,4 +1,4 @@ -/* Lioshi Theme */ +/* lioshi Theme */ /* Original theme - https://github.com/lioshi/vscode-lioshi-theme */ /* Comment */