94 lines
1.2 KiB
SCSS
94 lines
1.2 KiB
SCSS
|
/*
|
||
|
Atom One color scheme by Daniel Gamage
|
||
|
Modified to use colors from CSS vars, defined in theme.scss
|
||
|
*/
|
||
|
|
||
|
.highlight {
|
||
|
display: block;
|
||
|
overflow-x: auto;
|
||
|
padding: 0.5em;
|
||
|
color: var(--atom-mono-1);
|
||
|
background: var(--atom-base);
|
||
|
}
|
||
|
|
||
|
.highlight > code {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.hl-cmt,
|
||
|
.hljs-quote {
|
||
|
color: var(--atom-mono-3);
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
.hljs-doctag,
|
||
|
.hl-kw,
|
||
|
.hljs-formula {
|
||
|
color: var(--atom-hue-3);
|
||
|
}
|
||
|
|
||
|
.hljs-section,
|
||
|
.hljs-name,
|
||
|
.hljs-selector-tag,
|
||
|
.hljs-deletion,
|
||
|
.hljs-subst,
|
||
|
.hl-punct-sp,
|
||
|
.hl-tag {
|
||
|
color: var(--atom-hue-5);
|
||
|
}
|
||
|
|
||
|
.hl-emb {
|
||
|
color: var(--atom-mono-1);
|
||
|
}
|
||
|
|
||
|
.hljs-literal,
|
||
|
.hl-attr,
|
||
|
.hl-mod,
|
||
|
.hl-key {
|
||
|
color: var(--atom-hue-1);
|
||
|
}
|
||
|
|
||
|
.hl-str,
|
||
|
.hljs-regexp,
|
||
|
.hljs-addition,
|
||
|
.hljs-meta-string,
|
||
|
.hl-prop {
|
||
|
color: var(--atom-hue-4);
|
||
|
}
|
||
|
|
||
|
.hl-builtin,
|
||
|
.hljs-class .hljs-title {
|
||
|
color: var(--atom-hue-6-2);
|
||
|
}
|
||
|
|
||
|
.hljs-attr,
|
||
|
.hljs-template-variable,
|
||
|
.hl-type,
|
||
|
.hljs-selector-class,
|
||
|
.hljs-selector-attr,
|
||
|
.hljs-selector-pseudo,
|
||
|
.hl-num {
|
||
|
color: var(--atom-hue-6);
|
||
|
}
|
||
|
|
||
|
.hljs-symbol,
|
||
|
.hljs-bullet,
|
||
|
.hljs-link,
|
||
|
.hljs-meta,
|
||
|
.hljs-selector-id,
|
||
|
.hl-fn {
|
||
|
color: var(--atom-hue-2);
|
||
|
}
|
||
|
|
||
|
.hljs-emphasis {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
.hljs-strong {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.hljs-link {
|
||
|
text-decoration: underline;
|
||
|
}
|