chore: match code highlight colors
This commit is contained in:
parent
4c5ee38f9c
commit
d8e019cc95
5 changed files with 98 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "1.1.3",
|
"version": "1.1.4",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
"start": "astro dev",
|
"start": "astro dev",
|
||||||
|
|
|
@ -335,8 +335,6 @@ article {
|
||||||
}
|
}
|
||||||
|
|
||||||
.footnotes {
|
.footnotes {
|
||||||
border-top: var(--border-gray);
|
|
||||||
|
|
||||||
& ol li p {
|
& ol li p {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,9 @@
|
||||||
@import url("./pages/watching.css") layer(page);
|
@import url("./pages/watching.css") layer(page);
|
||||||
@import url("./pages/webrings.css") layer(page);
|
@import url("./pages/webrings.css") layer(page);
|
||||||
|
|
||||||
|
/* plugins */
|
||||||
|
@import url("./plugins/highlight.css") layer(plugins);
|
||||||
|
|
||||||
/* component styles */
|
/* component styles */
|
||||||
@import url("./components/addon-links.css") layer(components);
|
@import url("./components/addon-links.css") layer(components);
|
||||||
@import url("./components/banners.css") layer(components);
|
@import url("./components/banners.css") layer(components);
|
||||||
|
|
94
src/styles/plugins/highlight.css
Normal file
94
src/styles/plugins/highlight.css
Normal file
|
@ -0,0 +1,94 @@
|
||||||
|
code,
|
||||||
|
pre {
|
||||||
|
color: var(--color-lightest);
|
||||||
|
background: var(--color-darkest);
|
||||||
|
border-radius: var(--border-radius-slight);
|
||||||
|
font-family: var(--font-mono);
|
||||||
|
line-height: var(--line-height-md);
|
||||||
|
padding: var(--spacing-lg);
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
border: var(--border-gray);
|
||||||
|
}
|
||||||
|
|
||||||
|
pre code {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
:not(pre) > code {
|
||||||
|
padding: var(--spacing-xs);
|
||||||
|
background: var(--color-darkest);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-comment {
|
||||||
|
color: #dfe3e8;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-keyword,
|
||||||
|
.hljs-selector-tag,
|
||||||
|
.hljs-name {
|
||||||
|
color: #6b9eff;
|
||||||
|
font-weight: var(--font-weight-bold);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-string,
|
||||||
|
.hljs-attribute,
|
||||||
|
.hljs-literal,
|
||||||
|
.hljs-addition {
|
||||||
|
color: #6fff6f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-number,
|
||||||
|
.hljs-operator,
|
||||||
|
.hljs-variable {
|
||||||
|
color: #6b9eff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-function .hljs-title,
|
||||||
|
.hljs-title,
|
||||||
|
.hljs-class .hljs-title {
|
||||||
|
color: #00ffff;
|
||||||
|
font-weight: var(--font-weight-bold);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-attr,
|
||||||
|
.hljs-attr-value {
|
||||||
|
color: #ffb3ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-selector-attr,
|
||||||
|
.hljs-selector-pseudo {
|
||||||
|
color: #a2c4ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-meta,
|
||||||
|
.hljs-meta-string {
|
||||||
|
color: #ffbf66;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-built_in,
|
||||||
|
.hljs-builtin-name {
|
||||||
|
color: #ff967d;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-link {
|
||||||
|
color: #e2b8ff;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-deletion {
|
||||||
|
color: #ff8b8b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-strong {
|
||||||
|
font-weight: var(--font-weight-bold);
|
||||||
|
color: #ff7373;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-emphasis {
|
||||||
|
font-style: italic;
|
||||||
|
color: #ff8f66;
|
||||||
|
}
|
|
@ -4,7 +4,6 @@ import markdownIt from "markdown-it";
|
||||||
import markdownItAnchor from "markdown-it-anchor";
|
import markdownItAnchor from "markdown-it-anchor";
|
||||||
import markdownItFootnote from "markdown-it-footnote";
|
import markdownItFootnote from "markdown-it-footnote";
|
||||||
import hljs from "highlight.js";
|
import hljs from "highlight.js";
|
||||||
import "highlight.js/styles/github-dark.min.css";
|
|
||||||
import truncateHtml from "truncate-html";
|
import truncateHtml from "truncate-html";
|
||||||
|
|
||||||
// arrays
|
// arrays
|
||||||
|
|
Reference in a new issue