Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"node_modules/@fontsource/dm-sans/700.css",
"node_modules/@fontsource/dm-sans/700-italic.css",
"node_modules/@fontsource/dm-mono/400.css",
"node_modules/@fontsource/dm-mono/500.css",
"node_modules/@feel/style/main.scss",
"src/styles.scss"
],
Expand Down Expand Up @@ -108,6 +109,7 @@
"node_modules/@fontsource/dm-sans/700.css",
"node_modules/@fontsource/dm-sans/700-italic.css",
"node_modules/@fontsource/dm-mono/400.css",
"node_modules/@fontsource/dm-mono/500.css",
"node_modules/@feel/style/main.scss",
"src/styles.scss"
],
Expand Down
129 changes: 111 additions & 18 deletions src/scss/_kanagawa.scss
Original file line number Diff line number Diff line change
@@ -1,52 +1,52 @@
.comment {
/* Subtle gray for comments */
color: #727169;
color: #5e7e85;
}

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

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

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

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

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

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

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

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

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

.punctuation-delimiter {
Expand All @@ -61,31 +61,124 @@

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

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

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

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

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

.variable-parameter {
/* Soft blue for function parameters */
color: #7e9cd8;
color: #4c8cff;
}

@media (prefers-color-scheme: dark) {
.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: 500;
}

.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;
}
}