Skip to content

Commit

Permalink
kanagawa: updated theme
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelCoding committed Oct 13, 2024
1 parent 8bd2109 commit a409ad2
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 160 deletions.
91 changes: 91 additions & 0 deletions src/scss/_kanagawa.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
.comment {
/* Subtle gray for comments */
color: #727169;
}

.embedded {
/* Warm yellowish tone for embedded code */
color: #dca561;
}

.escape {
/* Reddish for escape characters */
color: #c34043;
}

.function {
/* Soft blue for function names */
color: #7e9cd8;
}

.function-builtin {
/* Orange for built-in functions */
color: #ff9e3b;
}

.keyword {
/* Bright yellow/orange for keywords */
color: #ffa066;
font-weight: bold;
}

.number {
/* Reddish for numbers */
color: #ff5d62;
}

.operator {
/* Pinkish-red for operators */
color: #e46876;
}

.property {
/* Golden yellow for properties */
color: #dca561;
}

.punctuation-bracket {
/* Purplish tone for brackets */
color: #a093c7;
}

.punctuation-delimiter {
/* Neutral beige for punctuation */
color: #c8c093;
}

.punctuation-special {
/* Light ivory for special punctuation */
color: #e2d3ba;
}

.string {
/* Green for strings */
color: #98bb6c;
}

.string-special-path {
/* Orange for special strings (path) */
color: #ffa066;
}

.string-special-uri {
/* Bright orange for URIs */
color: #ff9e3b;
}

.variable {
/* Neutral white for variables */
color: #dca561;
//color: #dcd7ba;
}

.variable-builtin {
/* Bright orange for built-in variables */
color: #ff9e3b;
}

.variable-parameter {
/* Soft blue for function parameters */
color: #7e9cd8;
}
159 changes: 0 additions & 159 deletions src/scss/_pygments.scss

This file was deleted.

2 changes: 1 addition & 1 deletion src/styles.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@import "theme";
@include theme();
@import "scss/pygments";
@import "scss/kanagawa";

* {
box-sizing: border-box;
Expand Down

0 comments on commit a409ad2

Please sign in to comment.