astro/docs/public/code.css

99 lines
1.5 KiB
CSS
Raw Normal View History

2021-07-15 18:13:35 +00:00
.language-css > code,
.language-sass > code,
.language-scss > code {
color: #fd9170;
}
[class*="language-"] .namespace {
opacity: 0.7;
}
.token.plain-text,
[class*="language-bash"] span.token,
[class*="language-shell"] span.token {
color: var(--color-gray-200);
2021-07-15 18:13:35 +00:00
}
[class*="language-bash"] span.token,
[class*="language-shell"] span.token {
font-style: bold;
2021-07-15 18:13:35 +00:00
}
.token.prolog,
.token.comment,
[class*="language-bash"] span.token.comment,
[class*="language-shell"] span.token.comment {
color: var(--color-gray-400);
2021-07-15 18:13:35 +00:00
}
.token.selector,
.token.tag,
.token.unit,
.token.url,
.token.variable,
.token.entity,
2021-07-15 18:13:35 +00:00
.token.deleted {
color: #FA5E5B;
}
.token.boolean,
.token.constant,
.token.doctype,
.token.number,
.token.regex,
.token.builtin,
.token.class,
.token.hexcode,
.token.class-name,
.token.attr-name {
color: var(--color-yellow);
2021-07-15 18:13:35 +00:00
}
.token.atrule,
.token.attribute,
.token.attr-value .token.punctuation,
.token.attr-value,
.token.pseudo-class,
.token.pseudo-element,
.token.string {
color: var(--color-green);
2021-07-15 18:13:35 +00:00
}
.token.symbol,
.token.function,
.token.id,
.token.important
{
color: var(--color-blue);
2021-07-15 18:13:35 +00:00
}
.token.important,
2021-07-15 18:13:35 +00:00
.token.id {
font-weight: bold;
2021-07-15 18:13:35 +00:00
}
.token.cdata,
.token.char,
.token.property {
color: #23B1AF;
2021-07-15 18:13:35 +00:00
}
.token.inserted {
color: var(--color-green);
2021-07-15 18:13:35 +00:00
}
.token.keyword {
color: #FF657C;
font-style: italic;
2021-07-15 18:13:35 +00:00
}
.token.operator {
color: var(--color-gray-300);
2021-07-15 18:13:35 +00:00
}
.token.attr-value .token.attr-equals,
2021-07-15 18:13:35 +00:00
.token.punctuation {
color: var(--color-gray-200);
2021-07-15 18:13:35 +00:00
}