eolas/.vscode/markdown-styles.css

116 lines
1.3 KiB
CSS
Raw Normal View History

2023-02-21 07:34:13 +00:00
code {
2023-03-06 07:41:40 +00:00
font-family: "Fira Code";
font-size: 14px !important;
2023-02-21 07:34:13 +00:00
}
2023-02-14 15:37:40 +00:00
body {
2023-02-17 18:50:31 +00:00
background: #000e07;
2023-02-14 15:37:40 +00:00
}
2023-02-17 18:50:31 +00:00
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 600;
2023-02-14 15:37:40 +00:00
}
pre {
2023-02-17 18:50:31 +00:00
background: #0f1610 !important;
2023-02-14 15:37:40 +00:00
}
blockquote {
2023-02-17 18:50:31 +00:00
border-left-color: #2f7e25;
border-left-width: 3px;
background: #637d7510;
2023-02-14 15:37:40 +00:00
}
2023-02-26 11:56:30 +00:00
::selection {
background: #1d4125; /* WebKit/Blink Browsers */
}
2023-02-14 15:37:40 +00:00
table {
table-layout: fixed;
width: 100%;
}
th,
td {
background: #637d7510;
padding: 0.5rem;
2023-03-07 07:39:05 +00:00
border: none !important;
2023-02-14 15:37:40 +00:00
}
tbody tr:nth-child(odd) {
background: #637d7510;
}
tbody tr:nth-child(even) {
background: #000e0740;
}
thead {
2023-02-17 18:50:31 +00:00
border-bottom-width: 0 !important;
2023-02-14 15:37:40 +00:00
}
2023-03-07 07:39:05 +00:00
2023-02-14 15:37:40 +00:00
th {
2023-02-17 18:50:31 +00:00
border-bottom: 0px !important;
2023-02-14 15:37:40 +00:00
}
span.hljs-comment {
2023-02-17 18:50:31 +00:00
color: #5a8055ad;
2023-03-07 07:39:05 +00:00
font-style: normal;
2023-02-14 15:37:40 +00:00
}
2023-02-17 18:50:31 +00:00
span.hljs-string,
span.hljs-params {
color: #637d75;
2023-02-14 15:37:40 +00:00
}
2023-02-17 18:50:31 +00:00
span.hljs-built_in,
span.hljs-title.class_,
span.hljs-name {
color: #717f24;
2023-02-14 15:37:40 +00:00
}
span.hljs-keyword {
2023-02-17 18:50:31 +00:00
color: #2f7e25;
2023-02-14 15:37:40 +00:00
}
span.hljs-number {
2023-02-17 18:50:31 +00:00
color: #00e0c4;
2023-02-14 15:37:40 +00:00
}
2023-02-17 18:50:31 +00:00
span.hljs-attr,
span.hljs-subst,
span.hljs-variable {
color: #327f77;
2023-02-14 15:37:40 +00:00
}
span.hljs-variable.language_ {
2023-02-17 18:50:31 +00:00
color: #7f2b27;
2023-02-14 15:37:40 +00:00
}
2023-02-17 18:50:31 +00:00
.code-line code,
.code-line {
color: #637d75 !important;
2023-02-14 15:37:40 +00:00
}
code {
2023-02-17 18:50:31 +00:00
font-size: 15px;
2023-02-14 15:37:40 +00:00
}
span.hljs-property {
2023-02-17 18:50:31 +00:00
color: #2f6a7f;
2023-02-14 15:37:40 +00:00
}
2023-02-17 18:50:31 +00:00
span.hljs-title.function_,
span.hljs-function {
color: #717f24 !important;
2023-02-14 15:37:40 +00:00
}
span.hljs-literal {
2023-02-17 18:50:31 +00:00
color: #18e000;
2023-02-14 15:37:40 +00:00
}