💄 style(code blocks): change syntax highlighting theme & text size (#131)
📝 docs: remove opening and closing +++ in TOML codeblocks
main
parent
22579a5974
commit
d6a5b1ab93
@ -0,0 +1,342 @@
|
||||
/*
|
||||
* based on "Catppuccin Frappe" https://github.com/catppuccin/catppuccin
|
||||
*/
|
||||
|
||||
:root {
|
||||
--rosewater: #f2d5cf;
|
||||
--flamingo: #eebebe;
|
||||
--pink: #f4b8e4;
|
||||
--mauve: #ca9ee6;
|
||||
--red: #e78284;
|
||||
--maroon: #ea999c;
|
||||
--peach: #ef9f76;
|
||||
--yellow: #e5c890;
|
||||
--green: #a6d189;
|
||||
--teal: #81c8be;
|
||||
--sky: #99d1db;
|
||||
--blue: #8caaee;
|
||||
--lavender: #b4befe;
|
||||
--text: #cdd6f4;
|
||||
--overlay0: #737994;
|
||||
}
|
||||
|
||||
.z-code {
|
||||
color: var(--text);
|
||||
background-color: var(--codeblock-bg);
|
||||
}
|
||||
|
||||
.z-comment {
|
||||
color: var(--overlay0);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.z-string {
|
||||
color: var(--green);
|
||||
|
||||
&.z-regexp {
|
||||
color: var(--sky);
|
||||
}
|
||||
}
|
||||
|
||||
.z-constant.z-numeric,
|
||||
.z-string.z-regexp {
|
||||
color: var(--sky);
|
||||
}
|
||||
|
||||
.z-constant {
|
||||
&.z-character.z-escape {
|
||||
color: var(--sky);
|
||||
}
|
||||
|
||||
&.z-language {
|
||||
color: var(--lavender);
|
||||
}
|
||||
}
|
||||
|
||||
.z-support.z-function.z-builtin.z-variable.z-other.z-constant {
|
||||
color: var(--sky);
|
||||
}
|
||||
|
||||
.z-keyword {
|
||||
color: var(--red);
|
||||
|
||||
&.z-control {
|
||||
|
||||
&.z-loop,
|
||||
&.z-conditional,
|
||||
&.z-c + + {
|
||||
color: var(--mauve);
|
||||
}
|
||||
|
||||
&.z-return,
|
||||
&.z-flow.z-return {
|
||||
color: var(--pink);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.z-support.z-type.z-exception {
|
||||
color: var(--sky);
|
||||
}
|
||||
|
||||
.z-keyword.z-operator {
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.z-punctuation {
|
||||
&.z-accessor {
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
&.z-section {
|
||||
color: var(--text);
|
||||
}
|
||||
}
|
||||
|
||||
.z-keyword.z-control.z-import.z-include {
|
||||
color: var(--peach);
|
||||
}
|
||||
|
||||
.z-storage {
|
||||
color: var(--red);
|
||||
|
||||
&.z-type {
|
||||
color: var(--yellow);
|
||||
}
|
||||
|
||||
&.z-modifier {
|
||||
color: var(--red);
|
||||
}
|
||||
}
|
||||
|
||||
.z-entity.z-name.z-namespace,
|
||||
.z-meta.z-path,
|
||||
.z-storage.z-type.z-class {
|
||||
color: var(--rosewater);
|
||||
}
|
||||
|
||||
.z-entity.z-name.z-label {
|
||||
color: var(--blue);
|
||||
}
|
||||
|
||||
.z-keyword.z-declaration.z-class {
|
||||
color: var(--red);
|
||||
}
|
||||
|
||||
.z-entity.z-name.z-class,
|
||||
.z-meta.z-toc-list.z-full-identifier {
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
.z-entity {
|
||||
&.z-other.z-inherited-class {
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
&.z-name.z-function {
|
||||
color: var(--blue);
|
||||
font-style: italic;
|
||||
}
|
||||
}
|
||||
|
||||
.z-variable.z-function {
|
||||
color: var(--blue);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.z-entity.z-name.z-function.z-preprocessor,
|
||||
.z-keyword.z-control.z-import {
|
||||
color: var(--red);
|
||||
}
|
||||
|
||||
.z-entity.z-name.z-function {
|
||||
|
||||
&.z-constructor,
|
||||
&.z-destructor {
|
||||
color: var(--lavender);
|
||||
}
|
||||
}
|
||||
|
||||
.z-variable.z-parameter.z-function {
|
||||
color: var(--rosewater);
|
||||
}
|
||||
|
||||
.z-keyword.z-declaration.z-function {
|
||||
color: var(--maroon);
|
||||
}
|
||||
|
||||
.z-support {
|
||||
&.z-function {
|
||||
color: var(--teal);
|
||||
}
|
||||
|
||||
&.z-constant {
|
||||
color: var(--blue);
|
||||
}
|
||||
|
||||
&.z-type,
|
||||
&.z-class {
|
||||
color: var(--blue);
|
||||
font-style: italic;
|
||||
}
|
||||
}
|
||||
|
||||
.z-variable {
|
||||
&.z-function {
|
||||
color: var(--blue);
|
||||
}
|
||||
|
||||
&.z-parameter {
|
||||
color: var(--rosewater);
|
||||
}
|
||||
|
||||
&.z-other {
|
||||
color: var(--text);
|
||||
|
||||
&.z-member {
|
||||
color: var(--rosewater);
|
||||
}
|
||||
}
|
||||
|
||||
&.z-language {
|
||||
color: var(--peach);
|
||||
}
|
||||
}
|
||||
|
||||
.z-entity {
|
||||
&.z-name.z-tag {
|
||||
color: var(--sky);
|
||||
}
|
||||
|
||||
&.z-other.z-attribute-name {
|
||||
color: var(--mauve);
|
||||
font-style: italic;
|
||||
}
|
||||
}
|
||||
|
||||
.z-punctuation.z-definition.z-tag {
|
||||
color: var(--maroon);
|
||||
}
|
||||
|
||||
.z-markup.z-underline.z-link.z-markdown {
|
||||
color: var(--rosewater);
|
||||
font-style: underline;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.z-comment.z-block.z-markdown,
|
||||
.z-meta.z-code-fence {
|
||||
color: var(--peach);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.z-markup.z-raw {
|
||||
|
||||
&.z-code-fence,
|
||||
&.z-inline {
|
||||
color: var(--peach);
|
||||
font-style: italic;
|
||||
}
|
||||
}
|
||||
|
||||
.z-punctuation.z-definition.z-heading,
|
||||
.z-entity.z-name.z-section {
|
||||
color: var(--blue);
|
||||
}
|
||||
|
||||
.z-markup {
|
||||
&.z-italic {
|
||||
color: var(--maroon);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
&.z-bold {
|
||||
color: var(--maroon);
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
.z-constant.z-character.z-escape,
|
||||
.z-source.z-shell.z-bash .z-meta.z-function.z-shell .z-meta.z-compound.z-shell .z-meta.z-function-call.z-identifier.z-shell {
|
||||
color: var(--pink);
|
||||
}
|
||||
|
||||
.z-variable.z-language.z-shell {
|
||||
color: var(--red);
|
||||
}
|
||||
|
||||
.z-source.z-lua .z-meta.z-function.z-lua .z-meta.z-block.z-lua .z-meta.z-mapping {
|
||||
&.z-value.z-lua .z-meta.z-mapping.z-key.z-lua .z-string.z-unquoted.z-key.z-lua {
|
||||
color: var(--lavender);
|
||||
}
|
||||
|
||||
&.z-key.z-lua .z-string.z-unquoted.z-key.z-lua {
|
||||
color: var(--flamingo);
|
||||
}
|
||||
}
|
||||
|
||||
.z-entity.z-name.z-constant.z-java {
|
||||
color: var(--peach);
|
||||
}
|
||||
|
||||
.z-support {
|
||||
&.z-type.z-property-name.z-css {
|
||||
color: var(--flamingo);
|
||||
}
|
||||
|
||||
&.z-constant.z-property-value.z-css {
|
||||
color: var(--text);
|
||||
}
|
||||
}
|
||||
|
||||
.z-constant.z-numeric.z-suffix.z-css,
|
||||
.z-keyword.z-other.z-unit.z-css,
|
||||
.z-variable.z-other.z-custom-property.z-name.z-css,
|
||||
.z-support.z-type.z-custom-property.z-name.z-css,
|
||||
.z-punctuation.z-definition.z-custom-property.z-css {
|
||||
color: var(--peach);
|
||||
}
|
||||
|
||||
.z-entity.z-name.z-tag.z-css {
|
||||
color: var(--lavender);
|
||||
}
|
||||
|
||||
.z-variable.z-other.z-sass {
|
||||
color: var(--peach);
|
||||
}
|
||||
|
||||
.z-invalid {
|
||||
color: var(--text);
|
||||
background-color: var(--red);
|
||||
|
||||
&.z-deprecated {
|
||||
color: var(--text);
|
||||
background-color: var(--mauve);
|
||||
}
|
||||
}
|
||||
|
||||
.z-meta.z-diff {
|
||||
color: --OVERLAY0;
|
||||
|
||||
&.z-header {
|
||||
color: --OVERLAY0;
|
||||
}
|
||||
}
|
||||
|
||||
.z-markup {
|
||||
&.z-deleted {
|
||||
color: var(--red);
|
||||
}
|
||||
|
||||
&.z-inserted {
|
||||
color: var(--green);
|
||||
}
|
||||
|
||||
&.z-changed {
|
||||
color: var(--yellow);
|
||||
}
|
||||
}
|
||||
|
||||
.z-message.z-error {
|
||||
color: var(--red);
|
||||
}
|
@ -1,481 +0,0 @@
|
||||
.z-code {
|
||||
color: #bfbab0;
|
||||
background-color: #272430;
|
||||
}
|
||||
[data-theme="dark"] .z-code {
|
||||
background-color: #151515;
|
||||
}
|
||||
.z-comment,
|
||||
.z-punctuation.z-definition.z-comment {
|
||||
color: #798491;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-variable {
|
||||
color: #bfbab0;
|
||||
}
|
||||
.z-string,
|
||||
.z-constant.z-other.z-symbol {
|
||||
color: #c2d94c;
|
||||
}
|
||||
.z-constant.z-numeric {
|
||||
color: #f29718;
|
||||
}
|
||||
.z-string.z-regexp,
|
||||
.z-constant.z-character.z-escape {
|
||||
color: #95e6cb;
|
||||
}
|
||||
.z-constant.z-language {
|
||||
color: #f29718;
|
||||
}
|
||||
.z-constant.z-character,
|
||||
.z-constant.z-other {
|
||||
color: #f29718;
|
||||
}
|
||||
.z-variable.z-member {
|
||||
color: #fe7d83;
|
||||
}
|
||||
.z-keyword,
|
||||
.z-keyword.z-operator.z-word {
|
||||
color: #ff813c;
|
||||
}
|
||||
.z-keyword.z-operator {
|
||||
color: #f29668;
|
||||
}
|
||||
.z-punctuation.z-separator,
|
||||
.z-punctuation.z-terminator {
|
||||
color: #bfbab0;
|
||||
}
|
||||
.z-punctuation.z-section {
|
||||
color: #bfbab0;
|
||||
}
|
||||
.z-punctuation.z-accessor {
|
||||
color: #f29668;
|
||||
}
|
||||
.z-punctuation.z-definition.z-annotation {
|
||||
color: #bfbab0;
|
||||
}
|
||||
.z-variable.z-other.z-dollar.z-only.z-js,
|
||||
.z-variable.z-other.z-object.z-dollar.z-only.z-js,
|
||||
.z-variable.z-type.z-dollar.z-only.z-js,
|
||||
.z-support.z-class.z-dollar.z-only.z-js {
|
||||
color: #e6b673;
|
||||
}
|
||||
.z-storage {
|
||||
color: #ff813c;
|
||||
}
|
||||
.z-storage.z-type {
|
||||
color: #ff813c;
|
||||
}
|
||||
.z-entity.z-name.z-function {
|
||||
color: #ffb454;
|
||||
}
|
||||
.z-entity.z-name,
|
||||
.z-entity.z-name.z-tag,
|
||||
.z-entity.z-name.z-label {
|
||||
color: #59c2ff;
|
||||
}
|
||||
.z-entity.z-other.z-inherited-class {
|
||||
color: #59c2ff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.z-variable.z-parameter {
|
||||
color: #f29718;
|
||||
}
|
||||
.z-variable.z-language {
|
||||
color: #39bae6;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-entity.z-name.z-tag,
|
||||
.z-meta.z-tag.z-sgml {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-punctuation.z-definition.z-tag.z-end,
|
||||
.z-punctuation.z-definition.z-tag.z-begin,
|
||||
.z-punctuation.z-definition.z-tag {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-entity.z-other.z-attribute-name {
|
||||
color: #ffb454;
|
||||
}
|
||||
.z-variable.z-function,
|
||||
.z-variable.z-annotation {
|
||||
color: #ffb454;
|
||||
}
|
||||
.z-support.z-function,
|
||||
.z-support.z-macro {
|
||||
color: #fe7d83;
|
||||
}
|
||||
.z-support.z-constant {
|
||||
color: #f29668;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-support.z-type,
|
||||
.z-support.z-class {
|
||||
color: #39bae6;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-invalid {
|
||||
color: #ff7c6d;
|
||||
}
|
||||
.z-invalid.z-deprecated {
|
||||
color: #ffffff;
|
||||
background-color: #ff813c;
|
||||
}
|
||||
.z-meta.z-diff,
|
||||
.z-meta.z-diff.z-header {
|
||||
color: #c594c5;
|
||||
}
|
||||
.z-source.z-ruby .z-variable.z-other.z-readwrite {
|
||||
color: #ffb454;
|
||||
}
|
||||
.z-source.z-css .z-entity.z-name.z-tag,
|
||||
.z-source.z-sass .z-entity.z-name.z-tag,
|
||||
.z-source.z-scss .z-entity.z-name.z-tag,
|
||||
.z-source.z-less .z-entity.z-name.z-tag,
|
||||
.z-source.z-stylus .z-entity.z-name.z-tag {
|
||||
color: #59c2ff;
|
||||
}
|
||||
.z-source.z-css .z-support.z-type,
|
||||
.z-source.z-sass .z-support.z-type,
|
||||
.z-source.z-scss .z-support.z-type,
|
||||
.z-source.z-less .z-support.z-type,
|
||||
.z-source.z-stylus .z-support.z-type {
|
||||
color: #798491;
|
||||
}
|
||||
.z-support.z-type.z-property-name {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-constant.z-numeric.z-line-number.z-find-in-files {
|
||||
color: #798491;
|
||||
}
|
||||
.z-constant.z-numeric.z-line-number.z-match {
|
||||
color: #ff813c;
|
||||
}
|
||||
.z-entity.z-name.z-filename.z-find-in-files {
|
||||
color: #c2d94c;
|
||||
}
|
||||
.z-message.z-error {
|
||||
color: #ff7c6d;
|
||||
}
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-string.z-quoted.z-double.z-json,
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-punctuation.z-definition.z-string {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-string.z-quoted.z-double.z-json,
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-punctuation.z-definition.z-string {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-string.z-quoted.z-double.z-json,
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-punctuation.z-definition.z-string {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-string.z-quoted.z-double.z-json,
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-punctuation.z-definition.z-string {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-string.z-quoted.z-double.z-json,
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-punctuation.z-definition.z-string {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-string.z-quoted.z-double.z-json,
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-punctuation.z-definition.z-string {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-string.z-quoted.z-double.z-json,
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-punctuation.z-definition.z-string {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-string.z-quoted.z-double.z-json,
|
||||
.z-source.z-json
|
||||
.z-meta
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-punctuation.z-definition.z-string {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-source.z-json
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-string.z-quoted.z-double.z-json,
|
||||
.z-source.z-json
|
||||
.z-meta.z-structure.z-dictionary.z-json
|
||||
.z-punctuation.z-definition.z-string {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-markup.z-heading {
|
||||
color: #ff813c;
|
||||
font-weight: bold;
|
||||
}
|
||||
.z-string.z-other.z-link,
|
||||
.z-markup.z-underline.z-link {
|
||||
color: #95e6cb;
|
||||
text-decoration: underline;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-punctuation.z-definition.z-image {
|
||||
color: #ffb454;
|
||||
}
|
||||
.z-markup.z-italic {
|
||||
color: #fe7d83;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-markup.z-bold {
|
||||
color: #fe7d83;
|
||||
font-weight: bold;
|
||||
}
|
||||
.z-markup.z-italic .z-markup.z-bold,
|
||||
.z-markup.z-bold .z-markup.z-italic {
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-markup.z-raw {
|
||||
background-color: #bfbab0;
|
||||
}
|
||||
.z-markup.z-raw.z-inline {
|
||||
background-color: #bfbab0;
|
||||
}
|
||||
.z-meta.z-separator {
|
||||
color: #798491;
|
||||
background-color: #bfbab0;
|
||||
font-weight: bold;
|
||||
}
|
||||
.z-markup.z-quote {
|
||||
color: #f29718;
|
||||
font-style: italic;
|
||||
}
|
||||
.z-markup.z-list.z-numbered.z-bullet,
|
||||
.z-markup.z-list .z-punctuation.z-definition.z-list_item {
|
||||
color: #95e6cb;
|
||||
}
|
||||
.z-markup.z-inserted {
|
||||
color: #c2d94c;
|
||||
}
|
||||
.z-markup.z-changed {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-markup.z-deleted {
|
||||
color: #fe7d83;
|
||||
}
|
||||
.z-markup.z-strike {
|
||||
color: #e6b673;
|
||||
}
|
||||
.z-markup.z-table {
|
||||
color: #39bae6;
|
||||
background-color: #bfbab0;
|
||||
}
|
||||
.z-text.z-html.z-markdown .z-markup.z-raw.z-inline {
|
||||
color: #f29668;
|
||||
}
|
||||
.z-text.z-html.z-markdown .z-meta.z-dummy.z-line-break {
|
||||
color: #798491;
|
||||
}
|
||||
.z-markup.z-raw.z-block.z-fenced.z-markdown {
|
||||
color: #bfbab0;
|
||||
background-color: #bfbab0;
|
||||
}
|
||||
.z-punctuation.z-definition.z-fenced.z-markdown,
|
||||
.z-variable.z-language.z-fenced.z-markdown {
|
||||
color: #798491;
|
||||
background-color: #bfbab0;
|
||||
}
|
||||
.z-variable.z-language.z-fenced.z-markdown {
|
||||
color: #798491;
|
||||
}
|
||||
.z-markup.z-inserted.z-git_gutter {
|
||||
color: #c2d94c;
|
||||
}
|
||||
.z-markup.z-changed.z-git_gutter {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-markup.z-deleted.z-git_gutter {
|
||||
color: #ff7c6d;
|
||||
}
|
||||
.z-markup.z-ignored.z-git_gutter {
|
||||
color: #20272c;
|
||||
}
|
||||
.z-markup.z-untracked.z-git_gutter {
|
||||
color: #20272c;
|
||||
}
|
||||
.z-gutter_color {
|
||||
color: #ffffff;
|
||||
}
|
||||
.z-acejump.z-label.z-blue {
|
||||
color: #ffffff;
|
||||
background-color: #39bae6;
|
||||
}
|
||||
.z-acejump.z-label.z-green {
|
||||
color: #ffffff;
|
||||
background-color: #c2d94c;
|
||||
}
|
||||
.z-acejump.z-label.z-orange {
|
||||
color: #ffffff;
|
||||
background-color: #ff813c;
|
||||
}
|
||||
.z-acejump.z-label.z-purple {
|
||||
color: #ffffff;
|
||||
background-color: #fe7d83;
|
||||
}
|
||||
.z-sublimelinter.z-mark.z-warning {
|
||||
color: #39bae6;
|
||||
}
|
||||
.z-sublimelinter.z-gutter-mark {
|
||||
color: #ffffff;
|
||||
}
|
||||
.z-sublimelinter.z-mark.z-error {
|
||||
color: #ff7c6d;
|
||||
}
|
Loading…
Reference in New Issue