Skip to content

Commit 7ee3b0b

Browse files
committed
Update punctuation colour highlighting
1 parent 711c4a2 commit 7ee3b0b

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

_sass/base/_highlight.scss

+5-1
Original file line numberDiff line numberDiff line change
@@ -195,11 +195,15 @@ table.rouge-table {
195195
.ow{ /* Operator.Word */
196196
color: var(--base0d) }
197197
.p{ /* Punctuation */
198-
color: var(--base08) }
198+
color: var(--base05) }
199+
.pi{ /* Name.Property */
200+
color: var(--base07) }
199201
.py{ /* Name.Property */
200202
color: var(--base0d) }
201203
.s{ /* Literal.String */
202204
color: var(--base0a) }
205+
.sa{ /* Literal.String.raw */
206+
color: var(--base0a) }
203207
.sb{ /* Literal.String.Backtick */
204208
color: var(--base0a) }
205209
.sc{ /* Literal.String.Char */

_sass/base/_variables.scss

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ html, html[data-theme="light"] {
8282
--base02: #314549; // Selection Background
8383
--base03: #546e7a; // Comments, Invisible, Line Highlighting
8484
--base04: #b2ccd6; // Dark Foreground (Used for status bars)
85-
--base05: #eeffff; // Light Foreground (Not often used) - NOT USED
86-
--base06: #eeffff; // Highlight, Light Background (Not often used)
85+
--base05: #eeffff; // Punctuation
86+
--base06: #eeffff; // Highlight, Light Background
8787
--base07: #ffffff; // Default Foreground, Default text color
88-
--base08: #f07178; // Parenthesis, Caret, Delimiters, Operators
88+
--base08: #f07178; // Operators (and Parenthesis, Caret, Delimiters)
8989
--base09: #f78c6c; // Classes, Markup Bold, Search Text Background
9090
--base0a: #ffcb6b; // Strings, Inherited Class, Markup Code, Diff Inserted
9191
--base0b: #98c379; // Functions, Methods, Attribute IDs, Headings

0 commit comments

Comments
 (0)