Initial Commit
This commit is contained in:
commit
20047e89ae
29 changed files with 25100 additions and 0 deletions
7
.about.md
Normal file
7
.about.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# Gulmwiki
|
||||||
|
|
||||||
|
A small markdown Wiki hosted by some nerds that mainly do code documentation here.
|
||||||
|
|
||||||
|
[Wuffel](https://i21k.de)
|
||||||
|
[The Wobbler](https://emil.i21k.de/)
|
||||||
|
|
7
.obsidian/appearance.json
vendored
Executable file
7
.obsidian/appearance.json
vendored
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"theme": "obsidian",
|
||||||
|
"translucency": false,
|
||||||
|
"baseFontSize": 24,
|
||||||
|
"accentColor": "",
|
||||||
|
"cssTheme": "Clair de Lune"
|
||||||
|
}
|
6
.obsidian/themes/Atom/manifest.json
vendored
Executable file
6
.obsidian/themes/Atom/manifest.json
vendored
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"name": "Atom",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"minAppVersion": "0.16.0",
|
||||||
|
"author": "kognise"
|
||||||
|
}
|
339
.obsidian/themes/Atom/theme.css
vendored
Executable file
339
.obsidian/themes/Atom/theme.css
vendored
Executable file
|
@ -0,0 +1,339 @@
|
||||||
|
/* Base colors - TODO: are grey 1 and grey 2 used? */
|
||||||
|
.theme-dark {
|
||||||
|
--accent-h: 219;
|
||||||
|
--accent-s: 56%;
|
||||||
|
--accent-l: 55%;
|
||||||
|
|
||||||
|
--background-primary: #272b34;
|
||||||
|
--background-primary-alt: #20242b;
|
||||||
|
--background-secondary: #20242b;
|
||||||
|
--background-secondary-alt: #1a1e24;
|
||||||
|
--background-accent: #000;
|
||||||
|
--background-modifier-border: #424958;
|
||||||
|
--background-modifier-form-field: rgba(0, 0, 0, 0.3);
|
||||||
|
--background-modifier-form-field-highlighted: rgba(0, 0, 0, 0.22);
|
||||||
|
--background-modifier-box-shadow: rgba(0, 0, 0, 0.3);
|
||||||
|
--background-modifier-success: #539126;
|
||||||
|
--background-modifier-error: #3d0000;
|
||||||
|
--background-modifier-error-rgb: 61, 0, 0;
|
||||||
|
--background-modifier-error-hover: #470000;
|
||||||
|
--background-modifier-cover: rgba(0, 0, 0, 0.6);
|
||||||
|
--text-accent: #61afef;
|
||||||
|
--text-accent-hover: #70bdfc;
|
||||||
|
--text-normal: #dcddde;
|
||||||
|
--text-muted: #888;
|
||||||
|
--text-faint: rgb(81, 86, 99);
|
||||||
|
--text-error: #e16d76;
|
||||||
|
--text-error-hover: #c9626a;
|
||||||
|
--text-highlight-bg: rgba(255, 255, 0, 0.4);
|
||||||
|
--text-selection: rgba(0, 122, 255, 0.2);
|
||||||
|
--text-on-accent: #dcddde;
|
||||||
|
--interactive-normal: #20242b;
|
||||||
|
--interactive-hover: #353b47;
|
||||||
|
--interactive-accent-hover: hsl(var(--accent-h), calc(var(--accent-s) + 5%), calc(var(--accent-l) - 10%));
|
||||||
|
--scrollbar-active-thumb-bg: rgba(255, 255, 255, 0.2);
|
||||||
|
--scrollbar-bg: rgba(255, 255, 255, 0.05);
|
||||||
|
--scrollbar-thumb-bg: rgba(255, 255, 255, 0.1);
|
||||||
|
--panel-border-color: #18191e;
|
||||||
|
--gray-1: #5C6370;
|
||||||
|
--gray-2: #abb2bf;
|
||||||
|
--red: #e06c75;
|
||||||
|
--orange: #d19a66;
|
||||||
|
--green: #98c379;
|
||||||
|
--aqua: #56b6c2;
|
||||||
|
--purple: #c678dd;
|
||||||
|
--blue: #61afef;
|
||||||
|
--yellow: #e5c07b;
|
||||||
|
|
||||||
|
--background-modifier-hover: hsla(var(--accent-h), calc(var(--accent-s) - 35%), var(--accent-l), 0.06);
|
||||||
|
--divider-color-hover: #404754;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-light {
|
||||||
|
--accent-h: 230;
|
||||||
|
--accent-s: 83%;
|
||||||
|
--accent-l: 64%;
|
||||||
|
|
||||||
|
--background-primary: #fafafa;
|
||||||
|
--background-primary-alt: #eaeaeb;
|
||||||
|
--background-secondary: #eaeaeb;
|
||||||
|
--background-secondary-alt: #dbdbdc;
|
||||||
|
--background-accent: #fff;
|
||||||
|
--background-modifier-border: #dbdbdc;
|
||||||
|
--background-modifier-form-field: #fff;
|
||||||
|
--background-modifier-form-field-highlighted: #fff;
|
||||||
|
--background-modifier-box-shadow: rgba(0, 0, 0, 0.1);
|
||||||
|
--background-modifier-success: #A4E7C3;
|
||||||
|
--background-modifier-error: #e68787;
|
||||||
|
--background-modifier-error-rgb: 230, 135, 135;
|
||||||
|
--background-modifier-error-hover: #FF9494;
|
||||||
|
--background-modifier-cover: rgba(0, 0, 0, 0.8);
|
||||||
|
--text-accent: #1592ff;
|
||||||
|
--text-accent-hover: #097add;
|
||||||
|
--text-normal: #383a42;
|
||||||
|
--text-muted: #8e8e90;
|
||||||
|
--text-faint: #999999;
|
||||||
|
--text-error: #e75545;
|
||||||
|
--text-error-hover: #f86959;
|
||||||
|
--text-highlight-bg: rgba(255, 255, 0, 0.4);
|
||||||
|
--text-selection: rgba(0, 122, 255, 0.15);
|
||||||
|
--text-on-accent: #f2f2f2;
|
||||||
|
--interactive-normal: #eaeaeb;
|
||||||
|
--interactive-hover: #dbdbdc;
|
||||||
|
--interactive-accent-rgb: 21, 146, 255;
|
||||||
|
--interactive-accent-hover: hsl(var(--accent-h), calc(var(--accent-s) - 10%), calc(var(--accent-l) - 4%));
|
||||||
|
--scrollbar-active-thumb-bg: rgba(0, 0, 0, 0.2);
|
||||||
|
--scrollbar-bg: rgba(0, 0, 0, 0.05);
|
||||||
|
--scrollbar-thumb-bg: rgba(0, 0, 0, 0.1);
|
||||||
|
--panel-border-color: #dbdbdc;
|
||||||
|
--gray-1: #383a42;
|
||||||
|
--gray-2: #383a42;
|
||||||
|
--red: #e75545;
|
||||||
|
--green: #4ea24c;
|
||||||
|
--blue: #3d74f6;
|
||||||
|
--purple: #a625a4;
|
||||||
|
--aqua: #0084bc;
|
||||||
|
--yellow: #e35649;
|
||||||
|
--orange: #986800;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-dark, .theme-light {
|
||||||
|
--ribbon-background: var(--background-primary);
|
||||||
|
--drag-ghost-background: var(--background-secondary-alt);
|
||||||
|
--background-modifier-message: var(--background-secondary-alt);
|
||||||
|
|
||||||
|
--tab-outline-color: transparent;
|
||||||
|
--divider-color: transparent;
|
||||||
|
|
||||||
|
--prompt-border-color: var(--panel-border-color);
|
||||||
|
--modal-border-color: var(--panel-border-color);
|
||||||
|
|
||||||
|
--background-modifier-border-hover: var(--interactive-hover);
|
||||||
|
--background-modifier-border-focus: var(--interactive-hover);
|
||||||
|
|
||||||
|
--checkbox-color: var(--text-accent);
|
||||||
|
--checkbox-color-hover: var(--text-accent-hover);
|
||||||
|
|
||||||
|
--nav-item-background-active: var(--interactive-accent);
|
||||||
|
--nav-item-color-active: #ffffff;
|
||||||
|
|
||||||
|
--tag-color: var(--yellow);
|
||||||
|
--tag-background: var(--background-primary-alt);
|
||||||
|
--tag-color-hover: var(--yellow);
|
||||||
|
--tag-background-hover: var(--background-primary-alt);
|
||||||
|
--tag-padding-x: 4px;
|
||||||
|
--tag-padding-y: 2px;
|
||||||
|
--tag-radius: 4px;
|
||||||
|
|
||||||
|
--inline-title-weight: var(--bold-weight);
|
||||||
|
--link-decoration: none;
|
||||||
|
--link-external-decoration: none;
|
||||||
|
--embed-padding: 0 0 0 var(--size-4-4);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Search */
|
||||||
|
.search-result .search-result-file-title {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-result .collapse-icon {
|
||||||
|
cursor: var(--cursor);
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-result:not(.is-collapsed) .search-result-file-title {
|
||||||
|
color: var(--blue);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* File tab separators */
|
||||||
|
.workspace .mod-root .workspace-tab-header-inner::after {
|
||||||
|
right: unset;
|
||||||
|
left: -0.5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspace .mod-root .workspace-tab-header:last-child .workspace-tab-header-inner::before {
|
||||||
|
position: absolute;
|
||||||
|
right: -0.5px;
|
||||||
|
width: 1px;
|
||||||
|
background-color: var(--tab-divider-color);
|
||||||
|
content: '';
|
||||||
|
height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspace .mod-root .workspace-tab-header.is-active .workspace-tab-header-inner::after,
|
||||||
|
.workspace .mod-root .workspace-tab-header.is-active .workspace-tab-header-inner::before,
|
||||||
|
.workspace .mod-root .workspace-tab-header:first-child .workspace-tab-header-inner::after,
|
||||||
|
.workspace .mod-root .workspace-tab-header.is-active + .workspace-tab-header .workspace-tab-header-inner::after {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Editor and output */
|
||||||
|
.markdown-rendered blockquote {
|
||||||
|
padding: var(--embed-padding);
|
||||||
|
}
|
||||||
|
|
||||||
|
mjx-container {
|
||||||
|
text-align: left !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.math-block {
|
||||||
|
font-size: 1.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-light :not(pre)>code,
|
||||||
|
.theme-light pre {
|
||||||
|
background: var(--background-primary);
|
||||||
|
box-shadow: inset 0 0 0 1px var(--background-primary-alt);
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-preview-section > div h1,
|
||||||
|
.markdown-preview-section > div h2,
|
||||||
|
.markdown-preview-section > div h3,
|
||||||
|
.markdown-preview-section > div h4,
|
||||||
|
.markdown-preview-section > div h5,
|
||||||
|
.markdown-preview-section > div h6 {
|
||||||
|
margin-top: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mod-header + div h1,
|
||||||
|
.mod-header + div h2,
|
||||||
|
.mod-header + div h3,
|
||||||
|
.mod-header + div h4,
|
||||||
|
.mod-header + div h5,
|
||||||
|
.mod-header + div h6 {
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-sizer > .inline-title {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Miscellaneous */
|
||||||
|
.theme-dark .dropdown:hover {
|
||||||
|
background-color: var(--background-modifier-form-field);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip {
|
||||||
|
color: var(--text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-file, .nav-folder {
|
||||||
|
padding: 1px 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body:not(.is-grabbing) .nav-file-title.is-being-dragged,
|
||||||
|
body:not(.is-grabbing) .nav-folder-title.is-being-dragged,
|
||||||
|
.nav-file-title.is-being-dragged,
|
||||||
|
.nav-folder-title.is-being-dragged {
|
||||||
|
background-color: var(--background-primary-alt);
|
||||||
|
color: var(--nav-item-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-header-title {
|
||||||
|
text-decoration: underline;
|
||||||
|
text-decoration-color: var(--text-muted);
|
||||||
|
text-underline-offset: 1.5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status-bar {
|
||||||
|
border-color: var(--panel-border-color);
|
||||||
|
border-width: 1px;
|
||||||
|
padding: 4px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-dark button.mod-warning {
|
||||||
|
--background-modifier-error: #d42020;
|
||||||
|
--background-modifier-error-hover: #b01515;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-light button.mod-warning {
|
||||||
|
--background-modifier-error: #f23f3f;
|
||||||
|
--background-modifier-error-hover: #d72020;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Code syntax highlighting */
|
||||||
|
code[class*='language-'], pre[class*='language-'] {
|
||||||
|
text-align: left !important;
|
||||||
|
white-space: pre !important;
|
||||||
|
word-spacing: normal !important;
|
||||||
|
word-break: normal !important;
|
||||||
|
word-wrap: normal !important;
|
||||||
|
line-height: 1.5 !important;
|
||||||
|
tab-size: 4 !important;
|
||||||
|
hyphens: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre[class*='language-'] {
|
||||||
|
/* Code blocks */
|
||||||
|
padding: 1em !important;
|
||||||
|
margin: .5em 0 !important;
|
||||||
|
overflow: auto !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
:not(pre)>code[class*='language-'] {
|
||||||
|
/* Inline code */
|
||||||
|
padding: .1em !important;
|
||||||
|
border-radius: .3em !important;
|
||||||
|
white-space: normal !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.comment, .token.prolog, .token.doctype, .token.cdata,
|
||||||
|
.HyperMD-codeblock .cm-comment {
|
||||||
|
color: var(--gray-1) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.punctuation,
|
||||||
|
.HyperMD-codeblock .cm-hmd-codeblock, .HyperMD-codeblock .cm-bracket {
|
||||||
|
color: var(--gray-2) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.selector, .token.tag,
|
||||||
|
.HyperMD-codeblock .cm-tag, .HyperMD-codeblock .cm-property, .HyperMD-codeblock .cm-meta, .HyperMD-codeblock .cm-qualifier, .HyperMD-codeblock .cm-header, .HyperMD-codeblock .cm-quote, .HyperMD-codeblock .cm-hr, .HyperMD-codeblock .cm-link {
|
||||||
|
color: var(--red) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.property, .token.boolean, .token.number, .token.constant, .token.symbol, .token.attr-name, .token.deleted,
|
||||||
|
.HyperMD-codeblock .cm-number, .HyperMD-codeblock .cm-atom, .HyperMD-codeblock .cm-attribute {
|
||||||
|
color: var(--orange) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.string, .token.char, .token.attr-value, .token.builtin, .token.inserted,
|
||||||
|
.HyperMD-codeblock .cm-string, .HyperMD-codeblock .cm-builtin {
|
||||||
|
color: var(--green) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string,
|
||||||
|
.HyperMD-codeblock .cm-string-2, .HyperMD-codeblock .cm-operator {
|
||||||
|
color: var(--aqua) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.atrule, .token.keyword,
|
||||||
|
.HyperMD-codeblock .cm-keyword {
|
||||||
|
color: var(--purple) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.function, .token.macro.property,
|
||||||
|
.HyperMD-codeblock .cm-def, .HyperMD-codeblock .cm-variable {
|
||||||
|
color: var(--blue) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.class-name,
|
||||||
|
.HyperMD-codeblock .cm-variable-2, .HyperMD-codeblock .cm-variable-3 {
|
||||||
|
color: var(--yellow) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.regex, .token.important, .token.variable {
|
||||||
|
color: var(--purple) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.important, .token.bold {
|
||||||
|
font-weight: bold !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.italic {
|
||||||
|
font-style: italic !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.entity {
|
||||||
|
cursor: help !important;
|
||||||
|
}
|
6
.obsidian/themes/Clair de Lune/manifest.json
vendored
Executable file
6
.obsidian/themes/Clair de Lune/manifest.json
vendored
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"name": "Clair de Lune",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"minAppVersion": "0.16.0",
|
||||||
|
"author": "Jamie Brynes"
|
||||||
|
}
|
1231
.obsidian/themes/Clair de Lune/theme.css
vendored
Executable file
1231
.obsidian/themes/Clair de Lune/theme.css
vendored
Executable file
File diff suppressed because it is too large
Load diff
8
.obsidian/themes/Cyber Glow/manifest.json
vendored
Executable file
8
.obsidian/themes/Cyber Glow/manifest.json
vendored
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"name": "Cyber Glow",
|
||||||
|
"version": "8.2.3",
|
||||||
|
"minAppVersion": "1.3.0",
|
||||||
|
"author": "TheEmperorArt",
|
||||||
|
"authorUrl": "https://github.com/ArtexJay/Obsidian-CyberGlow"
|
||||||
|
}
|
||||||
|
|
4170
.obsidian/themes/Cyber Glow/theme.css
vendored
Executable file
4170
.obsidian/themes/Cyber Glow/theme.css
vendored
Executable file
File diff suppressed because one or more lines are too long
6
.obsidian/themes/Everforest/manifest.json
vendored
Executable file
6
.obsidian/themes/Everforest/manifest.json
vendored
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"name": "Everforest",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"minAppVersion": "0.16.0",
|
||||||
|
"author": "MrGlitchByte"
|
||||||
|
}
|
675
.obsidian/themes/Everforest/theme.css
vendored
Executable file
675
.obsidian/themes/Everforest/theme.css
vendored
Executable file
|
@ -0,0 +1,675 @@
|
||||||
|
/***** TABLE OF CONTENTS *****/
|
||||||
|
/* TODO: Reformat entire CSS file as below.
|
||||||
|
/* 1. Font
|
||||||
|
/* 2. Colours
|
||||||
|
/* 2.1. Dark theme color variables
|
||||||
|
/* 2.2. Light theme color variables
|
||||||
|
/* 2.3. Dark theme implementation
|
||||||
|
/* 2.4. Light theme implementation
|
||||||
|
/* 3. General UI
|
||||||
|
/* 3.1. Title Bar
|
||||||
|
/* 4. Markdown (editor / preview)
|
||||||
|
/* 4.1. Headings
|
||||||
|
/* 4.1.1. Fix font weights
|
||||||
|
/* 4.2. Links
|
||||||
|
/* 4.2.1. Nifty arrow before internal links (also applies to embeds)
|
||||||
|
/* 4.3. Embeds
|
||||||
|
/* 4.4. Tables
|
||||||
|
/* 4.5. Popovers
|
||||||
|
/* 4.6. Task Lists
|
||||||
|
/* 4.7. Blockquotes
|
||||||
|
/* 4.8. Code
|
||||||
|
/* 4.9. Bulleted lists
|
||||||
|
/* 4.10. Misc Fixes
|
||||||
|
/* 5. Graph view colours
|
||||||
|
/* 6. Notion Colour Blocks
|
||||||
|
/* 7. In-document header (scrolls with the document) [remove for compatibility with Andy's mode]
|
||||||
|
/* 7.1. Adjustments for non-in-document headers (graphs, etc)\
|
||||||
|
/* 7.2. Active pane border
|
||||||
|
/* 7.3. Misc fixes
|
||||||
|
/* 8. Tags
|
||||||
|
/* 8.1. Tag custom colours
|
||||||
|
/***** *****/
|
||||||
|
|
||||||
|
/* 1. Font */
|
||||||
|
body {
|
||||||
|
/* font stacks taken directly from Notion */
|
||||||
|
--font-monospace: "Hack Nerd Font", "Source Code Pro", monospace;
|
||||||
|
-webkit-font-smoothing: auto;
|
||||||
|
--h1-color: var(--text-title-h1);
|
||||||
|
--h2-color: var(--text-title-h2);
|
||||||
|
--h3-color: var(--text-title-h3);
|
||||||
|
--h4-color: var(--text-title-h4);
|
||||||
|
--h5-color: var(--text-title-h5);
|
||||||
|
--h6-color: var(--text-title-h6);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 2. Colours */
|
||||||
|
:root
|
||||||
|
{
|
||||||
|
/* 2.1 Dark theme color variables */
|
||||||
|
--bg0-dark: #22282c;
|
||||||
|
--bg1-dark: #272f34;
|
||||||
|
--bg-dark: #2f383e;
|
||||||
|
--bg2-dark: #374247;
|
||||||
|
--bg3-dark: #404c51;
|
||||||
|
--bg4-dark: #4a555b;
|
||||||
|
--bg5-dark: #525c62;
|
||||||
|
--bg_visual: #503946;
|
||||||
|
--bg_red: #4e3e43;
|
||||||
|
--bg_green: #404d44;
|
||||||
|
--bg_blue: #394f5a;
|
||||||
|
--bg_yellow: #4a4940;
|
||||||
|
--shadow: #00000070;
|
||||||
|
|
||||||
|
--fg-dark: #d3c6aa;
|
||||||
|
--grey0-dark: #7f897d;
|
||||||
|
--grey1-dark: #859289;
|
||||||
|
--grey2-dark: #9aa79d;
|
||||||
|
|
||||||
|
--faded-red: #e67e80;
|
||||||
|
--faded-orange: #e69875;
|
||||||
|
--faded-yellow: #dbbc7f;
|
||||||
|
--faded-green: #a7c080;
|
||||||
|
--faded-aqua: #83c092;
|
||||||
|
--faded-blue: #7fbbb3;
|
||||||
|
--faded-purple: #d699b6;
|
||||||
|
|
||||||
|
--dim-red: #da6362;
|
||||||
|
--dim-orange: #d77f48;
|
||||||
|
--dim-yellow: #bf983d;
|
||||||
|
--dim-green: #899c40;
|
||||||
|
--dim-aqua: #569d79;
|
||||||
|
--dim-blue: #5a93a2;
|
||||||
|
--dim-purple: #b87b9d;
|
||||||
|
|
||||||
|
|
||||||
|
/* 2.2 Light theme color variables */
|
||||||
|
--bg0-light: #f0edd8;
|
||||||
|
--bg1-light: #f6f1dd;
|
||||||
|
--bg-light: #fdf6e3;
|
||||||
|
--bg2-light: #f3efda;
|
||||||
|
--bg3-light: #edead5;
|
||||||
|
--bg4-light: #e4e1cd;
|
||||||
|
--bg5-light: #dfdbc8;
|
||||||
|
--grey0-light: #a4ad9e;
|
||||||
|
--grey1-light: #939f91;
|
||||||
|
--grey2-light: #879686;
|
||||||
|
--shadow-light: #3c474d20;
|
||||||
|
|
||||||
|
|
||||||
|
--bg_visual_light: #eaedc8;
|
||||||
|
--bg_red_light: #fbe3da;
|
||||||
|
--bg_green_light: #f0f1d2;
|
||||||
|
--bg_blue_light: #e9f0e9;
|
||||||
|
--bg_yellow_light: #faedcd;
|
||||||
|
|
||||||
|
--fg-light: #5c6a72;
|
||||||
|
|
||||||
|
--light-red: #f85552;
|
||||||
|
--light-orange: #f57d26;
|
||||||
|
--light-yellow: #bf983d;
|
||||||
|
--light-green: #899c40;
|
||||||
|
--light-aqua: #569d79;
|
||||||
|
--light-blue: #5a93a2;
|
||||||
|
--light-purple: #b87b9d;
|
||||||
|
|
||||||
|
--light-dim-red: #f1706f;
|
||||||
|
--light-dim-orange: #f39459;
|
||||||
|
--light-dim-yellow: #e4b649;
|
||||||
|
--light-dim-green: #a4bb4a;
|
||||||
|
--light-dim-aqua: #6ec398;
|
||||||
|
--light-dim-blue: #6cb3c6;
|
||||||
|
--light-dim-purple: #e092be;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 2.3 Dark theme implementation */
|
||||||
|
.theme-dark
|
||||||
|
{
|
||||||
|
--background-primary: var(--bg-dark);
|
||||||
|
--background-primary-alt: var(--bg-dark);
|
||||||
|
--background-secondary: var(--bg-dark);
|
||||||
|
--background-secondary-alt: var(--bg-dark);
|
||||||
|
--text-normal: var(--fg-dark);
|
||||||
|
--text-faint: var(--grey1-dark);
|
||||||
|
--text-title-h1: var(--dim-red);
|
||||||
|
--text-title-h2: var(--dim-orange);
|
||||||
|
--text-title-h3: var(--dim-yellow);
|
||||||
|
--text-title-h4: var(--dim-green);
|
||||||
|
--text-title-h5: var(--dim-aqua);
|
||||||
|
--text-title-h6: var(--dim-purple);
|
||||||
|
--text-link: var(--faded-blue);
|
||||||
|
--text-a: var(--dim-aqua);
|
||||||
|
--text-a-hover: var(--faded-aqua);
|
||||||
|
--text-mark: rgba(215, 153, 33, 0.4); /* light-yellow */
|
||||||
|
--pre-code: var(--bg1-dark);
|
||||||
|
--text-highlight-bg: var(--bg_green);
|
||||||
|
--interactive-accent: var(--dim-aqua);
|
||||||
|
--interactive-before: var(--bg5-dark);
|
||||||
|
--background-modifier-border: var(--bg5-dark);
|
||||||
|
--text-accent: var(--dim-blue);
|
||||||
|
--interactive-accent-rgb: var(--dim-blue);
|
||||||
|
--inline-code: var(--dim-blue);
|
||||||
|
--code-block: var(--fg-dark);
|
||||||
|
--vim-cursor: var(--faded-blue);
|
||||||
|
--text-selection: var(--bg5-dark);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 2.4 Light theme implementation */
|
||||||
|
.theme-light
|
||||||
|
{
|
||||||
|
--background-primary: var(--bg-light);
|
||||||
|
--background-primary-alt: var(--bg-light);
|
||||||
|
--background-secondary: var(--bg-light);
|
||||||
|
--background-secondary-alt: var(--bg-light);
|
||||||
|
--text-normal: var(--fg-light);
|
||||||
|
--text-faint: var(--grey1-light);
|
||||||
|
--text-title-h1: var(--light-red);
|
||||||
|
--text-title-h2: var(--light-orange);
|
||||||
|
--text-title-h3: var(--light-yellow);
|
||||||
|
--text-title-h4: var(--light-green);
|
||||||
|
--text-title-h5: var(--light-aqua);
|
||||||
|
--text-title-h6: var(--light-purple);
|
||||||
|
--text-link: var(--light-blue);
|
||||||
|
--text-a: var(--light-dim-blue);
|
||||||
|
--text-a-hover: var(--light-blue);
|
||||||
|
--text-mark: rgba(215, 153, 33, 0.4); /* light-yellow */
|
||||||
|
--pre-code: var(--bg1-light);
|
||||||
|
--text-highlight-bg: var(--light-dim-green);
|
||||||
|
--interactive-accent: var(--bg5-light);
|
||||||
|
--interactive-before: var(--bg5-light);
|
||||||
|
--background-modifier-border: var(--bg5-light);
|
||||||
|
--text-accent: var(--light-dim-green);
|
||||||
|
--interactive-accent-rgb: var(--light-dim-green);
|
||||||
|
--inline-code: var(--light-blue);
|
||||||
|
--code-block: var(--fg-light);
|
||||||
|
--vim-cursor: var(--light-blue);
|
||||||
|
--text-selection: rgba(189, 174, 147, 0.5); /* light3 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-dark code[class*="language-"],
|
||||||
|
.theme-dark pre[class*="language-"],
|
||||||
|
.theme-light code[class*="language-"],
|
||||||
|
.theme-light pre[class*="language-"]
|
||||||
|
{
|
||||||
|
text-shadow: none ;
|
||||||
|
background-color: var(--pre-code) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 3. General UI */
|
||||||
|
.view-header-title {
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 3.1. Title bar */
|
||||||
|
.titlebar {
|
||||||
|
background-color: var(--background-secondary-alt);
|
||||||
|
}
|
||||||
|
|
||||||
|
.titlebar-inner {
|
||||||
|
color: var(--text-normal);
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-view.color-circle,
|
||||||
|
.graph-view.color-fill-highlight,
|
||||||
|
.graph-view.color-line-highlight
|
||||||
|
{
|
||||||
|
color: var(--interactive-accent-rgb) ;
|
||||||
|
}
|
||||||
|
.graph-view.color-text
|
||||||
|
{
|
||||||
|
color: var(--text-a-hover) ;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
.graph-view.color-fill
|
||||||
|
{
|
||||||
|
color: var(--background-secondary);
|
||||||
|
}
|
||||||
|
.graph-view.color-line
|
||||||
|
{
|
||||||
|
color: var(--background-modifier-border);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
html,
|
||||||
|
body
|
||||||
|
{
|
||||||
|
font-size: 16px ;
|
||||||
|
}
|
||||||
|
|
||||||
|
strong
|
||||||
|
{
|
||||||
|
font-weight: 600 ;
|
||||||
|
}
|
||||||
|
|
||||||
|
a,
|
||||||
|
.cm-hmd-internal-link
|
||||||
|
{
|
||||||
|
color: var(--text-a) ;
|
||||||
|
text-decoration: none ;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover,
|
||||||
|
.cm-hmd-internal-link:hover,
|
||||||
|
.cm-url
|
||||||
|
{
|
||||||
|
color: var(--text-a-hover) ;
|
||||||
|
text-decoration: none ;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------
|
||||||
|
TAGS
|
||||||
|
----------------------------------------------------------------*/
|
||||||
|
|
||||||
|
.token.tag {
|
||||||
|
padding: 0px 0px;
|
||||||
|
background-color: transparent;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.token.tag:hover {
|
||||||
|
background: transparent;
|
||||||
|
color: var(--text-a-hover) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------
|
||||||
|
TAG PILLS
|
||||||
|
----------------------------------------------------------------*/
|
||||||
|
.markdown-preview-section h1 a.tag,
|
||||||
|
.markdown-preview-section h2 a.tag,
|
||||||
|
.markdown-preview-section h3 a.tag,
|
||||||
|
.markdown-preview-section h4 a.tag,
|
||||||
|
.markdown-preview-section h5 a.tag,
|
||||||
|
.markdown-preview-section h4 a.tag {
|
||||||
|
font-weight: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag {
|
||||||
|
background-color: var(--tag-base);
|
||||||
|
border: 1px solid var(--interactive-accent);
|
||||||
|
color: var(--text-a);
|
||||||
|
font-weight: 500;
|
||||||
|
padding: 1.5px 6px;
|
||||||
|
padding-left: 6px;
|
||||||
|
padding-right: 6px;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none !important;
|
||||||
|
display: inline-block;
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 8px;
|
||||||
|
transition: 0.2s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag:hover {
|
||||||
|
color: var(--interactive-accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------
|
||||||
|
TAG REF STYLING
|
||||||
|
----------------------------------------------------------------*/
|
||||||
|
|
||||||
|
.tag[href^="#❗️"],
|
||||||
|
.tag[href^="#important❗️"] {
|
||||||
|
background-color: var(--tag-base);
|
||||||
|
border: 1px solid var(--boldred);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag[href^="#📓"],
|
||||||
|
.tag[href^="#journal📓"] {
|
||||||
|
background-color: var(--tag-base);
|
||||||
|
border: 1px solid var(--purple);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag[href^="#🌱"],
|
||||||
|
.tag[href^="#seedling🌱"],
|
||||||
|
.tag[href^="#🌿"],
|
||||||
|
.tag[href^="#budding🌿"],
|
||||||
|
.tag[href^="#🌳"],
|
||||||
|
.tag[href^="#evergreen🌳"] {
|
||||||
|
background-color: var(--tag-base);
|
||||||
|
border: 1px solid var(--boldgreen);
|
||||||
|
}
|
||||||
|
|
||||||
|
mark
|
||||||
|
{
|
||||||
|
background-color: var(--text-mark) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-actions a
|
||||||
|
{
|
||||||
|
color: var(--text-normal) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-actions a:hover
|
||||||
|
{
|
||||||
|
color: var(--text-a) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.HyperMD-codeblock-bg
|
||||||
|
{
|
||||||
|
background-color: var(--pre-code) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.HyperMD-codeblock
|
||||||
|
{
|
||||||
|
line-height: 1.4em ;
|
||||||
|
color: var(--code-block) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.HyperMD-codeblock-begin
|
||||||
|
{
|
||||||
|
border-top-left-radius: 4px ;
|
||||||
|
border-top-right-radius: 4px ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.HyperMD-codeblock-end
|
||||||
|
{
|
||||||
|
border-bottom-left-radius: 4px ;
|
||||||
|
border-bottom-right-radius: 4px ;
|
||||||
|
}
|
||||||
|
|
||||||
|
th
|
||||||
|
{
|
||||||
|
font-weight: 600 ;
|
||||||
|
}
|
||||||
|
|
||||||
|
thead
|
||||||
|
{
|
||||||
|
border-bottom: 2px solid var(--background-modifier-border) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.HyperMD-table-row
|
||||||
|
{
|
||||||
|
line-height: normal ;
|
||||||
|
padding-left: 4px ;
|
||||||
|
padding-right: 4px ;
|
||||||
|
/* background-color: var(--pre-code) ; */
|
||||||
|
}
|
||||||
|
|
||||||
|
.HyperMD-table-row-0
|
||||||
|
{
|
||||||
|
padding-top: 4px ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.CodeMirror-foldgutter-folded,
|
||||||
|
.is-collapsed .nav-folder-collapse-indicator
|
||||||
|
{
|
||||||
|
color: var(--text-a) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-file-tag
|
||||||
|
{
|
||||||
|
color: var(--text-a) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-active .nav-file-title
|
||||||
|
{
|
||||||
|
color: var(--text-a) ;
|
||||||
|
background-color: var(--background-primary-alt) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-file-title
|
||||||
|
{
|
||||||
|
border-bottom-left-radius: 0 ;
|
||||||
|
border-bottom-right-radius: 0 ;
|
||||||
|
border-top-left-radius: 0 ;
|
||||||
|
border-top-right-radius: 0 ;
|
||||||
|
}
|
||||||
|
|
||||||
|
img
|
||||||
|
{
|
||||||
|
display: block ;
|
||||||
|
margin-left: auto ;
|
||||||
|
margin-right: auto ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.HyperMD-list-line
|
||||||
|
{
|
||||||
|
padding-top: 0 ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.CodeMirror-code,
|
||||||
|
.CodeMirror-linenumber,
|
||||||
|
.cm-formatting
|
||||||
|
{
|
||||||
|
font-family: var(--font-monospace) ;
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-preview-section pre code,
|
||||||
|
.markdown-preview-section code
|
||||||
|
{
|
||||||
|
font-size: 0.9em ;
|
||||||
|
background-color: var(--pre-code) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-preview-section pre code
|
||||||
|
{
|
||||||
|
padding: 4px ;
|
||||||
|
line-height: 1.4em ;
|
||||||
|
display: block ;
|
||||||
|
color: var(--code-block) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-preview-section code
|
||||||
|
{
|
||||||
|
color: var(--inline-code) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian,
|
||||||
|
.cm-inline-code
|
||||||
|
{
|
||||||
|
-webkit-font-smoothing: auto ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-inline-code
|
||||||
|
{
|
||||||
|
color: var(--inline-code) ;
|
||||||
|
background-color: var(--pre-code) ;
|
||||||
|
padding: 1px ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspace-leaf-header-title
|
||||||
|
{
|
||||||
|
font-weight: 600 ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.side-dock-title
|
||||||
|
{
|
||||||
|
padding-top: 15px ;
|
||||||
|
font-size: 20px ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.side-dock-ribbon-tab:hover,
|
||||||
|
.side-dock-ribbon-action:hover,
|
||||||
|
.side-dock-ribbon-action.is-active:hover,
|
||||||
|
.nav-action-button:hover,
|
||||||
|
.side-dock-collapse-btn:hover
|
||||||
|
{
|
||||||
|
color: var(--text-a);
|
||||||
|
}
|
||||||
|
|
||||||
|
.side-dock
|
||||||
|
{
|
||||||
|
border-right: 0 ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-s-obsidian,
|
||||||
|
.markdown-preview-view
|
||||||
|
{
|
||||||
|
/* padding-left: 10px ; */
|
||||||
|
padding-right: 10px ;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* vertical resize-handle */
|
||||||
|
.workspace-split.mod-vertical > * > .workspace-leaf-resize-handle,
|
||||||
|
.workspace-split.mod-left-split > .workspace-leaf-resize-handle,
|
||||||
|
.workspace-split.mod-right-split > .workspace-leaf-resize-handle
|
||||||
|
{
|
||||||
|
width: 1px ;
|
||||||
|
background-color: var(--dim-aqua);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* horizontal resize-handle */
|
||||||
|
.workspace-split.mod-horizontal > * > .workspace-leaf-resize-handle
|
||||||
|
{
|
||||||
|
height: 1px ;
|
||||||
|
background-color: var(--dim-aqua);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Remove vertical split padding */
|
||||||
|
.workspace-split.mod-root .workspace-split.mod-vertical .workspace-leaf-content,
|
||||||
|
.workspace-split.mod-vertical > .workspace-split,
|
||||||
|
.workspace-split.mod-vertical > .workspace-leaf,
|
||||||
|
.workspace-tabs
|
||||||
|
{
|
||||||
|
padding-right: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-embed-title
|
||||||
|
{
|
||||||
|
font-weight: 600 ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-embed
|
||||||
|
{
|
||||||
|
padding-left: 10px ;
|
||||||
|
padding-right: 10px ;
|
||||||
|
margin-left: 10px ;
|
||||||
|
margin-right: 10px ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-header-1,
|
||||||
|
.markdown-preview-section h1
|
||||||
|
{
|
||||||
|
font-weight: 500 ;
|
||||||
|
font-size: 34px ;
|
||||||
|
color: var(--text-title-h1) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-header-2,
|
||||||
|
.markdown-preview-section h2
|
||||||
|
{
|
||||||
|
font-weight: 500 ;
|
||||||
|
font-size: 26px ;
|
||||||
|
color: var(--text-title-h2) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-header-3,
|
||||||
|
.markdown-preview-section h3
|
||||||
|
{
|
||||||
|
font-weight: 500 ;
|
||||||
|
font-size: 22px ;
|
||||||
|
color: var(--text-title-h3) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-header-4,
|
||||||
|
.markdown-preview-section h4
|
||||||
|
{
|
||||||
|
font-weight: 500 ;
|
||||||
|
font-size: 20px ;
|
||||||
|
color: var(--text-title-h4) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-header-5,
|
||||||
|
.markdown-preview-section h5
|
||||||
|
{
|
||||||
|
font-weight: 500 ;
|
||||||
|
font-size: 18px ;
|
||||||
|
color: var(--text-title-h5) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-header-6,
|
||||||
|
.markdown-preview-section h6
|
||||||
|
{
|
||||||
|
font-weight: 500 ;
|
||||||
|
font-size: 18px ;
|
||||||
|
color: var(--text-title-h6) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.suggestion-item.is-selected
|
||||||
|
{
|
||||||
|
background-color: var(--text-selection);
|
||||||
|
}
|
||||||
|
|
||||||
|
.empty-state-container:hover
|
||||||
|
{
|
||||||
|
background-color: var(--background-secondary-alt);
|
||||||
|
border: 5px solid var(--interactive-accent) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.checkbox-container
|
||||||
|
{
|
||||||
|
background-color: var(--interactive-before);
|
||||||
|
}
|
||||||
|
|
||||||
|
.checkbox-container:after
|
||||||
|
{
|
||||||
|
background-color: var(--interactive-accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.checkbox-container.is-enabled:after
|
||||||
|
{
|
||||||
|
background-color: var(--bg5-dark);
|
||||||
|
}
|
||||||
|
|
||||||
|
.mod-cta
|
||||||
|
{
|
||||||
|
color: var(--background-secondary-alt) ;
|
||||||
|
font-weight: 600 ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mod-cta a
|
||||||
|
{
|
||||||
|
color: var(--background-secondary-alt) ;
|
||||||
|
font-weight: 600 ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mod-cta:hover
|
||||||
|
{
|
||||||
|
background-color: var(--interactive-before) ;
|
||||||
|
font-weight: 600 ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.CodeMirror-cursor
|
||||||
|
{
|
||||||
|
background-color: var(--vim-cursor) ;
|
||||||
|
opacity: 60% ;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.task-list-item-checkbox {
|
||||||
|
border: 1px solid var(--faded-blue);
|
||||||
|
appearance: none;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.task-list-item-checkbox:checked
|
||||||
|
{
|
||||||
|
background-color: var(--faded-blue);
|
||||||
|
box-shadow: inset 0 0 0 2px var(--background-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
::selection
|
||||||
|
{
|
||||||
|
background-color: var(--text-selection) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mermaid .note
|
||||||
|
{
|
||||||
|
fill: var(--dark3) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.frontmatter-container {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bullet point relationship lines */
|
||||||
|
.markdown-source-view.mod-cm6 .cm-indent::before,
|
||||||
|
.markdown-rendered.show-indentation-guide li > ul::before,
|
||||||
|
.markdown-rendered.show-indentation-guide li > ol::before {
|
||||||
|
position: absolute;
|
||||||
|
border-right: 1px solid var(--dim-blue);
|
||||||
|
}
|
7
.obsidian/themes/ITS Theme/manifest.json
vendored
Executable file
7
.obsidian/themes/ITS Theme/manifest.json
vendored
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"name": "ITS Theme",
|
||||||
|
"version": "1.2.11",
|
||||||
|
"minAppVersion": "0.16.0",
|
||||||
|
"author": "SlRvb",
|
||||||
|
"authorUrl": "https://github.com/SlRvb"
|
||||||
|
}
|
13514
.obsidian/themes/ITS Theme/theme.css
vendored
Executable file
13514
.obsidian/themes/ITS Theme/theme.css
vendored
Executable file
File diff suppressed because one or more lines are too long
8
.obsidian/themes/Minimal/manifest.json
vendored
Executable file
8
.obsidian/themes/Minimal/manifest.json
vendored
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"name": "Minimal",
|
||||||
|
"version": "7.4.7",
|
||||||
|
"minAppVersion": "1.5.0",
|
||||||
|
"author": "@kepano",
|
||||||
|
"authorUrl": "https://twitter.com/kepano",
|
||||||
|
"fundingUrl": "https://www.buymeacoffee.com/kepano"
|
||||||
|
}
|
2158
.obsidian/themes/Minimal/theme.css
vendored
Executable file
2158
.obsidian/themes/Minimal/theme.css
vendored
Executable file
File diff suppressed because one or more lines are too long
7
.obsidian/themes/Obsidian Nord/manifest.json
vendored
Executable file
7
.obsidian/themes/Obsidian Nord/manifest.json
vendored
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"name": "Obsidian Nord",
|
||||||
|
"version": "0.2.0",
|
||||||
|
"minAppVersion": "0.16.0",
|
||||||
|
"author": "insanum",
|
||||||
|
"authorUrl": "https://insanum.com"
|
||||||
|
}
|
525
.obsidian/themes/Obsidian Nord/theme.css
vendored
Executable file
525
.obsidian/themes/Obsidian Nord/theme.css
vendored
Executable file
|
@ -0,0 +1,525 @@
|
||||||
|
|
||||||
|
:root
|
||||||
|
{
|
||||||
|
--dark0_x: 46,52,64; /* #2e3440 */
|
||||||
|
--dark0: rgb(var(--dark0_x));
|
||||||
|
--dark1_x: 59,66,82; /* #3b4252 */
|
||||||
|
--dark1: rgb(var(--dark1_x));
|
||||||
|
--dark2_x: 67,76,94; /* #434c5e */
|
||||||
|
--dark2: rgb(var(--dark2_x));
|
||||||
|
--dark3_x: 76,86,106; /* #4c566a */
|
||||||
|
--dark3: rgb(var(--dark3_x));
|
||||||
|
|
||||||
|
--light0_x: 216,222,233; /* #d8dee9 */
|
||||||
|
--light0: rgb(var(--light0_x));
|
||||||
|
--light1_x: 229,233,240; /* #e5e9f0 */
|
||||||
|
--light1: rgb(var(--light1_x));
|
||||||
|
--light2_x: 236,239,244; /* #eceff4 */
|
||||||
|
--light2: rgb(var(--light2_x));
|
||||||
|
--light3_x: 255,255,255; /* #ffffff */
|
||||||
|
--light3: rgb(var(--light3_x));
|
||||||
|
|
||||||
|
--frost0_x: 143,188,187; /* #8fbcbb */
|
||||||
|
--frost0: rgb(var(--frost0_x));
|
||||||
|
--frost1_x: 136,192,208; /* #88c0d0 */
|
||||||
|
--frost1: rgb(var(--frost1_x));
|
||||||
|
--frost2_x: 129,161,193; /* #81a1c1 */
|
||||||
|
--frost2: rgb(var(--frost2_x));
|
||||||
|
--frost3_x: 94,129,172; /* #5e81ac */
|
||||||
|
--frost3: rgb(var(--frost3_x));
|
||||||
|
|
||||||
|
--red_x: 191,97,106; /* #bf616a */
|
||||||
|
--red: rgb(var(--red_x));
|
||||||
|
--orange_x: 208,135,112; /* #d08770 */
|
||||||
|
--orange: rgb(var(--orange_x));
|
||||||
|
--yellow_x: 235,203,139; /* #ebcb8b */
|
||||||
|
--yellow: rgb(var(--yellow_x));
|
||||||
|
--green_x: 163,190,140; /* #a3be8c */
|
||||||
|
--green: rgb(var(--green_x));
|
||||||
|
--purple_x: 180,142,173; /* #b48ead */
|
||||||
|
--purple: rgb(var(--purple_x));
|
||||||
|
}
|
||||||
|
|
||||||
|
body
|
||||||
|
{
|
||||||
|
--accent-h: 354; /* --red #bf616a */
|
||||||
|
--accent-s: 42%;
|
||||||
|
--accent-l: 56%;
|
||||||
|
|
||||||
|
--link-decoration: none;
|
||||||
|
--link-decoration-hover: none;
|
||||||
|
--link-external-decoration: none;
|
||||||
|
--link-external-decoration-hover: none;
|
||||||
|
|
||||||
|
--tag-decoration: none;
|
||||||
|
--tag-decoration-hover: underline;
|
||||||
|
--tag-padding-x: .5em;
|
||||||
|
--tag-padding-y: .2em;
|
||||||
|
--tag-radius: .5em;
|
||||||
|
|
||||||
|
--tab-font-weight: 600;
|
||||||
|
--bold-weight: 600;
|
||||||
|
|
||||||
|
--checkbox-radius: 0;
|
||||||
|
|
||||||
|
/* --list-indent: 2em; */
|
||||||
|
|
||||||
|
--embed-border-left: 6px double var(--interactive-accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-dark
|
||||||
|
{
|
||||||
|
--color-red-rgb: var(--red_x);
|
||||||
|
--color-red: var(--red);
|
||||||
|
--color-purple-rgb: var(--purple_x);
|
||||||
|
--color-purple: var(--purple);
|
||||||
|
--color-green-rgb: var(--green_x);
|
||||||
|
--color-green: var(--green);
|
||||||
|
--color-cyan-rgb: var(--frost1_x);
|
||||||
|
--color-cyan: var(--frost1);
|
||||||
|
--color-blue-rgb: var(--frost3_x);
|
||||||
|
--color-blue: var(--frost3);
|
||||||
|
--color-yellow-rgb: var(--yellow_x);
|
||||||
|
--color-yellow: var(--yellow);
|
||||||
|
--color-orange-rgb: var(--orange_x);
|
||||||
|
--color-orange: var(--orange);
|
||||||
|
/* --color-pink: var(--purple); */
|
||||||
|
|
||||||
|
--background-primary: var(--dark0);
|
||||||
|
--background-primary-alt: var(--dark0);
|
||||||
|
--background-secondary: var(--dark1);
|
||||||
|
--background-secondary-alt: var(--dark2);
|
||||||
|
--background-modifier-border: var(--dark2);
|
||||||
|
|
||||||
|
--cursor-line-background: rgba(var(--red_x), 0.2);
|
||||||
|
|
||||||
|
--text-normal: var(--light2);
|
||||||
|
--text-faint: var(--light0);
|
||||||
|
--text-muted: var(--light1);
|
||||||
|
|
||||||
|
--link-url: var(--purple);
|
||||||
|
|
||||||
|
--h1-color: var(--red);
|
||||||
|
--h2-color: var(--yellow);
|
||||||
|
--h3-color: var(--green);
|
||||||
|
--h4-color: var(--purple);
|
||||||
|
--h5-color: var(--frost0);
|
||||||
|
--h6-color: var(--frost2);
|
||||||
|
|
||||||
|
--text-highlight-bg: var(--frost1);
|
||||||
|
--text-highlight-fg: var(--dark0);
|
||||||
|
|
||||||
|
--text-accent: var(--orange);
|
||||||
|
--text-accent-hover: var(--frost2);
|
||||||
|
|
||||||
|
--tag-color: var(--frost0);
|
||||||
|
--tag-background: var(--dark2);
|
||||||
|
--tag-background-hover: var(--dark1);
|
||||||
|
|
||||||
|
--titlebar-text-color-focused: var(--red);
|
||||||
|
|
||||||
|
--inline-title-color: var(--yellow);
|
||||||
|
|
||||||
|
--bold-color: var(--yellow);
|
||||||
|
--italic-color: var(--yellow);
|
||||||
|
|
||||||
|
--checkbox-color: var(--frost0);
|
||||||
|
--checkbox-color-hover: var(--frost0);
|
||||||
|
--checkbox-border-color: var(--frost0);
|
||||||
|
--checkbox-border-color-hover: var(--frost0);
|
||||||
|
--checklist-done-color: rgba(var(--light2_x), 0.5);
|
||||||
|
|
||||||
|
--table-header-background: hsl(220, 16%, 16%);
|
||||||
|
--table-header-background-hover: var(--dark3);
|
||||||
|
--table-row-even-background: hsl(220, 16%, 20%);
|
||||||
|
--table-row-odd-background: hsl(220, 16%, 24%);
|
||||||
|
--table-row-background-hover: var(--dark3);
|
||||||
|
|
||||||
|
--text-selection: rgba(var(--red_x), 0.6);
|
||||||
|
--flashing-background: rgba(var(--red_x), 0.3);
|
||||||
|
|
||||||
|
--code-normal: var(--frost1);
|
||||||
|
--code-background: var(--dark1);
|
||||||
|
|
||||||
|
--mermaid-note: var(--frost3);
|
||||||
|
--mermaid-loopline: var(--frost1);
|
||||||
|
--mermaid-exclude: var(--dark3);
|
||||||
|
--mermaid-seqnum: var(--dark0);
|
||||||
|
|
||||||
|
--icon-color-hover: var(--red);
|
||||||
|
--icon-color-focused: var(--frost2);
|
||||||
|
|
||||||
|
--nav-item-color-hover: var(--red);
|
||||||
|
--nav-item-color-active: var(--frost2);
|
||||||
|
--nav-file-tag: rgba(var(--yellow_x), 0.9);
|
||||||
|
|
||||||
|
--graph-line: var(--dark3);
|
||||||
|
--graph-node: var(--light3);
|
||||||
|
--graph-node-tag: var(--red);
|
||||||
|
--graph-node-attachment: var(--green);
|
||||||
|
|
||||||
|
--calendar-hover: var(--red);
|
||||||
|
--calendar-background-hover: var(--dark3);
|
||||||
|
--calendar-week: var(--yellow);
|
||||||
|
--calendar-today: var(--yellow);
|
||||||
|
|
||||||
|
--dataview-key: var(--text-faint);
|
||||||
|
--dataview-key-background: rgba(var(--frost2_x), 0.3);
|
||||||
|
--dataview-value: var(--text-faint);
|
||||||
|
--dataview-value-background: rgba(var(--red_x), 0.3);
|
||||||
|
|
||||||
|
--tab-text-color-focused-active: var(--frost2);
|
||||||
|
--tab-text-color-focused-active-current: var(--red);
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-light
|
||||||
|
{
|
||||||
|
--color-red-rgb: var(--red_x);
|
||||||
|
--color-red: var(--red);
|
||||||
|
--color-purple-rgb: var(--purple_x);
|
||||||
|
--color-purple: var(--purple);
|
||||||
|
--color-green-rgb: var(--green_x);
|
||||||
|
--color-green: var(--green);
|
||||||
|
--color-cyan-rgb: var(--frost1_x);
|
||||||
|
--color-cyan: var(--frost1);
|
||||||
|
--color-blue-rgb: var(--frost3_x);
|
||||||
|
--color-blue: var(--frost3);
|
||||||
|
--color-yellow-rgb: var(--yellow_x);
|
||||||
|
--color-yellow: var(--yellow);
|
||||||
|
--color-orange-rgb: var(--orange_x);
|
||||||
|
--color-orange: var(--orange);
|
||||||
|
/* --color-pink: var(--purple); */
|
||||||
|
|
||||||
|
--background-primary: var(--light3);
|
||||||
|
--background-primary-alt: var(--light3);
|
||||||
|
--background-secondary: var(--light2);
|
||||||
|
--background-secondary-alt: var(--light1);
|
||||||
|
--background-modifier-border: var(--light1);
|
||||||
|
|
||||||
|
--cursor-line-background: rgba(var(--red_x), 0.1);
|
||||||
|
|
||||||
|
--text-normal: var(--dark2);
|
||||||
|
--text-faint: var(--dark0);
|
||||||
|
--text-muted: var(--dark1);
|
||||||
|
|
||||||
|
--link-url: var(--purple);
|
||||||
|
|
||||||
|
--h1-color: var(--red);
|
||||||
|
--h2-color: var(--yellow);
|
||||||
|
--h3-color: var(--green);
|
||||||
|
--h4-color: var(--purple);
|
||||||
|
--h5-color: var(--frost0);
|
||||||
|
--h6-color: var(--frost2);
|
||||||
|
|
||||||
|
--text-highlight-bg: var(--yellow);
|
||||||
|
--text-highlight-fg: var(--dark0);
|
||||||
|
|
||||||
|
--text-accent: var(--orange);
|
||||||
|
--text-accent-hover: var(--frost2);
|
||||||
|
|
||||||
|
--tag-color: var(--dark3);
|
||||||
|
--tag-background: var(--light1);
|
||||||
|
--tag-background-hover: var(--light0);
|
||||||
|
|
||||||
|
--titlebar-text-color-focused: var(--red);
|
||||||
|
|
||||||
|
--inline-title-color: var(--yellow);
|
||||||
|
|
||||||
|
--bold-color: var(--green);
|
||||||
|
--italic-color: var(--green);
|
||||||
|
|
||||||
|
--checkbox-color: var(--frost2);
|
||||||
|
--checkbox-color-hover: var(--frost2);
|
||||||
|
--checkbox-border-color: var(--frost2);
|
||||||
|
--checkbox-border-color-hover: var(--frost2);
|
||||||
|
--checklist-done-color: rgba(var(--dark2_x), 0.4);
|
||||||
|
|
||||||
|
--table-header-background: rgba(var(--light2_x), 0.2);
|
||||||
|
--table-header-background-hover: var(--frost2);
|
||||||
|
--table-row-even-background: rgba(var(--light2_x), 0.4);
|
||||||
|
--table-row-odd-background: rgba(var(--light2_x), 0.8);
|
||||||
|
--table-row-background-hover: var(--frost2);
|
||||||
|
|
||||||
|
--text-selection: rgba(var(--red_x), 0.6);
|
||||||
|
--flashing-background: rgba(var(--red_x), 0.3);
|
||||||
|
|
||||||
|
--code-normal: var(--frost1);
|
||||||
|
--code-background: var(--light2);
|
||||||
|
|
||||||
|
--mermaid-note: var(--frost0);
|
||||||
|
--mermaid-loopline: var(--frost1);
|
||||||
|
--mermaid-exclude: var(--light0);
|
||||||
|
--mermaid-seqnum: var(--light0);
|
||||||
|
|
||||||
|
--icon-color-hover: var(--red);
|
||||||
|
--icon-color-focused: var(--frost3);
|
||||||
|
|
||||||
|
--nav-item-color-hover: var(--red);
|
||||||
|
--nav-item-color-active: var(--frost2);
|
||||||
|
--nav-file-tag: rgba(var(--orange_x), 0.9);
|
||||||
|
|
||||||
|
--graph-line: var(--light0);
|
||||||
|
--graph-node: var(--dark3);
|
||||||
|
--graph-node-tag: var(--red);
|
||||||
|
--graph-node-attachment: var(--green);
|
||||||
|
|
||||||
|
--calendar-hover: var(--red);
|
||||||
|
--calendar-background-hover: var(--light0);
|
||||||
|
--calendar-week: var(--orange);
|
||||||
|
--calendar-today: var(--orange);
|
||||||
|
|
||||||
|
--dataview-key: var(--text-faint);
|
||||||
|
--dataview-key-background: rgba(var(--frost2_x), 0.3);
|
||||||
|
--dataview-value: var(--text-faint);
|
||||||
|
--dataview-value-background: rgba(var(--red_x), 0.3);
|
||||||
|
|
||||||
|
--tab-text-color-focused-active: var(--frost2);
|
||||||
|
--tab-text-color-focused-active-current: var(--red);
|
||||||
|
}
|
||||||
|
|
||||||
|
table
|
||||||
|
{
|
||||||
|
border: 1px solid var(--background-secondary) !important;
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
|
||||||
|
thead
|
||||||
|
{
|
||||||
|
border-bottom: 2px solid var(--background-modifier-border) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
th
|
||||||
|
{
|
||||||
|
font-weight: 600 !important;
|
||||||
|
border: 1px solid var(--background-secondary) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td
|
||||||
|
{
|
||||||
|
border-left: 1px solid var(--background-secondary) !important;
|
||||||
|
border-right: 1px solid var(--background-secondary) !important;
|
||||||
|
border-bottom: 1px solid var(--background-secondary) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-rendered tbody tr:nth-child(even)
|
||||||
|
{
|
||||||
|
background-color: var(--table-row-even-background) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-rendered tbody tr:nth-child(odd)
|
||||||
|
{
|
||||||
|
background-color: var(--table-row-odd-background) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-rendered tbody tr:nth-child(even):hover,
|
||||||
|
.markdown-rendered tbody tr:nth-child(odd):hover
|
||||||
|
{
|
||||||
|
background-color: var(--table-row-background-hover) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-rendered mark
|
||||||
|
{
|
||||||
|
background-color: var(--text-highlight-bg);
|
||||||
|
color: var(--text-highlight-fg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-rendered mark a
|
||||||
|
{
|
||||||
|
color: var(--red) !important;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-result-file-matched-text
|
||||||
|
{
|
||||||
|
color: var(--text-highlight-fg) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-hashtag-begin:hover, .cm-hashtag-end:hover
|
||||||
|
{
|
||||||
|
color: var(--text-accent);
|
||||||
|
/* background-color: var(--tag-background-hover); */
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=checkbox]
|
||||||
|
{
|
||||||
|
border: 1px solid var(--checkbox-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=checkbox]:checked
|
||||||
|
{
|
||||||
|
background-color: var(--checkbox-color);
|
||||||
|
box-shadow: inset 0 0 0 2px var(--background-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=checkbox]:checked:after
|
||||||
|
{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
code[class*="language-"],
|
||||||
|
pre[class*="language-"]
|
||||||
|
{
|
||||||
|
line-height: var(--line-height-tight) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-url
|
||||||
|
{
|
||||||
|
color: var(--link-url) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-url:hover
|
||||||
|
{
|
||||||
|
color: var(--text-accent-hover) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Keep highlight/marks the same between viewer and editor. */
|
||||||
|
.cm-highlight
|
||||||
|
{
|
||||||
|
color: var(--text-highlight-fg) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Keep inline code the same between viewer and editor. */
|
||||||
|
.cm-inline-code
|
||||||
|
{
|
||||||
|
border-radius: var(--radius-s);
|
||||||
|
font-size: var(--code-size);
|
||||||
|
padding: 0.1em 0.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-formatting-code + .cm-inline-code
|
||||||
|
{
|
||||||
|
border-radius: 0;
|
||||||
|
padding: 0.1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-formatting-code
|
||||||
|
{
|
||||||
|
border-radius: var(--radius-s) 0 0 var(--radius-s);
|
||||||
|
padding: 0.1em 0 0.1em 0.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-inline-code + .cm-formatting-code
|
||||||
|
{
|
||||||
|
border-radius: 0 var(--radius-s) var(--radius-s) 0;
|
||||||
|
padding: 0.1em 0.25em 0.1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-line .cm-strong
|
||||||
|
{
|
||||||
|
color: var(--bold-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Keep list bullet padding the same between viewer and editor.
|
||||||
|
* This is annoying with the cursor in the editor as there is a gap.
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
.cm-formatting-list
|
||||||
|
{
|
||||||
|
padding-right: 4px !important;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Keep sub-list indenting the same between viewer and editor.
|
||||||
|
* This assumes --list-indent is default at 2em.
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
.cm-indent
|
||||||
|
{
|
||||||
|
text-indent: 1em !important;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
.mermaid .note
|
||||||
|
{
|
||||||
|
fill: var(--mermaid-note) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mermaid .loopLine,
|
||||||
|
{
|
||||||
|
stroke: var(--mermaid-loopline) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mermaid .loopText>tspan,
|
||||||
|
.mermaid .entityLabel
|
||||||
|
{
|
||||||
|
fill: var(--red) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mermaid .exclude-range
|
||||||
|
{
|
||||||
|
fill: var(--mermaid-exclude) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mermaid .sequenceNumber
|
||||||
|
{
|
||||||
|
fill: var(--mermaid-seqnum) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.calendar .week-num
|
||||||
|
{
|
||||||
|
color: var(--calendar-week) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.calendar .today
|
||||||
|
{
|
||||||
|
color: var(--calendar-today) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.calendar .week-num:hover,
|
||||||
|
.calendar .day:hover
|
||||||
|
{
|
||||||
|
color: var(--calendar-hover) !important;
|
||||||
|
background-color: var(--calendar-background-hover) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-embed-title
|
||||||
|
{
|
||||||
|
color: var(--yellow);
|
||||||
|
font-weight: 600 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-active
|
||||||
|
{
|
||||||
|
background-color: var(--cursor-line-background) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-file-tag
|
||||||
|
{
|
||||||
|
color: var(--nav-file-tag) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-flashing
|
||||||
|
{
|
||||||
|
background-color: var(--flashing-background) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.inline-field-key
|
||||||
|
{
|
||||||
|
border-top-left-radius: var(--radius-s);
|
||||||
|
border-bottom-left-radius: var(--radius-s);
|
||||||
|
padding-left: 4px;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
font-size: var(--font-smaller);
|
||||||
|
color: var(--dataview-key) !important;
|
||||||
|
background-color: var(--dataview-key-background) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.inline-field-value
|
||||||
|
{
|
||||||
|
border-top-right-radius: var(--radius-s);
|
||||||
|
border-bottom-right-radius: var(--radius-s);
|
||||||
|
padding-right: 4px;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
font-size: var(--font-smaller);
|
||||||
|
color: var(--dataview-value) !important;
|
||||||
|
background-color: var(--dataview-value-background) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.suggestion-highlight
|
||||||
|
{
|
||||||
|
color: var(--red);
|
||||||
|
}
|
||||||
|
|
7
.obsidian/themes/Obsidian gruvbox/manifest.json
vendored
Executable file
7
.obsidian/themes/Obsidian gruvbox/manifest.json
vendored
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"name": "Obsidian gruvbox",
|
||||||
|
"version": "0.2.0",
|
||||||
|
"minAppVersion": "0.16.0",
|
||||||
|
"author": "insanum",
|
||||||
|
"authorUrl": "https://insanum.com"
|
||||||
|
}
|
555
.obsidian/themes/Obsidian gruvbox/theme.css
vendored
Executable file
555
.obsidian/themes/Obsidian gruvbox/theme.css
vendored
Executable file
|
@ -0,0 +1,555 @@
|
||||||
|
|
||||||
|
:root
|
||||||
|
{
|
||||||
|
--dark0-hard_x: 29,32,33; /* #1d2021 */
|
||||||
|
--dark0-hard: rgb(var(--dark0-hard_x));
|
||||||
|
--dark0_x: 40,40,40; /* #282828 */
|
||||||
|
--dark0: rgb(var(--dark0_x));
|
||||||
|
--dark0-soft_x: 50,48,47; /* #32302f */
|
||||||
|
--dark0-soft: rgb(var(--dark0-soft_x));
|
||||||
|
--dark1_x: 60,56,54; /* #3c3836 */
|
||||||
|
--dark1: rgb(var(--dark1_x));
|
||||||
|
--dark2_x: 80,73,69; /* #504945 */
|
||||||
|
--dark2: rgb(var(--dark2_x));
|
||||||
|
--dark3_x: 102,92,84; /* #665c54 */
|
||||||
|
--dark3: rgb(var(--dark3_x));
|
||||||
|
--dark4_x: 124,111,100; /* #7c6f64 */
|
||||||
|
--dark4: rgb(var(--dark4_x));
|
||||||
|
--gray_x: 146,131,116; /* #928374 */
|
||||||
|
--gray: rgb(var(--gray_x));
|
||||||
|
|
||||||
|
--light0-hard_x: 249,245,215; /* #f9f5d7 */
|
||||||
|
--light0-hard: rgb(var(--light0-hard_x));
|
||||||
|
--light0_x: 251,241,199; /* #fbf1c7 */
|
||||||
|
--light0: rgb(var(--light0_x));
|
||||||
|
--light0-soft_x: 242,229,188; /* #f2e5bc */
|
||||||
|
--light0-soft: rgb(var(--light0-soft_x));
|
||||||
|
--light1_x: 235,219,178; /* #ebdbb2 */
|
||||||
|
--light1: rgb(var(--light1_x));
|
||||||
|
--light2_x: 213,196,161; /* #d5c4a1 */
|
||||||
|
--light2: rgb(var(--light2_x));
|
||||||
|
--light3_x: 189,174,147; /* #bdae93 */
|
||||||
|
--light3: rgb(var(--light3_x));
|
||||||
|
--light4_x: 168,153,132; /* #a89984 */
|
||||||
|
--light4: rgb(var(--light4_x));
|
||||||
|
|
||||||
|
--bright-red_x: 251,73,52; /* #fb4934 */
|
||||||
|
--bright-red: rgb(var(--bright-red_x));
|
||||||
|
--bright-green_x: 184,187,38; /* #b8bb26 */
|
||||||
|
--bright-green: rgb(var(--bright-green_x));
|
||||||
|
--bright-yellow_x: 250,189,47; /* #fabd2f */
|
||||||
|
--bright-yellow: rgb(var(--bright-yellow_x));
|
||||||
|
--bright-blue_x: 131,165,152; /* #83a598 */
|
||||||
|
--bright-blue: rgb(var(--bright-blue_x));
|
||||||
|
--bright-purple_x: 211,134,155; /* #d3869b */
|
||||||
|
--bright-purple: rgb(var(--bright-purple_x));
|
||||||
|
--bright-aqua_x: 142,192,124; /* #8ec07c */
|
||||||
|
--bright-aqua: rgb(var(--bright-aqua_x));
|
||||||
|
--bright-orange_x: 254,128,25; /* #fe8019 */
|
||||||
|
--bright-orange: rgb(var(--bright-orange_x));
|
||||||
|
|
||||||
|
--neutral-red_x: 204,36,29; /* #cc241d */
|
||||||
|
--neutral-red: rgb(var(--neutral-red_x));
|
||||||
|
--neutral-green_x: 152,151,26; /* #98971a */
|
||||||
|
--neutral-green: rgb(var(--neutral-green_x));
|
||||||
|
--neutral-yellow_x: 215,153,33; /* #d79921 */
|
||||||
|
--neutral-yellow: rgb(var(--neutral-yellow_x));
|
||||||
|
--neutral-blue_x: 69,133,136; /* #458588 */
|
||||||
|
--neutral-blue: rgb(var(--neutral-blue_x));
|
||||||
|
--neutral-purple_x: 177,98,134; /* #b16286 */
|
||||||
|
--neutral-purple: rgb(var(--neutral-purple_x));
|
||||||
|
--neutral-aqua_x: 104,157,106; /* #689d6a */
|
||||||
|
--neutral-aqua: rgb(var(--neutral-aqua_x));
|
||||||
|
--neutral-orange_x: 214,93,14; /* #d65d0e */
|
||||||
|
--neutral-orange: rgb(var(--neutral-orange_x));
|
||||||
|
|
||||||
|
--faded-red_x: 157,0,6; /* #9d0006 */
|
||||||
|
--faded-red: rgb(var(--faded-red_x));
|
||||||
|
--faded-green_x: 121,116,14; /* #79740e */
|
||||||
|
--faded-green: rgb(var(--faded-green_x));
|
||||||
|
--faded-yellow_x: 181,118,20; /* #b57614 */
|
||||||
|
--faded-yellow: rgb(var(--faded-yellow_x));
|
||||||
|
--faded-blue_x: 7,102,120; /* #076678 */
|
||||||
|
--faded-blue: rgb(var(--faded-blue_x));
|
||||||
|
--faded-purple_x: 143,63,113; /* #8f3f71 */
|
||||||
|
--faded-purple: rgb(var(--faded-purple_x));
|
||||||
|
--faded-aqua_x: 66,123,88; /* #427b58 */
|
||||||
|
--faded-aqua: rgb(var(--faded-aqua_x));
|
||||||
|
--faded-orange_x: 175,58,3; /* #af3a03 */
|
||||||
|
--faded-orange: rgb(var(--faded-orange_x));
|
||||||
|
}
|
||||||
|
|
||||||
|
body
|
||||||
|
{
|
||||||
|
--accent-h: 12; /* --faded-red #9d0006 */
|
||||||
|
--accent-s: 107%;
|
||||||
|
--accent-l: 32%;
|
||||||
|
|
||||||
|
--link-decoration: none;
|
||||||
|
--link-decoration-hover: none;
|
||||||
|
--link-external-decoration: none;
|
||||||
|
--link-external-decoration-hover: none;
|
||||||
|
|
||||||
|
--tag-decoration: none;
|
||||||
|
--tag-decoration-hover: underline;
|
||||||
|
--tag-padding-x: .5em;
|
||||||
|
--tag-padding-y: .2em;
|
||||||
|
--tag-radius: .5em;
|
||||||
|
|
||||||
|
--tab-font-weight: 600;
|
||||||
|
--bold-weight: 600;
|
||||||
|
|
||||||
|
--checkbox-radius: 0;
|
||||||
|
|
||||||
|
/* --list-indent: 2em; */
|
||||||
|
|
||||||
|
--embed-border-left: 6px double var(--interactive-accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-dark
|
||||||
|
{
|
||||||
|
--color-red-rgb: var(--neutral-red_x);
|
||||||
|
--color-red: var(--neutral-red);
|
||||||
|
--color-purple-rgb: var(--neutral-purple_x);
|
||||||
|
--color-purple: var(--neutral-purple);
|
||||||
|
--color-green-rgb: var(--neutral-green_x);
|
||||||
|
--color-green: var(--neutral-green);
|
||||||
|
--color-cyan-rgb: var(--neutral-blue_x);
|
||||||
|
--color-cyan: var(--neutral-blue);
|
||||||
|
--color-blue-rgb: var(--faded-blue_x);
|
||||||
|
--color-blue: var(--faded-blue);
|
||||||
|
--color-yellow-rgb: var(--neutral-yellow_x);
|
||||||
|
--color-yellow: var(--neutral-yellow);
|
||||||
|
--color-orange-rgb: var(--neutral-orange_x);
|
||||||
|
--color-orange: var(--neutral-orange);
|
||||||
|
--color-pink-rgb: var(--bright-purple_x);
|
||||||
|
--color-pink: var(--bright-purple);
|
||||||
|
|
||||||
|
--background-primary: var(--dark0);
|
||||||
|
--background-primary-alt: var(--dark0);
|
||||||
|
--background-secondary: var(--dark0-hard);
|
||||||
|
--background-secondary-alt: var(--dark1);
|
||||||
|
--background-modifier-border: var(--dark1);
|
||||||
|
|
||||||
|
--cursor-line-background: rgba(var(--dark1_x), 0.5);
|
||||||
|
|
||||||
|
--text-normal: var(--light0);
|
||||||
|
--text-faint: var(--light1);
|
||||||
|
--text-muted: var(--light2);
|
||||||
|
|
||||||
|
--link-url: var(--neutral-green);
|
||||||
|
|
||||||
|
--h1-color: var(--neutral-red);
|
||||||
|
--h2-color: var(--neutral-yellow);
|
||||||
|
--h3-color: var(--neutral-green);
|
||||||
|
--h4-color: var(--neutral-aqua);
|
||||||
|
--h5-color: var(--neutral-blue);
|
||||||
|
--h6-color: var(--neutral-purple);
|
||||||
|
|
||||||
|
--text-highlight-bg: var(--neutral-yellow);
|
||||||
|
--text-highlight-fg: var(--dark0-hard);
|
||||||
|
|
||||||
|
--text-accent: var(--neutral-orange);
|
||||||
|
--text-accent-hover: var(--bright-aqua);
|
||||||
|
|
||||||
|
--tag-color: var(--bright-aqua);
|
||||||
|
--tag-background: var(--dark2);
|
||||||
|
--tag-background-hover: var(--dark1);
|
||||||
|
|
||||||
|
--titlebar-text-color-focused: var(--bright-red);
|
||||||
|
|
||||||
|
--inline-title-color: var(--bright-yellow);
|
||||||
|
|
||||||
|
--bold-color: var(--neutral-yellow);
|
||||||
|
--italic-color: var(--neutral-yellow);
|
||||||
|
|
||||||
|
--checkbox-color: var(--light4);
|
||||||
|
--checkbox-color-hover: var(--light4);
|
||||||
|
--checkbox-border-color: var(--light4);
|
||||||
|
--checkbox-border-color-hover: var(--light4);
|
||||||
|
--checklist-done-color: rgba(var(--light2_x), 0.5);
|
||||||
|
|
||||||
|
--table-header-background: rgba(var(--dark0_x), 0.2);
|
||||||
|
--table-header-background-hover: var(--dark2);
|
||||||
|
--table-row-even-background: rgba(var(--dark2_x), 0.2);
|
||||||
|
--table-row-odd-background: rgba(var(--dark2_x), 0.4);
|
||||||
|
--table-row-background-hover: var(--dark2);
|
||||||
|
|
||||||
|
--text-selection: rgba(var(--neutral-red_x), 0.6);
|
||||||
|
--flashing-background: rgba(var(--neutral-red_x), 0.3);
|
||||||
|
|
||||||
|
--code-normal: var(--bright-blue);
|
||||||
|
--code-background: var(--dark1);
|
||||||
|
|
||||||
|
--mermaid-note: var(--neutral-blue);
|
||||||
|
--mermaid-actor: var(--dark2);
|
||||||
|
--mermaid-loopline: var(--neutral-blue);
|
||||||
|
--mermaid-exclude: var(--dark4);
|
||||||
|
--mermaid-seqnum: var(--dark0);
|
||||||
|
|
||||||
|
--icon-color-hover: var(--bright-red);
|
||||||
|
--icon-color-focused: var(--bright-blue);
|
||||||
|
|
||||||
|
--nav-item-color-hover: var(--bright-red);
|
||||||
|
--nav-item-color-active: var(--bright-aqua);
|
||||||
|
--nav-file-tag: rgba(var(--neutral-yellow_x), 0.9);
|
||||||
|
|
||||||
|
--graph-line: var(--dark2);
|
||||||
|
--graph-node: var(--light3);
|
||||||
|
--graph-node-tag: var(--neutral-red);
|
||||||
|
--graph-node-attachment: var(--neutral-green);
|
||||||
|
|
||||||
|
--calendar-hover: var(--bright-red);
|
||||||
|
--calendar-background-hover: var(--dark1);
|
||||||
|
--calendar-week: var(--neutral-orange);
|
||||||
|
--calendar-today: var(--neutral-orange);
|
||||||
|
|
||||||
|
--dataview-key: var(--text-faint);
|
||||||
|
--dataview-key-background: rgba(var(--faded-red_x), 0.5);
|
||||||
|
--dataview-value: var(--text-faint);
|
||||||
|
--dataview-value-background: rgba(var(--neutral-green_x), 0.3);
|
||||||
|
|
||||||
|
--tab-text-color-focused-active: var(--neutral-yellow);
|
||||||
|
--tab-text-color-focused-active-current: var(--bright-red);
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-light
|
||||||
|
{
|
||||||
|
--color-red-rgb: var(--neutral-red_x);
|
||||||
|
--color-red: var(--neutral-red);
|
||||||
|
--color-purple-rgb: var(--neutral-purple_x);
|
||||||
|
--color-purple: var(--neutral-purple);
|
||||||
|
--color-green-rgb: var(--neutral-green_x);
|
||||||
|
--color-green: var(--neutral-green);
|
||||||
|
--color-cyan-rgb: var(--neutral-blue_x);
|
||||||
|
--color-cyan: var(--neutral-blue);
|
||||||
|
--color-blue-rgb: var(--faded-blue_x);
|
||||||
|
--color-blue: var(--faded-blue);
|
||||||
|
--color-yellow-rgb: var(--neutral-yellow_x);
|
||||||
|
--color-yellow: var(--neutral-yellow);
|
||||||
|
--color-orange-rgb: var(--neutral-orange_x);
|
||||||
|
--color-orange: var(--neutral-orange);
|
||||||
|
--color-pink-rgb: var(--bright-purple_x);
|
||||||
|
--color-pink: var(--bright-purple);
|
||||||
|
|
||||||
|
--background-primary: var(--light0-hard);
|
||||||
|
--background-primary-alt: var(--light0-hard);
|
||||||
|
--background-secondary: var(--light1);
|
||||||
|
--background-secondary-alt: var(--light1);
|
||||||
|
--background-modifier-border: var(--light2);
|
||||||
|
|
||||||
|
--cursor-line-background: rgba(var(--light1_x), 0.5);
|
||||||
|
|
||||||
|
--text-normal: var(--dark0);
|
||||||
|
--text-faint: var(--dark3);
|
||||||
|
--text-muted: var(--dark2);
|
||||||
|
|
||||||
|
--link-url: var(--neutral-green);
|
||||||
|
|
||||||
|
--h1-color: var(--neutral-red);
|
||||||
|
--h2-color: var(--neutral-yellow);
|
||||||
|
--h3-color: var(--neutral-green);
|
||||||
|
--h4-color: var(--neutral-aqua);
|
||||||
|
--h5-color: var(--neutral-blue);
|
||||||
|
--h6-color: var(--neutral-purple);
|
||||||
|
|
||||||
|
--text-highlight-bg: var(--bright-yellow);
|
||||||
|
--text-highlight-fg: var(--dark0);
|
||||||
|
|
||||||
|
--text-accent: var(--neutral-orange);
|
||||||
|
--text-accent-hover: var(--bright-aqua);
|
||||||
|
|
||||||
|
--tag-color: var(--neutral-aqua);
|
||||||
|
--tag-background: var(--light1);
|
||||||
|
--tag-background-hover: rgba(var(--light1_x), 0.6);
|
||||||
|
|
||||||
|
--titlebar-text-color-focused: var(--bright-red);
|
||||||
|
|
||||||
|
--inline-title-color: var(--bright-yellow);
|
||||||
|
|
||||||
|
--bold-color: var(--neutral-yellow);
|
||||||
|
--italic-color: var(--neutral-yellow);
|
||||||
|
|
||||||
|
--checkbox-color: var(--light4);
|
||||||
|
--checkbox-color-hover: var(--light4);
|
||||||
|
--checkbox-border-color: var(--light4);
|
||||||
|
--checkbox-border-color-hover: var(--light4);
|
||||||
|
--checklist-done-color: rgba(var(--dark2_x), 0.4);
|
||||||
|
|
||||||
|
--table-header-background: rgba(var(--light3_x), 0.4);
|
||||||
|
--table-header-background-hover: var(--light2);
|
||||||
|
--table-row-even-background: rgba(var(--light1_x), 0.2);
|
||||||
|
--table-row-odd-background: rgba(var(--light1_x), 0.7);
|
||||||
|
--table-row-background-hover: var(--light2);
|
||||||
|
|
||||||
|
--text-selection: rgba(var(--neutral-red_x), 0.6);
|
||||||
|
--flashing-background: rgba(var(--neutral-red_x), 0.3);
|
||||||
|
|
||||||
|
--code-normal: var(--bright-blue);
|
||||||
|
--code-background: var(--light1);
|
||||||
|
|
||||||
|
--mermaid-note: var(--bright-blue);
|
||||||
|
--mermaid-actor: var(--light3);
|
||||||
|
--mermaid-loopline: var(--neutral-blue);
|
||||||
|
--mermaid-exclude: var(--light2);
|
||||||
|
--mermaid-seqnum: var(--light0);
|
||||||
|
|
||||||
|
--icon-color-hover: var(--bright-red);
|
||||||
|
--icon-color-focused: var(--bright-blue);
|
||||||
|
|
||||||
|
--nav-item-color-hover: var(--bright-red);
|
||||||
|
--nav-item-color-active: var(--neutral-blue);
|
||||||
|
--nav-file-tag: rgba(var(--neutral-blue_x), 0.9);
|
||||||
|
|
||||||
|
--graph-line: var(--light1);
|
||||||
|
--graph-node: var(--gray);
|
||||||
|
--graph-node-tag: var(--neutral-red);
|
||||||
|
--graph-node-attachment: var(--bright-green);
|
||||||
|
|
||||||
|
--calendar-hover: var(--bright-red);
|
||||||
|
--calendar-background-hover: var(--light1);
|
||||||
|
--calendar-week: var(--bright-red);
|
||||||
|
--calendar-today: var(--bright-red);
|
||||||
|
|
||||||
|
--dataview-key: var(--text-faint);
|
||||||
|
--dataview-key-background: rgba(var(--faded-red_x), 0.3);
|
||||||
|
--dataview-value: var(--text-faint);
|
||||||
|
--dataview-value-background: rgba(var(--neutral-green_x), 0.2);
|
||||||
|
|
||||||
|
--tab-text-color-focused-active: var(--neutral-yellow);
|
||||||
|
--tab-text-color-focused-active-current: var(--bright-red);
|
||||||
|
}
|
||||||
|
|
||||||
|
table
|
||||||
|
{
|
||||||
|
border: 1px solid var(--background-secondary) !important;
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
|
||||||
|
thead
|
||||||
|
{
|
||||||
|
border-bottom: 2px solid var(--background-modifier-border) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
th
|
||||||
|
{
|
||||||
|
font-weight: 600 !important;
|
||||||
|
border: 1px solid var(--background-secondary) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
td
|
||||||
|
{
|
||||||
|
border-left: 1px solid var(--background-secondary) !important;
|
||||||
|
border-right: 1px solid var(--background-secondary) !important;
|
||||||
|
border-bottom: 1px solid var(--background-secondary) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-rendered tbody tr:nth-child(even)
|
||||||
|
{
|
||||||
|
background-color: var(--table-row-even-background) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-rendered tbody tr:nth-child(odd)
|
||||||
|
{
|
||||||
|
background-color: var(--table-row-odd-background) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-rendered tbody tr:nth-child(even):hover,
|
||||||
|
.markdown-rendered tbody tr:nth-child(odd):hover
|
||||||
|
{
|
||||||
|
background-color: var(--table-row-background-hover) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-rendered mark
|
||||||
|
{
|
||||||
|
background-color: var(--text-highlight-bg);
|
||||||
|
color: var(--text-highlight-fg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-rendered mark a
|
||||||
|
{
|
||||||
|
color: var(--red) !important;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-result-file-matched-text
|
||||||
|
{
|
||||||
|
color: var(--text-highlight-fg) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-hashtag-begin:hover, .cm-hashtag-end:hover
|
||||||
|
{
|
||||||
|
color: var(--text-accent);
|
||||||
|
/* background-color: var(--tag-background-hover); */
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=checkbox]
|
||||||
|
{
|
||||||
|
border: 1px solid var(--checkbox-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=checkbox]:checked
|
||||||
|
{
|
||||||
|
background-color: var(--checkbox-color);
|
||||||
|
box-shadow: inset 0 0 0 2px var(--background-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=checkbox]:checked:after
|
||||||
|
{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
code[class*="language-"],
|
||||||
|
pre[class*="language-"]
|
||||||
|
{
|
||||||
|
line-height: var(--line-height-tight) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-url
|
||||||
|
{
|
||||||
|
color: var(--link-url) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-url:hover
|
||||||
|
{
|
||||||
|
color: var(--text-accent-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Keep highlight/marks the same between viewer and editor. */
|
||||||
|
.cm-highlight
|
||||||
|
{
|
||||||
|
color: var(--text-highlight-fg) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Keep inline code the same between viewer and editor. */
|
||||||
|
.cm-inline-code
|
||||||
|
{
|
||||||
|
border-radius: var(--radius-s);
|
||||||
|
font-size: var(--code-size);
|
||||||
|
padding: 0.1em 0.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-line .cm-strong
|
||||||
|
{
|
||||||
|
color: var(--bold-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Keep list bullet padding the same between viewer and editor.
|
||||||
|
* This is annoying with the cursor in the editor as there is a gap.
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
.cm-formatting-list
|
||||||
|
{
|
||||||
|
padding-right: 4px !important;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Keep sub-list indenting the same between viewer and editor.
|
||||||
|
* This assumes --list-indent is default at 2em.
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
.cm-indent
|
||||||
|
{
|
||||||
|
text-indent: 1em !important;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
.mermaid .note
|
||||||
|
{
|
||||||
|
fill: var(--mermaid-note) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mermaid .actor
|
||||||
|
{
|
||||||
|
fill: var(--mermaid-actor) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mermaid .loopLine
|
||||||
|
{
|
||||||
|
stroke: var(--mermaid-loopline) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mermaid .loopText>tspan,
|
||||||
|
.mermaid .entityLabel
|
||||||
|
{
|
||||||
|
fill: var(--neutral-red) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mermaid .exclude-range
|
||||||
|
{
|
||||||
|
fill: var(--mermaid-exclude) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mermaid .sequenceNumber
|
||||||
|
{
|
||||||
|
fill: var(--mermaid-seqnum) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.calendar .week-num
|
||||||
|
{
|
||||||
|
color: var(--calendar-week) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.calendar .today
|
||||||
|
{
|
||||||
|
color: var(--calendar-today) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.calendar .week-num:hover,
|
||||||
|
.calendar .day:hover
|
||||||
|
{
|
||||||
|
color: var(--calendar-hover) !important;
|
||||||
|
background-color: var(--calendar-background-hover) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-embed-title
|
||||||
|
{
|
||||||
|
color: var(--yellow);
|
||||||
|
font-weight: 600 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cm-active
|
||||||
|
{
|
||||||
|
background-color: var(--cursor-line-background) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-file-tag
|
||||||
|
{
|
||||||
|
color: var(--nav-file-tag) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-flashing
|
||||||
|
{
|
||||||
|
background-color: var(--flashing-background) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.inline-field-key
|
||||||
|
{
|
||||||
|
border-top-left-radius: var(--radius-s);
|
||||||
|
border-bottom-left-radius: var(--radius-s);
|
||||||
|
padding-left: 4px;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
font-size: var(--font-smaller);
|
||||||
|
color: var(--dataview-key) !important;
|
||||||
|
background-color: var(--dataview-key-background) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.inline-field-value
|
||||||
|
{
|
||||||
|
border-top-right-radius: var(--radius-s);
|
||||||
|
border-bottom-right-radius: var(--radius-s);
|
||||||
|
padding-right: 4px;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
font-size: var(--font-smaller);
|
||||||
|
color: var(--dataview-value) !important;
|
||||||
|
background-color: var(--dataview-value-background) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.suggestion-highlight
|
||||||
|
{
|
||||||
|
color: var(--bright-red);
|
||||||
|
}
|
||||||
|
|
7
.obsidian/themes/Obsidianite/manifest.json
vendored
Executable file
7
.obsidian/themes/Obsidianite/manifest.json
vendored
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"name": "Obsidianite",
|
||||||
|
"version": "2.0.2",
|
||||||
|
"minAppVersion": "1.1.0",
|
||||||
|
"author": "@bennyxguo",
|
||||||
|
"authorUrl": "https://github.com/bennyxguo"
|
||||||
|
}
|
1481
.obsidian/themes/Obsidianite/theme.css
vendored
Executable file
1481
.obsidian/themes/Obsidianite/theme.css
vendored
Executable file
File diff suppressed because it is too large
Load diff
7
.obsidian/themes/Silence/manifest.json
vendored
Executable file
7
.obsidian/themes/Silence/manifest.json
vendored
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"name": "Silence",
|
||||||
|
"version": "2.0.0",
|
||||||
|
"minAppVersion": "0.16.0",
|
||||||
|
"author": "Luke Ruokaismaki",
|
||||||
|
"authorUrl": "https://rmaki.com.au"
|
||||||
|
}
|
197
.obsidian/themes/Silence/theme.css
vendored
Executable file
197
.obsidian/themes/Silence/theme.css
vendored
Executable file
|
@ -0,0 +1,197 @@
|
||||||
|
|
||||||
|
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap");
|
||||||
|
/*
|
||||||
|
|
||||||
|
░██████╗██╗██╗░░░░░███████╗███╗░░██╗░█████╗░███████╗░░░░░░░█████╗░██████╗░░██████╗██╗██████╗░██╗░█████╗░███╗░░██╗
|
||||||
|
██╔════╝██║██║░░░░░██╔════╝████╗░██║██╔══██╗██╔════╝░░░░░░██╔══██╗██╔══██╗██╔════╝██║██╔══██╗██║██╔══██╗████╗░██║
|
||||||
|
╚█████╗░██║██║░░░░░█████╗░░██╔██╗██║██║░░╚═╝█████╗░░█████╗██║░░██║██████╦╝╚█████╗░██║██║░░██║██║███████║██╔██╗██║
|
||||||
|
░╚═══██╗██║██║░░░░░██╔══╝░░██║╚████║██║░░██╗██╔══╝░░╚════╝██║░░██║██╔══██╗░╚═══██╗██║██║░░██║██║██╔══██║██║╚████║
|
||||||
|
██████╔╝██║███████╗███████╗██║░╚███║╚█████╔╝███████╗░░░░░░╚█████╔╝██████╦╝██████╔╝██║██████╔╝██║██║░░██║██║░╚███║
|
||||||
|
╚═════╝░╚═╝╚══════╝╚══════╝╚═╝░░╚══╝░╚════╝░╚══════╝░░░░░░░╚════╝░╚═════╝░╚═════╝░╚═╝╚═════╝░╚═╝╚═╝░░╚═╝╚═╝░░╚══╝
|
||||||
|
|
||||||
|
Made by: Luke Ruokaismaki
|
||||||
|
Version: 1.0.0
|
||||||
|
Repo: https://github.com/luke-rmaki/silence-obsidian
|
||||||
|
Built with PostCSS and Gulp
|
||||||
|
|
||||||
|
To edit colors, use the vars.css file or edit the variables below if not building from source
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
*/
|
||||||
|
:root {
|
||||||
|
--gray-0: #c2cadc;
|
||||||
|
--gray-1: #b0bbd2;
|
||||||
|
--gray-2: #9dabc8;
|
||||||
|
--gray-3: #899bbd;
|
||||||
|
--gray-4: #7588a9;
|
||||||
|
--gray-5: #60708c;
|
||||||
|
--gray-6: #54627b;
|
||||||
|
--gray-7: #465268;
|
||||||
|
--gray-8: #343e4f;
|
||||||
|
--gray-9: #272f3c;
|
||||||
|
--gray-10: #1e2430;
|
||||||
|
--gray-11: #131821;
|
||||||
|
--gray-12: #0c1018;
|
||||||
|
--serenity-0: #c8fafd;
|
||||||
|
--serenity-1: #a3f0f3;
|
||||||
|
--serenity-2: #92e1e4;
|
||||||
|
--serenity-3: #7bced1;
|
||||||
|
--serenity-4: #6cb8bb;
|
||||||
|
--serenity-5: #60a3a6;
|
||||||
|
--serenity-6: #559193;
|
||||||
|
--serenity-7: #487a7c;
|
||||||
|
--serenity-8: #406769;
|
||||||
|
--serenity-9: #3b5b5c;
|
||||||
|
--serenity-10: #345051;
|
||||||
|
--serenity-11: #293f40;
|
||||||
|
--serenity-12: #1d2c2c;
|
||||||
|
--green-0: #cbfbdf;
|
||||||
|
--green-1: #90f8c0;
|
||||||
|
--green-2: #6ee8aa;
|
||||||
|
--green-3: #60cc95;
|
||||||
|
--green-4: #55b382;
|
||||||
|
--green-5: #4ca376;
|
||||||
|
--green-6: #418b65;
|
||||||
|
--green-7: #357453;
|
||||||
|
--green-8: #2b5b42;
|
||||||
|
--green-9: #234935;
|
||||||
|
--green-10: #193325;
|
||||||
|
--green-11: #142c1f;
|
||||||
|
--green-12: #0d2016;
|
||||||
|
--purple-0: #faf8fc;
|
||||||
|
--purple-1: #e3dcf0;
|
||||||
|
--purple-2: #cec1e5;
|
||||||
|
--purple-3: #b29bd5;
|
||||||
|
--purple-4: #9a7cc6;
|
||||||
|
--purple-5: #8862b9;
|
||||||
|
--purple-6: #6f4b9c;
|
||||||
|
--purple-7: #593b7f;
|
||||||
|
--purple-8: #473164;
|
||||||
|
--purple-9: #35244b;
|
||||||
|
--purple-10: #2a1b3c;
|
||||||
|
--purple-11: #1e132d;
|
||||||
|
--purple-12: #11091b;
|
||||||
|
--red-0: #fef7f8;
|
||||||
|
--red-1: #fad7d8;
|
||||||
|
--red-2: #f7b6b9;
|
||||||
|
--red-3: #f4858c;
|
||||||
|
--red-4: #f25060;
|
||||||
|
--red-5: #dc2d44;
|
||||||
|
--red-6: #b12232;
|
||||||
|
--red-7: #901927;
|
||||||
|
--red-8: #77131e;
|
||||||
|
--red-9: #540a12;
|
||||||
|
--red-10: #40060c;
|
||||||
|
--red-11: #310407;
|
||||||
|
--red-12: #210204;
|
||||||
|
--yellow-0: #fff8eb;
|
||||||
|
--yellow-1: #ffefd1;
|
||||||
|
--yellow-2: #ffe8b7;
|
||||||
|
--yellow-3: #ffe2a1;
|
||||||
|
--yellow-4: #ffdb7e;
|
||||||
|
--yellow-5: #ffd34b;
|
||||||
|
--yellow-6: #f3c600;
|
||||||
|
--yellow-7: #e3b800;
|
||||||
|
--yellow-8: #c5a000;
|
||||||
|
--yellow-9: #a68600;
|
||||||
|
--yellow-10: #876d00;
|
||||||
|
--yellow-11: #705a00;
|
||||||
|
--yellow-12: #5b4800;
|
||||||
|
--cerulean-0: #f7f9ff;
|
||||||
|
--cerulean-1: #d4deff;
|
||||||
|
--cerulean-2: #b1c5ff;
|
||||||
|
--cerulean-3: #7aa4ff;
|
||||||
|
--cerulean-4: #3587ff;
|
||||||
|
--cerulean-5: #0072e4;
|
||||||
|
--cerulean-6: #005ab7;
|
||||||
|
--cerulean-7: #004895;
|
||||||
|
--cerulean-8: #003a7a;
|
||||||
|
--cerulean-9: #002b5e;
|
||||||
|
--cerulean-10: #00214b;
|
||||||
|
--cerulean-11: #00183a;
|
||||||
|
--cerulean-12: #00112d;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
/*! EDITOR */
|
||||||
|
--file-line-width: 70vw;
|
||||||
|
--background-primary: var(--gray-10);
|
||||||
|
--background-secondary: var(--gray-11);
|
||||||
|
--background-secondary-alt: var(--gray-12);
|
||||||
|
--divider-color: var(--gray-8);
|
||||||
|
|
||||||
|
/** Ribbon */
|
||||||
|
--ribbon-background-collapsed: var(--background-secondary);
|
||||||
|
|
||||||
|
/** Scrollbar */
|
||||||
|
--scrollbar-bg: var(--gray-9);
|
||||||
|
--scrollbar-thumb-bg: var(--gray-11);
|
||||||
|
|
||||||
|
/** Titlebar */
|
||||||
|
--titlebar-background-focused: var(--background-secondary);
|
||||||
|
|
||||||
|
/*! TABS */
|
||||||
|
|
||||||
|
/*! ICONS */
|
||||||
|
--icon-color: var(--serenity-1);
|
||||||
|
--icon-color-hover: var(--cerulean-5);
|
||||||
|
|
||||||
|
/*! TEXT COLORS */
|
||||||
|
--h1-color: var(--serenity-1);
|
||||||
|
--h2-color: var(--cerulean-5);
|
||||||
|
--h3-color: var(--green-1);
|
||||||
|
--h4-color: var(--purple-3);
|
||||||
|
--h5-color: var(--cerulean-3);
|
||||||
|
--h6-color: var(--purple-3);
|
||||||
|
--heading-formatting: var(--gray-1);
|
||||||
|
--text-normal: var(--serenity-0);
|
||||||
|
--text-accent: var(--yellow-5);
|
||||||
|
--text-muted: var(--gray-2);
|
||||||
|
--text-faint: var(--gray-3);
|
||||||
|
--list-marker-color: var(--purple-5);
|
||||||
|
--tag-background: var(--gray-9);
|
||||||
|
--hr-color: var(--cerulean-5);
|
||||||
|
--text-error: var(--red-4);
|
||||||
|
|
||||||
|
/** Blockquote */
|
||||||
|
--blockquote-border-thickness: 4px;
|
||||||
|
--blockquote-border-color: var(--interactive-accent);
|
||||||
|
--blockquote-font-style: normal;
|
||||||
|
--blockquote-color: inherit;
|
||||||
|
--blockquote-background-color: transparent;
|
||||||
|
|
||||||
|
/** Checkboxes */
|
||||||
|
--checkbox-radius: var(--radius-s);
|
||||||
|
--checkbox-size: 15px;
|
||||||
|
--checkbox-marker-color: var(--background-primary);
|
||||||
|
--checkbox-color: var(--interactive-accent);
|
||||||
|
--checkbox-color-hover: var(--interactive-accent-hover);
|
||||||
|
--checkbox-border-color: var(--text-faint);
|
||||||
|
--checkbox-border-color-hover: var(--text-muted);
|
||||||
|
--checklist-done-decoration: line-through;
|
||||||
|
--checklist-done-color: var(--gray-2);
|
||||||
|
|
||||||
|
/*! MODAL */
|
||||||
|
--modal-border-color: var(--cerulean-5);
|
||||||
|
--prompt-border-color: var(--cerulean-5);
|
||||||
|
|
||||||
|
/*! INPUTS */
|
||||||
|
--background-modifier-hover: var(--gray-9);
|
||||||
|
--interactive-accent: var(--cerulean-5);
|
||||||
|
}
|
||||||
|
.theme-dark {
|
||||||
|
--text-highlight-bg: var(--yellow-5);
|
||||||
|
--interactive-normal: var(--gray-9);
|
||||||
|
}
|
||||||
|
/*! OVERRIDES */
|
||||||
|
.cm-s-obsidian span.cm-highlight {
|
||||||
|
color: #0c1018;
|
||||||
|
color: var(--gray-12);
|
||||||
|
}
|
||||||
|
.search-result-file-matched-text {
|
||||||
|
color: #0c1018;
|
||||||
|
color: var(--gray-12);
|
||||||
|
}
|
||||||
|
.nav-folder-title-content {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
3
E/403.md
Normal file
3
E/403.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# E_403: Forbidden
|
||||||
|
|
||||||
|
You don't have permission to access this.
|
3
E/404.md
Normal file
3
E/404.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# E_404: Not found.
|
||||||
|
|
||||||
|
The given url does not exist.
|
5
README.md
Normal file
5
README.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# Gulm Wiki 2
|
||||||
|
|
||||||
|
Mal gucken, hoffentlich wird das hier das neue Gulmwiki.
|
||||||
|
|
||||||
|
Wiki-Admin: [[The Wobbler]]
|
30
The Wobbler.md
Normal file
30
The Wobbler.md
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
---
|
||||||
|
tags:
|
||||||
|
- Programming
|
||||||
|
- Python
|
||||||
|
- WikiAdmin
|
||||||
|
aliases:
|
||||||
|
- Wobbl
|
||||||
|
- EKNr1
|
||||||
|
---
|
||||||
|
The Wobbler (aka Wobbl or formerly EKNr1) is a teenager from Germany who programs using python as a hobby.
|
||||||
|
|
||||||
|
#### Projects
|
||||||
|
Some of his projects include:
|
||||||
|
|
||||||
|
| Project | Description |
|
||||||
|
| ------------------------------------------------------------------------ | ---------------------------------- |
|
||||||
|
| [[Wobuzz/Wobuzz\|Wobuzz]] | An audio player written in Python. |
|
||||||
|
| [Wobbl Sand](https://teapot.informationsanarchistik.de/Wobbl/wobbl_sand) | A simple sand simulation. |
|
||||||
|
| | |
|
||||||
|
|
||||||
|
#### Links
|
||||||
|
|
||||||
|
| Website | https://emil.i21k.de/ |
|
||||||
|
| ----------------- | ----------------------------------------------- |
|
||||||
|
| E-Mail | emil@i21k.de |
|
||||||
|
| XMPP | eknr1@jabber.ccc.de |
|
||||||
|
| Git (Forgejo) | https://teapot.informationsanarchistik.de/Wobbl |
|
||||||
|
| Gitlab (inactive) | https://gitlab.com/EKNr1 |
|
||||||
|
| Mastodon | https://dizl.de/@eknr1 |
|
||||||
|
| Peertube | https://peertube.art3mis.de/a/eknr01/ |
|
1
Wobuzz/WOBUZZM3U.md
Normal file
1
Wobuzz/WOBUZZM3U.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
WOBUZZM3U is a playlist file format made for the [[Wobuzz |Wobuzz audio player]]. It is an extension to the M3U file format and is compatible with players that use the M3U format. WOBUZZM3U differs from M3U by using M3U comments for adding additional data, similar to EXTM3U.
|
1
Wobuzz/Wobuzz.md
Normal file
1
Wobuzz/Wobuzz.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Wobuzz is an open source audio player made by [[../The Wobbler|The Wobbler]]. Wobuzz is written in Python using the Qt framework and Pygame. Wobuzz uses the dedicated [[WOBUZZM3U|WOBUZZM3U playlist file format]].
|
129
metadata.json
Normal file
129
metadata.json
Normal file
|
@ -0,0 +1,129 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"fileName": "Wobuzz",
|
||||||
|
"relativePath": "Wobuzz/Wobuzz.md",
|
||||||
|
"links": [
|
||||||
|
{
|
||||||
|
"link": "The Wobbler",
|
||||||
|
"relativePath": "The Wobbler.md"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "WOBUZZM3U",
|
||||||
|
"displayText": "WOBUZZM3U playlist file format",
|
||||||
|
"relativePath": "Wobuzz/WOBUZZM3U.md"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"backlinks": [
|
||||||
|
{
|
||||||
|
"fileName": "WOBUZZM3U",
|
||||||
|
"link": "Wobuzz",
|
||||||
|
"relativePath": "Wobuzz/WOBUZZM3U.md",
|
||||||
|
"displayText": "Wobuzz audio player"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fileName": "The Wobbler",
|
||||||
|
"link": "Wobuzz",
|
||||||
|
"relativePath": "The Wobbler.md"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fileName": "WOBUZZM3U",
|
||||||
|
"relativePath": "Wobuzz/WOBUZZM3U.md",
|
||||||
|
"links": [
|
||||||
|
{
|
||||||
|
"link": "Wobuzz",
|
||||||
|
"displayText": "Wobuzz audio player",
|
||||||
|
"relativePath": "Wobuzz/Wobuzz.md"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"backlinks": [
|
||||||
|
{
|
||||||
|
"fileName": "Wobuzz",
|
||||||
|
"link": "WOBUZZM3U",
|
||||||
|
"relativePath": "Wobuzz/Wobuzz.md",
|
||||||
|
"displayText": "WOBUZZM3U playlist file format"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fileName": "The Wobbler",
|
||||||
|
"relativePath": "The Wobbler.md",
|
||||||
|
"tags": [
|
||||||
|
"programming",
|
||||||
|
"python",
|
||||||
|
"wikiadmin"
|
||||||
|
],
|
||||||
|
"frontmatter": {
|
||||||
|
"product": "Blaah"
|
||||||
|
},
|
||||||
|
"aliases": [
|
||||||
|
"Wobbl",
|
||||||
|
"EKNr1"
|
||||||
|
],
|
||||||
|
"headings": [
|
||||||
|
{
|
||||||
|
"heading": "Projects",
|
||||||
|
"level": 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"heading": "Links",
|
||||||
|
"level": 4
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"links": [
|
||||||
|
{
|
||||||
|
"link": "Wobuzz",
|
||||||
|
"relativePath": "Wobuzz/Wobuzz.md"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"backlinks": [
|
||||||
|
{
|
||||||
|
"fileName": "Wobuzz",
|
||||||
|
"link": "The Wobbler",
|
||||||
|
"relativePath": "Wobuzz/Wobuzz.md"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fileName": "README",
|
||||||
|
"link": "The Wobbler",
|
||||||
|
"relativePath": "README.md"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fileName": "README",
|
||||||
|
"relativePath": "README.md",
|
||||||
|
"headings": [
|
||||||
|
{
|
||||||
|
"heading": "Gulm Wiki 2",
|
||||||
|
"level": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"links": [
|
||||||
|
{
|
||||||
|
"link": "The Wobbler",
|
||||||
|
"relativePath": "The Wobbler.md"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fileName": "404",
|
||||||
|
"relativePath": "E/404.md",
|
||||||
|
"headings": [
|
||||||
|
{
|
||||||
|
"heading": "E_404: Not found.",
|
||||||
|
"level": 1
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fileName": "403",
|
||||||
|
"relativePath": "E/403.md",
|
||||||
|
"headings": [
|
||||||
|
{
|
||||||
|
"heading": "E_403: Forbidden",
|
||||||
|
"level": 1
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
Loading…
Add table
Add a link
Reference in a new issue