mirror of
https://github.com/pxdg-afk/paxad.git
synced 2026-08-22 22:21:07 -04:00
Compare commits
15 Commits
71c0d4cae7
...
29299f9f46
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
29299f9f46 | ||
|
|
a67c128883 | ||
|
|
9b0de082e4 | ||
|
|
009eaa6714 | ||
|
|
3bb2a90ddf | ||
|
|
d8adef1b54 | ||
|
|
e1f0c97588 | ||
|
|
3e5055d189 | ||
|
|
09caf9499f | ||
|
|
8ac14a4df7 | ||
|
|
52bf85dd31 | ||
|
|
a75ad2126b | ||
|
|
bac90ae0a3 | ||
|
|
bf5219800e | ||
|
|
6beb3b8069 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -4,10 +4,10 @@ node_modules
|
||||
public
|
||||
prof
|
||||
tsconfig.tsbuildinfo
|
||||
.obsidian
|
||||
.quartz-cache
|
||||
private/
|
||||
.replit
|
||||
replit.nix
|
||||
.quartz/
|
||||
quartz/cli/tui/dist/
|
||||
.obsidian/workspace.json
|
||||
|
||||
8
.obsidian/app.json
vendored
Normal file
8
.obsidian/app.json
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"userIgnoreFilters": [
|
||||
"docs",
|
||||
"public/",
|
||||
"quartz/",
|
||||
"node_modules/"
|
||||
]
|
||||
}
|
||||
5
.obsidian/appearance.json
vendored
Normal file
5
.obsidian/appearance.json
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"cssTheme": "Dracula Official",
|
||||
"textFontFamily": "Corben,Georgia",
|
||||
"monospaceFontFamily": "IBM Plex Mono,Monaco"
|
||||
}
|
||||
4
.obsidian/community-plugins.json
vendored
Normal file
4
.obsidian/community-plugins.json
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
[
|
||||
"dataview",
|
||||
"quartz-syncer"
|
||||
]
|
||||
33
.obsidian/core-plugins.json
vendored
Normal file
33
.obsidian/core-plugins.json
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"file-explorer": true,
|
||||
"global-search": true,
|
||||
"switcher": true,
|
||||
"graph": true,
|
||||
"backlink": true,
|
||||
"canvas": true,
|
||||
"outgoing-link": true,
|
||||
"tag-pane": true,
|
||||
"footnotes": false,
|
||||
"properties": true,
|
||||
"page-preview": true,
|
||||
"daily-notes": true,
|
||||
"templates": true,
|
||||
"note-composer": true,
|
||||
"command-palette": true,
|
||||
"slash-command": false,
|
||||
"editor-status": true,
|
||||
"bookmarks": true,
|
||||
"markdown-importer": false,
|
||||
"zk-prefixer": false,
|
||||
"random-note": false,
|
||||
"outline": true,
|
||||
"word-count": true,
|
||||
"slides": false,
|
||||
"audio-recorder": false,
|
||||
"workspaces": false,
|
||||
"file-recovery": true,
|
||||
"publish": false,
|
||||
"sync": false,
|
||||
"bases": true,
|
||||
"webviewer": false
|
||||
}
|
||||
20876
.obsidian/plugins/dataview/main.js
vendored
Normal file
20876
.obsidian/plugins/dataview/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
11
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "dataview",
|
||||
"name": "Dataview",
|
||||
"version": "0.5.68",
|
||||
"minAppVersion": "0.13.11",
|
||||
"description": "Complex data views for the data-obsessed.",
|
||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||
"authorUrl": "https://github.com/blacksmithgu",
|
||||
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
141
.obsidian/plugins/dataview/styles.css
vendored
Normal file
141
.obsidian/plugins/dataview/styles.css
vendored
Normal file
@@ -0,0 +1,141 @@
|
||||
.block-language-dataview {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Table Views **/
|
||||
/*****************/
|
||||
|
||||
/* List View Default Styling; rendered internally as a table. */
|
||||
.table-view-table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr:hover {
|
||||
background-color: var(--table-row-background-hover);
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr > th {
|
||||
font-weight: 700;
|
||||
font-size: larger;
|
||||
border-top: none;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
border-bottom: solid;
|
||||
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr > td {
|
||||
text-align: left;
|
||||
border: none;
|
||||
font-weight: 400;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table ul, .table-view-table ol {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Rendered value styling for any view. */
|
||||
.dataview-result-list-root-ul {
|
||||
padding: 0em !important;
|
||||
margin: 0em !important;
|
||||
}
|
||||
|
||||
.dataview-result-list-ul {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Generic grouping styling. */
|
||||
.dataview.result-group {
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
/*******************/
|
||||
/** Inline Fields **/
|
||||
/*******************/
|
||||
|
||||
.dataview.inline-field-key {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-primary-alt);
|
||||
color: var(--nav-item-color-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--nav-item-color-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-standalone-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--nav-item-color-selected);
|
||||
}
|
||||
|
||||
/***************/
|
||||
/** Task View **/
|
||||
/***************/
|
||||
|
||||
.dataview.task-list-item, .dataview.task-list-basic-item {
|
||||
margin-top: 3px;
|
||||
margin-bottom: 3px;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
||||
background-color: var(--text-selection);
|
||||
box-shadow: -40px 0 0 var(--text-selection);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Error Views **/
|
||||
/*****************/
|
||||
|
||||
div.dataview-error-box {
|
||||
width: 100%;
|
||||
min-height: 150px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: 4px dashed var(--background-secondary);
|
||||
}
|
||||
|
||||
.dataview-error-message {
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*************************/
|
||||
/** Additional Metadata **/
|
||||
/*************************/
|
||||
|
||||
.dataview.small-text {
|
||||
font-size: smaller;
|
||||
color: var(--text-muted);
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.dataview.small-text::before {
|
||||
content: "(";
|
||||
}
|
||||
|
||||
.dataview.small-text::after {
|
||||
content: ")";
|
||||
}
|
||||
50
.obsidian/plugins/quartz-syncer/data.json
vendored
Normal file
50
.obsidian/plugins/quartz-syncer/data.json
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"git": {
|
||||
"remoteUrl": "https://github.com/pxdg-afk/paxad.git",
|
||||
"branch": "v5",
|
||||
"corsProxyUrl": "",
|
||||
"auth": {
|
||||
"type": "basic",
|
||||
"username": "pxdg-afk"
|
||||
},
|
||||
"providerHint": "github"
|
||||
},
|
||||
"vaultPath": "content/",
|
||||
"contentFolder": "content",
|
||||
"publishFrontmatterKey": "publish",
|
||||
"allNotesPublishableByDefault": false,
|
||||
"showCreatedTimestamp": true,
|
||||
"showUpdatedTimestamp": true,
|
||||
"showPublishedTimestamp": false,
|
||||
"usePermalink": false,
|
||||
"includeAllFrontmatter": false,
|
||||
"frontmatterFormat": "yaml",
|
||||
"createdTimestampKey": "created, created_at, date",
|
||||
"updatedTimestampKey": "modified, lastmod, updated, last-modified",
|
||||
"publishedTimestampKey": "published, publishDate, date",
|
||||
"timestampFormat": "MMM dd, yyyy h:mm a",
|
||||
"useCache": true,
|
||||
"syncCache": true,
|
||||
"persistCache": false,
|
||||
"cacheTimestamp": 0,
|
||||
"cache": "{}",
|
||||
"useAutoCardLink": false,
|
||||
"useDataview": true,
|
||||
"useDatacore": false,
|
||||
"useExcalidraw": false,
|
||||
"useFantasyStatblocks": false,
|
||||
"useBases": true,
|
||||
"useCanvas": true,
|
||||
"manageSyncerStyles": true,
|
||||
"lastUsedSettingsTab": "git",
|
||||
"noteSettingsIsInitialized": true,
|
||||
"pluginVersion": "1.15.3",
|
||||
"lastUpstreamCommitSha": "",
|
||||
"upgradeCheckStrategy": "version",
|
||||
"diffViewStyle": "auto",
|
||||
"ENABLE_DEVELOPER_TOOLS": false,
|
||||
"logLevel": {
|
||||
"value": 99,
|
||||
"name": "OFF"
|
||||
}
|
||||
}
|
||||
1297
.obsidian/plugins/quartz-syncer/main.js
vendored
Normal file
1297
.obsidian/plugins/quartz-syncer/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
15
.obsidian/plugins/quartz-syncer/manifest.json
vendored
Normal file
15
.obsidian/plugins/quartz-syncer/manifest.json
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"id": "quartz-syncer",
|
||||
"name": "Quartz Syncer",
|
||||
"version": "1.15.3",
|
||||
"minAppVersion": "1.12.4",
|
||||
"description": "Manage and publish your notes to Quartz, the fast, batteries-included static-site generator.",
|
||||
"author": "Emile Bangma",
|
||||
"authorUrl": "https://github.com/saberzero1",
|
||||
"fundingUrl": {
|
||||
"Buy Me a Coffee": "https://buymeacoffee.com/saberzero1",
|
||||
"GitHub Sponsor": "https://github.com/sponsors/saberzero1",
|
||||
"Ko-Fi": "https://ko-fi.com/saberzero1"
|
||||
},
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
719
.obsidian/plugins/quartz-syncer/styles.css
vendored
Normal file
719
.obsidian/plugins/quartz-syncer/styles.css
vendored
Normal file
@@ -0,0 +1,719 @@
|
||||
/* Quartz Syncer Publication Center */
|
||||
.quartz-syncer-publisher-title-separator {
|
||||
margin-top: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.quartz-syncer-publisher-footer-separator {
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.quartz-syncer-publisher-footer {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.quartz-syncer-publisher-loading-msg {
|
||||
font-size: var(--font-ui-larger);
|
||||
display: flex;
|
||||
flex-grow: 0; /* Prevnets the loading message from stretching the container */
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.quartz-syncer-progress-bar-text {
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
button.quartz-syncer-publisher-button {
|
||||
background-color: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
cursor: var(--cursor);
|
||||
font-weight: var(--font-bold);
|
||||
}
|
||||
|
||||
.quartz-syncer-publisher-loading-container {
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.quartz-syncer-publisher-loading-bar {
|
||||
background-color: var(--interactive-accent);
|
||||
height: 100%;
|
||||
transition: all 0.5s ease-in-out;
|
||||
}
|
||||
|
||||
.quartz-syncer-publisher-published {
|
||||
color: var(--text-success, var(--color-green));
|
||||
}
|
||||
|
||||
.quartz-syncer-publisher-deleted {
|
||||
color: var(--text-error, var(--color-red));
|
||||
}
|
||||
|
||||
/* Quartz Syncer Diff View */
|
||||
.quartz-syncer-diff-modal {
|
||||
max-width: var(--modal-max-width, 100%);
|
||||
width: var(--modal-width, 100%);
|
||||
}
|
||||
|
||||
body.is-mobile .quartz-syncer-diff-modal {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
body.is-mobile .quartz-syncer-diff-view-container {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
pre.quartz-syncer-diff-view {
|
||||
display: block;
|
||||
white-space: pre;
|
||||
overflow-wrap: break-word;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
pre.quartz-syncer-diff-view.quartz-syncer-diff-added {
|
||||
background-color: rgb(
|
||||
var(--background-modifier-success-rgb, var(--color-green-rgb)),
|
||||
0.5
|
||||
);
|
||||
color: var(--text-on-accent);
|
||||
}
|
||||
|
||||
pre.quartz-syncer-diff-view.quartz-syncer-diff-removed {
|
||||
background-color: rgb(
|
||||
var(--background-modifier-error-rgb, var(--color-red-rgb)),
|
||||
0.5
|
||||
);
|
||||
color: var(--text-on-accent);
|
||||
}
|
||||
|
||||
.quartz-syncer-diff-line {
|
||||
white-space: pre;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.quartz-syncer-diff-line-added {
|
||||
background-color: var(--text-success, var(--color-green));
|
||||
color: var(--text-on-accent);
|
||||
text-decoration: overline;
|
||||
}
|
||||
|
||||
.quartz-syncer-diff-line-removed {
|
||||
background-color: var(--text-error, var(--color-red));
|
||||
color: var(--text-on-accent);
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
/* Quartz Syncer Tree Selectors */
|
||||
.quartz-syncer-modal-content ul {
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
padding-left: 1.2rem;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.quartz-syncer-modal-content li {
|
||||
margin: 0.2rem 0;
|
||||
}
|
||||
|
||||
.quartz-syncer-modal-content .no-arrow {
|
||||
padding-left: calc(var(--icon-size) + 2px);
|
||||
}
|
||||
|
||||
.quartz-syncer-modal-content .arrow {
|
||||
cursor: var(--cursor);
|
||||
display: inline-block;
|
||||
transition: transform 200ms;
|
||||
}
|
||||
|
||||
/* arrowDown svelte variable */
|
||||
.quartz-syncer-modal-content .arrowDown {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
/* isRoot svelte variable */
|
||||
.quartz-syncer-modal-content ul.isRoot {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.quartz-syncer-modal-content .root-header {
|
||||
font-weight: var(--font-bold);
|
||||
font-size: var(--font-ui-larger);
|
||||
}
|
||||
|
||||
input:indeterminate {
|
||||
background-color: var(--checkbox-color);
|
||||
border-color: var(--checkbox-color);
|
||||
}
|
||||
|
||||
input[type="checkbox"]:indeterminate::after {
|
||||
content: "";
|
||||
top: -1px;
|
||||
left: -1px;
|
||||
position: absolute;
|
||||
width: var(--checkbox-size);
|
||||
height: var(--checkbox-size);
|
||||
display: block;
|
||||
background-color: var(--checkbox-marker-color);
|
||||
mask-position: 52% 52%;
|
||||
mask-size: 65%;
|
||||
mask-repeat: no-repeat;
|
||||
mask-image: url('data:image/svg+xml; utf8,<svg fill="none" width="12px" height="12px" viewBox="0 0 32 32" id="icon" xmlns="http://www.w3.org/2000/svg"><rect fill="%23000000" x="4" y="4" width="24" height="24"/></svg>');
|
||||
}
|
||||
|
||||
.quartz-syncer-icon-diff {
|
||||
cursor: var(--cursor);
|
||||
display: inline-block;
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
/* File type badges */
|
||||
.quartz-syncer-file-badge {
|
||||
font-size: 9px;
|
||||
font-weight: var(--font-bold);
|
||||
padding: 1px 4px;
|
||||
border-radius: var(--radius-s);
|
||||
margin-left: 6px;
|
||||
text-transform: uppercase;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.quartz-syncer-badge-base {
|
||||
background-color: rgb(var(--color-purple-rgb, 147, 51, 234), 0.2);
|
||||
color: var(--text-accent, var(--color-purple, #9333ea));
|
||||
border: 1px solid rgb(var(--color-purple-rgb, 147, 51, 234), 0.3);
|
||||
}
|
||||
|
||||
.quartz-syncer-badge-canvas {
|
||||
background-color: rgb(var(--color-cyan-rgb, 6, 182, 212), 0.2);
|
||||
color: var(--text-accent, var(--color-cyan, #06b6d4));
|
||||
border: 1px solid rgb(var(--color-cyan-rgb, 6, 182, 212), 0.3);
|
||||
}
|
||||
|
||||
/* Quartz Syncer Settings */
|
||||
|
||||
.quartz-syncer-settings button:disabled,
|
||||
.quartz-syncer-publish-status-view button:disabled {
|
||||
pointer-events: none;
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.quartz-syncer-publish-status-view ul {
|
||||
list-style-type: none;
|
||||
position: relative;
|
||||
margin-left: 5px;
|
||||
margin-top: 0;
|
||||
max-height: 250px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.quartz-syncer-publish-status-view h2 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.quartz-syncer-publish-status-view .collapsable {
|
||||
cursor: var(--cursor);
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.quartz-syncer-settings-enabled
|
||||
> .setting-item-info
|
||||
> .setting-item-name::after {
|
||||
content: " (plugin enabled)";
|
||||
color: var(--text-success, var(--color-green));
|
||||
font-weight: var(--font-bold);
|
||||
}
|
||||
|
||||
.quartz-syncer-settings-disabled > .setting-item-info > .setting-item-name {
|
||||
color: var(--text-error, var(--color-red));
|
||||
}
|
||||
|
||||
.quartz-syncer-settings-disabled
|
||||
> .setting-item-info
|
||||
> .setting-item-name::after {
|
||||
content: " (plugin disabled)";
|
||||
color: var(--text-error, var(--color-red));
|
||||
font-weight: var(--font-bold);
|
||||
}
|
||||
|
||||
.quartz-syncer-settings-disabled > .setting-item-control > .checkbox-container {
|
||||
background-color: var(--text-error, var(--color-red));
|
||||
}
|
||||
|
||||
.quartz-syncer-settings .setting-item-heading {
|
||||
margin-top: var(--heading-spacing);
|
||||
}
|
||||
|
||||
.quartz-syncer-settings-description {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.quartz-syncer-settings .svg-icon {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.quartz-syncer-navigation-item-icon > svg.svg-icon {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.quartz-syncer-svg-icon {
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
/* GitHub connection status */
|
||||
.quartz-syncer-connection-status {
|
||||
font-weight: var(--font-bold);
|
||||
}
|
||||
|
||||
.quartz-syncer-connection-status-failed {
|
||||
color: var(--text-error, var(--color-red));
|
||||
}
|
||||
|
||||
.quartz-syncer-connection-status-success {
|
||||
color: var(--text-success, var(--color-green));
|
||||
}
|
||||
|
||||
.quartz-syncer-connection-status-pending {
|
||||
color: var(--text-warning, var(--color-orange));
|
||||
}
|
||||
|
||||
/* Cog animation */
|
||||
@keyframes quartz-syncer-rotate-animation {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.quartz-syncer-rotate {
|
||||
animation: quartz-syncer-rotate-animation 4s linear infinite;
|
||||
}
|
||||
|
||||
.quartz-syncer-cog {
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.quartz-syncer-cog-big {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
/* Progress bar */
|
||||
.quartz-syncer-progress-bar-container {
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
/* Publication center */
|
||||
|
||||
.quartz-syncer-modal-content:first-child {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Folder select */
|
||||
.quartz-syncer-settings .search-input-container::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.quartz-syncer-settings .search-input-container input {
|
||||
padding-inline-start: 0;
|
||||
padding: 4px 8px;
|
||||
}
|
||||
|
||||
.quartz-syncer-settings.quartz-syncer-desktop .search-input-container input {
|
||||
width: unset;
|
||||
}
|
||||
|
||||
/* Settings tabs */
|
||||
.quartz-syncer-navigation-item {
|
||||
cursor: var(--cursor);
|
||||
border: var(--border-width) solid var(--background-modifier-border);
|
||||
border-radius: var(--radius-m) var(--radius-m) var(--radius-s)
|
||||
var(--radius-s);
|
||||
font-weight: var(--font-bold);
|
||||
font-size: var(--font-text-size);
|
||||
display: flex;
|
||||
flex-shrink: 0;
|
||||
flex-direction: row;
|
||||
white-space: nowrap;
|
||||
padding: 4px 6px;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
overflow: hidden;
|
||||
background-color: var(--background-secondary-alt);
|
||||
transition:
|
||||
color 0.25s ease-in-out,
|
||||
padding 0.25s ease-in-out,
|
||||
background-color 0.35s cubic-bezier(0.45, 0.25, 0.83, 0.67),
|
||||
max-width 0.35s cubic-bezier(0.57, 0.04, 0.58, 1);
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
@media screen and (width <= 1325px) {
|
||||
.quartz-syncer-navigation-item.quartz-syncer-desktop {
|
||||
max-width: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (width <= 800px) {
|
||||
.quartz-syncer-navigation-item.quartz-syncer-mobile {
|
||||
max-width: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
.quartz-syncer-navigation-item-icon,
|
||||
.quartz-syncer-warning {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.quartz-syncer-navigation-item:hover {
|
||||
border-color: var(--interactive-accent-hover);
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.quartz-syncer-navigation-item.quartz-syncer-navigation-item-active {
|
||||
background-color: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
padding: 4px 9px;
|
||||
max-width: 100%;
|
||||
border: var(--border-width) solid var(--background-modifier-border);
|
||||
border-radius: var(--radius-m) var(--radius-m) var(--radius-s)
|
||||
var(--radius-s);
|
||||
border-bottom: 0;
|
||||
transition:
|
||||
color 0.25s ease-in-out,
|
||||
padding 0.25s ease-in-out,
|
||||
background-color 0.35s cubic-bezier(0.45, 0.25, 0.83, 0.67),
|
||||
max-width 0.45s cubic-bezier(0.57, 0.04, 0.58, 1) 0.2s;
|
||||
}
|
||||
|
||||
.quartz-syncer-settings {
|
||||
transition: transform 400ms 0s;
|
||||
}
|
||||
|
||||
.quartz-syncer-setting-title {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
justify-content: space-between;
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.quartz-syncer-setting-title.quartz-syncer-mobile {
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.quartz-syncer-setting-title h1 {
|
||||
font-weight: 900;
|
||||
margin-top: 6px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.quartz-syncer-setting-header {
|
||||
margin-bottom: 24px;
|
||||
overflow: auto hidden;
|
||||
}
|
||||
|
||||
.quartz-syncer-setting-header .quartz-syncer-setting-tab-group {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
overflow-x: auto;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.quartz-syncer-setting-tab-group {
|
||||
margin-top: 6px;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
border-bottom: var(--border-width) solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.quartz-syncer-setting-header .quartz-syncer-tab-settings {
|
||||
padding: 6px 12px;
|
||||
font-weight: 600;
|
||||
cursor: var(--cursor);
|
||||
white-space: nowrap;
|
||||
border-left: var(--border-width) solid var(--background-modifier-border);
|
||||
border-right: var(--border-width) solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.quartz-syncer-setting-header .quartz-syncer-tab-settings:first-child {
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
.quartz-syncer-setting-header
|
||||
.quartz-syncer-tab-settings.quartz-syncer-tab-settings-active {
|
||||
border-bottom: var(--border-width) solid var(--background-primary);
|
||||
transform: translateY(2px);
|
||||
border-radius: var(--radius-s);
|
||||
border-left: var(--border-width) solid var(--background-modifier-border);
|
||||
border-top: var(--border-width) solid var(--background-modifier-border);
|
||||
border-right: var(--border-width) solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.quartz-syncer-setting-content
|
||||
.quartz-syncer-tab-settings.quartz-syncer-tab-settings-active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.quartz-syncer-setting-content
|
||||
.quartz-syncer-tab-settings:not(.quartz-syncer-tab-settings-active) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
body.is-phone
|
||||
.quartz-syncer-navigation-item:not(.quartz-syncer-navigation-item-active)
|
||||
> span:nth-child(2),
|
||||
body.is-tablet
|
||||
.quartz-syncer-navigation-item:not(.quartz-syncer-navigation-item-active)
|
||||
> span:nth-child(2),
|
||||
body.is-mobile
|
||||
.quartz-syncer-navigation-item:not(.quartz-syncer-navigation-item-active)
|
||||
> span:nth-child(2) {
|
||||
border: 0;
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Token/Secret Storage UI */
|
||||
.quartz-syncer-token-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.quartz-syncer-token-status {
|
||||
font-size: var(--font-ui-smaller);
|
||||
padding: 4px 8px;
|
||||
border-radius: var(--radius-s);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.quartz-syncer-token-status::before {
|
||||
content: "";
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.quartz-syncer-token-status-set {
|
||||
background-color: rgb(var(--color-green-rgb), 0.15);
|
||||
color: var(--text-success, var(--color-green));
|
||||
}
|
||||
|
||||
.quartz-syncer-token-status-set::before {
|
||||
background-color: var(--text-success, var(--color-green));
|
||||
}
|
||||
|
||||
.quartz-syncer-token-status-unset {
|
||||
background-color: rgb(var(--color-orange-rgb), 0.15);
|
||||
color: var(--text-warning, var(--color-orange));
|
||||
}
|
||||
|
||||
.quartz-syncer-token-status-unset::before {
|
||||
background-color: var(--text-warning, var(--color-orange));
|
||||
}
|
||||
|
||||
.quartz-syncer-token-input-container {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.quartz-syncer-token-input {
|
||||
flex: 1;
|
||||
padding: 6px 10px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: var(--radius-s);
|
||||
background-color: var(--background-primary);
|
||||
color: var(--text-normal);
|
||||
font-family: var(--font-monospace);
|
||||
}
|
||||
|
||||
.quartz-syncer-token-input:focus {
|
||||
border-color: var(--interactive-accent);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.quartz-syncer-token-toggle {
|
||||
padding: 6px;
|
||||
border: none;
|
||||
background: transparent;
|
||||
cursor: var(--cursor);
|
||||
color: var(--text-muted);
|
||||
border-radius: var(--radius-s);
|
||||
}
|
||||
|
||||
.quartz-syncer-token-toggle:hover {
|
||||
color: var(--text-normal);
|
||||
background-color: var(--background-modifier-hover);
|
||||
}
|
||||
|
||||
.quartz-syncer-token-buttons {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.quartz-syncer-token-buttons button {
|
||||
padding: 6px 12px;
|
||||
border-radius: var(--radius-s);
|
||||
cursor: var(--cursor);
|
||||
font-size: var(--font-ui-small);
|
||||
}
|
||||
|
||||
/* Plugin Browser Modal */
|
||||
.quartz-syncer-plugin-browser {
|
||||
width: 700px;
|
||||
max-width: 90vw;
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser .modal-content {
|
||||
max-height: 70vh;
|
||||
overflow-y: auto;
|
||||
padding: 0 16px 16px;
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-loading {
|
||||
text-align: center;
|
||||
color: var(--text-muted);
|
||||
padding: 24px 0;
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-controls {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin-bottom: 12px;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
background: var(--modal-background);
|
||||
padding: 8px 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-search {
|
||||
flex: 1;
|
||||
padding: 6px 10px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: var(--radius-s);
|
||||
background: var(--background-primary);
|
||||
color: var(--text-normal);
|
||||
font-size: var(--font-ui-small);
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-tag-filter {
|
||||
padding: 6px 10px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: var(--radius-s);
|
||||
background: var(--background-primary);
|
||||
color: var(--text-normal);
|
||||
font-size: var(--font-ui-small);
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-empty {
|
||||
text-align: center;
|
||||
color: var(--text-muted);
|
||||
padding: 16px 0;
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-card {
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: var(--radius-m);
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-card-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-card-name {
|
||||
font-weight: var(--font-bold);
|
||||
font-size: var(--font-ui-medium);
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-badge-official {
|
||||
font-size: var(--font-ui-smaller);
|
||||
color: var(--text-on-accent);
|
||||
background: var(--interactive-accent);
|
||||
padding: 1px 6px;
|
||||
border-radius: var(--radius-s);
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-card-desc {
|
||||
color: var(--text-muted);
|
||||
font-size: var(--font-ui-small);
|
||||
margin: 0 0 8px;
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-card-footer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-card-tags {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-tag {
|
||||
font-size: var(--font-ui-smaller);
|
||||
color: var(--text-muted);
|
||||
background: var(--background-secondary);
|
||||
padding: 1px 6px;
|
||||
border-radius: var(--radius-s);
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-installed {
|
||||
font-size: var(--font-ui-small);
|
||||
color: var(--text-success);
|
||||
font-weight: var(--font-bold);
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-install-btn {
|
||||
padding: 4px 12px;
|
||||
border-radius: var(--radius-s);
|
||||
background: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
cursor: var(--cursor);
|
||||
font-size: var(--font-ui-small);
|
||||
font-weight: var(--font-bold);
|
||||
border: none;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.quartz-syncer-plugin-browser-install-btn:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
7
.obsidian/themes/Dracula Official/manifest.json
vendored
Normal file
7
.obsidian/themes/Dracula Official/manifest.json
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"name": "Dracula Official",
|
||||
"version": "1.1.5",
|
||||
"minAppVersion": "0.16.0",
|
||||
"author": "Dracula",
|
||||
"authorUrl": "https://gitlab.com/chrismettal"
|
||||
}
|
||||
864
.obsidian/themes/Dracula Official/theme.css
vendored
Normal file
864
.obsidian/themes/Dracula Official/theme.css
vendored
Normal file
@@ -0,0 +1,864 @@
|
||||
.theme-dark,
|
||||
.theme-light{
|
||||
|
||||
/* Obsidian "Dark" import so light mode looks the same*/
|
||||
--color-scheme: dark;
|
||||
--highlight-mix-blend-mode: lighten;
|
||||
--mono-rgb-0: 0, 0, 0;
|
||||
--mono-rgb-100: 255, 255, 255;
|
||||
--color-red-rgb: 251, 70, 76;
|
||||
--color-red: #fb464c;
|
||||
--color-orange-rgb: 233, 151, 63;
|
||||
--color-orange: #e9973f;
|
||||
--color-yellow-rgb: 224, 222, 113;
|
||||
--color-yellow: #e0de71;
|
||||
--color-green-rgb: 68, 207, 110;
|
||||
--color-green: #44cf6e;
|
||||
--color-cyan-rgb: 83, 223, 221;
|
||||
--color-cyan: #53dfdd;
|
||||
--color-blue-rgb: 2, 122, 255;
|
||||
--color-blue: #027aff;
|
||||
--color-purple-rgb: 168, 130, 255;
|
||||
--color-purple: #a882ff;
|
||||
--color-pink-rgb: 250, 153, 205;
|
||||
--color-pink: #fa99cd;
|
||||
--color-base-00: #1e1e1e;
|
||||
--color-base-05: #212121;
|
||||
--color-base-10: #242424;
|
||||
--color-base-20: #262626;
|
||||
--color-base-25: #2a2a2a;
|
||||
--color-base-30: #363636;
|
||||
--color-base-35: #3f3f3f;
|
||||
--color-base-40: #555555;
|
||||
--color-base-50: #666666;
|
||||
--color-base-60: #999999;
|
||||
--color-base-70: #bababa;
|
||||
--color-base-100: #dadada;
|
||||
--color-accent-hsl: var(--accent-h), var(--accent-s), var(--accent-l);
|
||||
--color-accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
|
||||
--color-accent-1: hsl(var(--accent-h), var(--accent-s), calc(var(--accent-l) - 3.8%));
|
||||
--color-accent-2: hsl(var(--accent-h), var(--accent-s), calc(var(--accent-l) + 3.8%));
|
||||
--background-modifier-form-field: var(--color-base-25);
|
||||
--interactive-normal: var(--color-base-30);
|
||||
--interactive-hover: var(--color-base-35);
|
||||
--background-modifier-box-shadow: rgba(0, 0, 0, 0.3);
|
||||
--background-modifier-cover: rgba(10, 10, 10, 0.4);
|
||||
--text-selection: hsla(var(--interactive-accent-hsl), 0.25);
|
||||
--input-shadow: inset 0 0.5px 0.5px 0.5px rgba(255, 255, 255, 0.09), 0 2px 4px 0 rgba(0,0,0,.15), 0 1px 1.5px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.2), 0 0 0 0 transparent;
|
||||
--input-shadow-hover: inset 0 0.5px 1px 0.5px rgba(255, 255, 255, 0.16), 0 2px 3px 0 rgba(0,0,0,.3), 0 1px 1.5px 0 rgba(0,0,0,.2), 0 1px 2px 0 rgba(0,0,0,.4), 0 0 0 0 transparent;
|
||||
--shadow-s: 0px 1px 2px rgba(0, 0, 0, 0.121), 0px 3.4px 6.7px rgba(0, 0, 0, 0.179), 0px 15px 30px rgba(0, 0, 0, 0.3);
|
||||
--shadow-l: 0px 1.8px 7.3px rgba(0, 0, 0, 0.071), 0px 6.3px 24.7px rgba(0, 0, 0, 0.112), 0px 30px 90px rgba(0, 0, 0, 0.2);
|
||||
--pdf-shadow: 0 0 0 1px var(--background-modifier-border);
|
||||
--pdf-thumbnail-shadow: 0 0 0 1px var(--background-modifier-border);
|
||||
|
||||
/* Actual Dracula colors*/
|
||||
--background-primary: #282a36;
|
||||
--background-primary-alt: #44475a;
|
||||
--background-secondary: #20212B;
|
||||
--background-secondary-alt: #282a36;
|
||||
--text-normal: #f8f8f2;
|
||||
--text-on-accent: #282a36;
|
||||
--text-title-h1: #bd93f9;
|
||||
--text-title-h2: #ffb86c;
|
||||
--text-title-h3: #50fa7b;
|
||||
--text-title-h4: #ff5555;
|
||||
--text-title-h5: #f1fa8c;
|
||||
--text-title-h6: #bd93f4;
|
||||
--canvas-color-1: 255, 85, 85;
|
||||
--canvas-color-2: 255, 184, 108;
|
||||
--canvas-color-3: 241, 250, 140;
|
||||
--canvas-color-4: 82, 250, 124;
|
||||
--canvas-color-5: 139, 233, 253;
|
||||
--canvas-color-6: 189, 147, 244;
|
||||
--text-link: var(--text-accent);
|
||||
--markup-code: #ffb86c;
|
||||
--text-tag: #50fa7b;
|
||||
--text-a: #ff79c6;
|
||||
--text-a-hover: #ff79c0;
|
||||
--text-mark: #f1fa8c;
|
||||
--interactive-accent: #50fa7b;
|
||||
--blockquote-border: #b294bb;
|
||||
--interactive-accent-rgb: #f1fa8c;
|
||||
--accent-h: 135;
|
||||
--accent-s: 94%;
|
||||
--accent-l: 65%;
|
||||
--titlebar-background-focused: var(--titlebar-background);
|
||||
|
||||
/* Dracula Code view*/
|
||||
--code-normal: #F8F8F2;
|
||||
--code-background: #20212B;
|
||||
--dracula-foreground: #F8F8F2;
|
||||
--dracula-Comment: #6272A4;
|
||||
--dracula-keyword: #FF79C6;
|
||||
--dracula-definition: #50FA7B;
|
||||
--dracula-variable: #F8F8F2; /*"variable" tags are used everywhere in code, but Dracula usually only uses orange color only for declaration inputs, thus white is less annoying to look at*/
|
||||
--dracula-number: #BD93F9;
|
||||
--dracula-function: #8BE9FD;
|
||||
--dracula-string: #F1FA8C;
|
||||
}
|
||||
|
||||
/* LINKS & BRACKETS */
|
||||
|
||||
/* link */
|
||||
|
||||
/* url's */
|
||||
|
||||
/* editor */
|
||||
|
||||
.cm-url {
|
||||
color: var(--text-link) !important;
|
||||
}
|
||||
|
||||
/* preview */
|
||||
|
||||
.external-link {
|
||||
color: var(--text-link) !important;
|
||||
}
|
||||
|
||||
|
||||
/* make external links italics to differentiate */
|
||||
|
||||
a:not(.internal-link) {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* horizontal line in preview */
|
||||
|
||||
hr {
|
||||
background-color: var(--text-normal);
|
||||
border-color: var(--text-normal);
|
||||
}
|
||||
|
||||
.markdown-preview-view hr {
|
||||
background-color: var(--text-normal);
|
||||
border-color: var(--text-normal);
|
||||
}
|
||||
|
||||
.markdown-rendered hr {
|
||||
background-color: var(--text-normal);
|
||||
border-color: var(--text-normal);
|
||||
}
|
||||
|
||||
.markdown-embed {
|
||||
padding-left: 8px !important;
|
||||
padding-right: 4px !important;
|
||||
margin-left: 8px !important;
|
||||
margin-right: 4px !important;
|
||||
}
|
||||
|
||||
/* internal embedded link rendering in preview */
|
||||
|
||||
.markdown-embed-title {
|
||||
color: var(--text-link);
|
||||
}
|
||||
|
||||
|
||||
/* NAKED EMBEDS*/
|
||||
|
||||
/* But keeping Border and Scroll! */
|
||||
|
||||
.markdown-embed-title {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.markdown-preview-view .markdown-embed-content > :first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.markdown-preview-view .markdown-embed-content > :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
.markdown-embed-link {
|
||||
color: var(--text-a) !important;
|
||||
right: 2px !important;
|
||||
}
|
||||
|
||||
.markdown-embed-link:hover {
|
||||
color: var(--text-link) !important;
|
||||
}
|
||||
|
||||
/* NO FILE OPEN PAGE*/
|
||||
|
||||
.empty-state-title {
|
||||
color: var(--text-title-h1) !important;
|
||||
}
|
||||
|
||||
.empty-state-action {
|
||||
color: var(--text-muted) !important;
|
||||
}
|
||||
|
||||
.empty-state-action:hover {
|
||||
color: var(--text-normal) !important;
|
||||
}
|
||||
|
||||
/* GRAPH VIEW */
|
||||
|
||||
#graph-view-canvas .links {
|
||||
stroke: var(--interactive-accent-rgb) !important;
|
||||
}
|
||||
|
||||
/* CODEBLOCKS */
|
||||
|
||||
|
||||
/* code blocks in preview */
|
||||
|
||||
pre code {
|
||||
padding: 5px !important;
|
||||
color: var(--dracula-foreground);
|
||||
line-height: normal;
|
||||
display: block;
|
||||
background-color: var(--background-primary);
|
||||
}
|
||||
|
||||
.markdown-preview-view pre {
|
||||
padding: 0px !important;
|
||||
}
|
||||
|
||||
/* in-line code for editor and preview and code block for editor*/
|
||||
|
||||
.cm-inline-code {
|
||||
background-color: var(--background-primary-alt) !important;
|
||||
color: var(--dracula-foreground) !important;
|
||||
bottom: 0px !important;
|
||||
}
|
||||
|
||||
/* Code Appearance */
|
||||
|
||||
/* Editing view */
|
||||
|
||||
.CodeMirror-code span.cm-inline-code {
|
||||
color: var(--markup-code) !important;
|
||||
}
|
||||
|
||||
.cm-hmd-codeblock {
|
||||
color: var(--dracula-foreground);
|
||||
}
|
||||
|
||||
.cm-hmd-codeblock.cm-keyword {
|
||||
color: var(--dracula-keyword);
|
||||
}
|
||||
|
||||
.cm-def.cm-hmd-codeblock {
|
||||
color: var(--dracula-definition);
|
||||
}
|
||||
|
||||
.cm-hmd-codeblock.cm-variable {
|
||||
color: var(--dracula-variable);
|
||||
}
|
||||
|
||||
.cm-hmd-codeblock.cm-operator{
|
||||
color: var(--dracula-keyword);
|
||||
}
|
||||
|
||||
.cm-hmd-codeblock.cm-number {
|
||||
color: var(--dracula-number);
|
||||
}
|
||||
|
||||
.cm-builtin.cm-hmd-codeblock {
|
||||
color: var(--dracula-function);
|
||||
}
|
||||
|
||||
.cm-hmd-codeblock.cm-string {
|
||||
color: var(--dracula-string);
|
||||
}
|
||||
|
||||
.cm-hmd-codeblock.cm-comment {
|
||||
color: var(--dracula-Comment);
|
||||
}
|
||||
|
||||
/* Preview */
|
||||
|
||||
code {
|
||||
background-color: var(--background-primary);
|
||||
color: var(--dracula-foreground);
|
||||
}
|
||||
|
||||
.token.function {
|
||||
color: var(--dracula-definition);
|
||||
}
|
||||
|
||||
.token.operator {
|
||||
color: var(--dracula-keyword);
|
||||
}
|
||||
|
||||
.token.number {
|
||||
color: var(--dracula-number);
|
||||
}
|
||||
|
||||
.token.builtin {
|
||||
color: var(--dracula-function);
|
||||
}
|
||||
|
||||
.token.boolean {
|
||||
color: var(--dracula-number);
|
||||
}
|
||||
|
||||
.token.string {
|
||||
color: var(--dracula-string);
|
||||
}
|
||||
|
||||
/* Editor CodeBlock TEXT Appearance - */
|
||||
|
||||
.cm-s-obsidian pre.HyperMD-codeblock {
|
||||
color: var(--markup-code) !important;
|
||||
}
|
||||
|
||||
/* borders */
|
||||
|
||||
.cm-s-obsidian span.cm-inline-code {
|
||||
border: 1px solid #525660;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.cm-s-obsidian span.cm-formatting-code.cm-inline-code {
|
||||
border-right-width: 0;
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
|
||||
.cm-s-obsidian span.cm-formatting-code.cm-inline-code + span.cm-inline-code {
|
||||
border-right: none;
|
||||
border-left: none;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.cm-s-obsidian
|
||||
span.cm-formatting-code.cm-inline-code
|
||||
+ span.cm-inline-code
|
||||
+ span.cm-formatting-code.cm-inline-code {
|
||||
border-left-width: 0;
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
border-right-width: 1px;
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
|
||||
/* BLOCKQUOTES */
|
||||
|
||||
/* editor */
|
||||
|
||||
.cm-quote {
|
||||
color: var(--interactive-accent) !important;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* preview */
|
||||
|
||||
blockquote {
|
||||
color: var(--interactive-accent) !important;
|
||||
font-style: italic;
|
||||
border-color: var(--blockquote-border) !important;
|
||||
}
|
||||
|
||||
/* IMAGES */
|
||||
|
||||
/* embedded images */
|
||||
|
||||
img {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/* TABLES */
|
||||
|
||||
th {
|
||||
border: 1px solid var(--background-primary-alt) !important;
|
||||
}
|
||||
|
||||
td {
|
||||
border: 1px solid var(--background-primary-alt) !important
|
||||
}
|
||||
|
||||
thead {
|
||||
border-bottom: 4px solid var(--background-primary-alt);
|
||||
}
|
||||
|
||||
.table {
|
||||
background-color: var(--background-secondary-alt);
|
||||
border: 1px solid var(--background-primary-alt);
|
||||
padding: 4px;
|
||||
line-height: normal;
|
||||
display: block;
|
||||
border-top-left-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
}
|
||||
|
||||
/* SIDEBAR & DOCK ETC. */
|
||||
|
||||
/* view action buttons */
|
||||
|
||||
.view-action {
|
||||
color: var(--text-muted) !important;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.view-action:hover,
|
||||
.view-action.is-active {
|
||||
color: var(--text-normal) !important;
|
||||
}
|
||||
|
||||
.status-bar {
|
||||
background-color: var(--background-secondary-alt);
|
||||
}
|
||||
|
||||
.side-dock-ribbon-action {
|
||||
color: var(--text-muted) !important;
|
||||
}
|
||||
|
||||
.side-dock-ribbon-action:hover {
|
||||
color: var(--text-normal) !important;
|
||||
}
|
||||
|
||||
.workspace-tab-header {
|
||||
color: var(--text-muted) !important;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.workspace-tab-header:hover {
|
||||
color: var(--text-normal) !important;
|
||||
}
|
||||
|
||||
button.mod-cta {
|
||||
background-color: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
}
|
||||
|
||||
.horizontal-tab-nav-item.is-active, .vertical-tab-nav-item.is-active {
|
||||
background-color: var(--interactive-accent);
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
/* searchbar */
|
||||
|
||||
.side-dock-panels-container {
|
||||
background-color: var(--background-secondary-alt) !important;
|
||||
color: var(background-secondary-alt);
|
||||
}
|
||||
|
||||
/* icons at top of panes*/
|
||||
|
||||
.file-view-actions a {
|
||||
color: var(--text-muted) !important;
|
||||
}
|
||||
|
||||
.file-view-actions a:hover {
|
||||
color: var(--text-muted) !important;
|
||||
}
|
||||
|
||||
/* html tags in editor */
|
||||
|
||||
.cm-tag {
|
||||
color: var(--text-tag) !important;
|
||||
}
|
||||
|
||||
/* .side-dock-ribbon-tab,
|
||||
.side-dock-ribbon-action {} */
|
||||
|
||||
.side-dock-ribbon-tab.is-active {
|
||||
color: var(--interactive-accent) !important;
|
||||
}
|
||||
|
||||
.side-dock-ribbon-tab.is-active .side-dock-ribbon-tab-inner:hover {
|
||||
color: #6272a4 !important;
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
|
||||
.is-translucent .nav-file-title:not(.is-active) {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.is-translucent .nav-folder-title {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.nav-file-title:hover {
|
||||
color: var(--text-normal) !important;
|
||||
}
|
||||
|
||||
.nav-folder-title:hover {
|
||||
color: var(--text-normal) !important;
|
||||
}
|
||||
|
||||
.nav-action-button.is-active {
|
||||
background-color: var(--background-secondary-alt);
|
||||
}
|
||||
|
||||
.search-result-file-title {
|
||||
color: var(--text-a) !important;
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
.is-translucent .search-result-file-title {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.search-result-file-matched-text {
|
||||
color: var(--text-link) !important;
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
/* .nav-file-tag {
|
||||
color: #59a2c5;
|
||||
} /* for the PNG text, but can't specifically target "PNG", just all of those filetype tags. */
|
||||
|
||||
.nav-file.is-active .nav-file-tag {
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
/* hover actions on side dock navigation */
|
||||
|
||||
.side-dock-ribbon-tab:hover,
|
||||
.side-dock-ribbon-tab-inner: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-normal);
|
||||
}
|
||||
|
||||
/* Hover color over tree item flairs */
|
||||
.tree-item-self:hover .tree-item-flair {
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
/* clean up side bar empty state (e.g. unlinked mentions) */
|
||||
|
||||
.search-empty-state {
|
||||
width: auto;
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/* clean up side bar empty state (e.g. unlinked mentions) */
|
||||
|
||||
.search-empty-state {
|
||||
width: auto;
|
||||
padding-left: 10px;
|
||||
padding-right: 5px;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/* NORMAL TEXT OUTSIDE OF HEADINGS AND CODE */
|
||||
|
||||
/* preview */
|
||||
|
||||
.markdown-preview-view {
|
||||
color: var(--text-normal);
|
||||
padding-left: 8% !important;
|
||||
padding-right: 4% !important;
|
||||
}
|
||||
|
||||
.mod-single-child .markdown-preview-view {
|
||||
color: var(--text-normal);
|
||||
padding-left: 10% !important;
|
||||
padding-right: 10% !important;
|
||||
}
|
||||
|
||||
/* editor */
|
||||
|
||||
.cm-s-obsidian {
|
||||
color: var(--text-normal);
|
||||
padding-left: 8% !important;
|
||||
padding-right: 4% !important;
|
||||
}
|
||||
|
||||
.mod-single-child .cm-s-obsidian {
|
||||
color: var(--text-normal);
|
||||
padding-left: 8% !important;
|
||||
padding-right: 4% !important;
|
||||
}
|
||||
|
||||
/* HEADINGS */
|
||||
|
||||
/* preview */
|
||||
|
||||
.markdown-preview-view h1 {
|
||||
color: var(--text-title-h1);
|
||||
}
|
||||
|
||||
.markdown-preview-view h2 {
|
||||
color: var(--text-title-h2);
|
||||
}
|
||||
|
||||
.markdown-preview-view h3 {
|
||||
color: var(--text-title-h3);
|
||||
}
|
||||
|
||||
.markdown-preview-view h4 {
|
||||
color: var(--text-title-h4);
|
||||
}
|
||||
|
||||
.markdown-preview-view h5 {
|
||||
color: var(--text-title-h5);
|
||||
}
|
||||
|
||||
.markdown-preview-view h6 {
|
||||
color: var(--text-title-h6);
|
||||
}
|
||||
|
||||
/* editor */
|
||||
|
||||
.cm-header-1 {
|
||||
color: var(--text-title-h1);
|
||||
}
|
||||
|
||||
.cm-header-2 {
|
||||
color: var(--text-title-h2);
|
||||
}
|
||||
|
||||
.cm-header-3 {
|
||||
color: var(--text-title-h3);
|
||||
}
|
||||
|
||||
.cm-header-4 {
|
||||
color: var(--text-title-h4);
|
||||
}
|
||||
|
||||
.cm-header-5 {
|
||||
color: var(--text-title-h5);
|
||||
}
|
||||
|
||||
.cm-header-6 {
|
||||
color: var(--text-title-h6);
|
||||
}
|
||||
|
||||
/* TAGS */
|
||||
|
||||
/* preview */
|
||||
|
||||
a.tag {
|
||||
color: var(--text-tag);
|
||||
}
|
||||
|
||||
/* editor */
|
||||
|
||||
.cm-hashtag {
|
||||
color: var(--text-tag) !important;
|
||||
}
|
||||
|
||||
/* BOLD */
|
||||
|
||||
/* preview */
|
||||
|
||||
strong {
|
||||
color: var(--markup-code);
|
||||
}
|
||||
|
||||
/* editor */
|
||||
|
||||
.cm-strong {
|
||||
color: var(--markup-code);
|
||||
}
|
||||
|
||||
/* ITALICS */
|
||||
|
||||
/* preview */
|
||||
|
||||
em {
|
||||
color: var(--interactive-accent);
|
||||
}
|
||||
|
||||
/* editor */
|
||||
|
||||
.cm-em {
|
||||
color: var(--interactive-accent);
|
||||
}
|
||||
|
||||
/* HIGHLIGHT */
|
||||
|
||||
/* preview */
|
||||
|
||||
mark {
|
||||
color: var(--background-primary);
|
||||
background-color: var(--text-mark);
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
|
||||
/* editor */
|
||||
|
||||
.cm-highlight {
|
||||
color: var(--background-primary) !important;
|
||||
background-color: var(--text-mark) !important;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
|
||||
/* COLLAPSED RIBBONS */
|
||||
|
||||
.workspace-ribbon.is-collapsed {
|
||||
background-color: var(--background-secondary-alt) !important;
|
||||
}
|
||||
|
||||
.workspace-ribbon.mod-right.is-collapsed {
|
||||
background-color: var(--background-secondary-alt) !important;
|
||||
}
|
||||
|
||||
.workspace-ribbon.mod-left.is-collapsed {
|
||||
background-color: var(--background-secondary-alt) !important;
|
||||
}
|
||||
|
||||
/* POPUP NOTIFICATION*/
|
||||
|
||||
.notice {
|
||||
color: var(--text-normal) !important;
|
||||
background-color: var(--blockquote-border) !important;
|
||||
}
|
||||
|
||||
/* UL, OL, BULLETS, CHECKBOXES & FOLDING ARROWS */
|
||||
|
||||
/* task lists */
|
||||
|
||||
.markdown-preview-view .task-list-item-checkbox {
|
||||
-webkit-appearance: none;
|
||||
top: 1.3px !important;
|
||||
right: 5px !important;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid var(--accent-2);
|
||||
position: relative;
|
||||
width: 1.25em;
|
||||
height: 1.25em;
|
||||
margin: 0;
|
||||
box-shadow: 0 0 0.1em var(--interactive-accent);
|
||||
}
|
||||
|
||||
.markdown-preview-view .task-list-item-checkbox:checked::before {
|
||||
content: "✓";
|
||||
position: absolute;
|
||||
color: var(--interactive-accent);
|
||||
line-height: 1.25em;
|
||||
width: 1.2em;
|
||||
text-align: center;
|
||||
text-shadow: 0 0 0.5em var(--accent-2);
|
||||
}
|
||||
|
||||
.markdown-preview-view .task-list-item-checkbox {
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
.checkbox-container {
|
||||
background-color: var(--background-primary-alt);
|
||||
border-radius: 14px;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
top: 4px;
|
||||
user-select: none;
|
||||
width: 42px;
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15);
|
||||
transition: background 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
|
||||
border 0.15s ease-in-out, opacity 0.15s ease-in-out,
|
||||
-webkit-box-shadow 0.15s ease-in-out;
|
||||
}
|
||||
|
||||
.checkbox-container.is-enabled {
|
||||
background-color: var(--interactive-accent);
|
||||
}
|
||||
|
||||
|
||||
.markdown-preview-view mark {
|
||||
color: var(--text-link);
|
||||
background-color: var(--background-primary-alt);
|
||||
}
|
||||
|
||||
.cm-formatting
|
||||
/* This is the color of header hashtags. Don't change. */
|
||||
|
||||
.cm-formatting-list-ul .cm-list-1
|
||||
/* This is the color of text in lists. Don't change. */
|
||||
|
||||
|
||||
/* Subtler code folding arrows */
|
||||
|
||||
.CodeMirror-foldgutter-folded:after,
|
||||
.CodeMirror-foldgutter-open:after {
|
||||
opacity: 0.5;
|
||||
color: var(--text-link);
|
||||
}
|
||||
|
||||
.CodeMirror-foldgutter-folded:hover:after,
|
||||
.CodeMirror-foldgutter-open:hover:after {
|
||||
opacity: 1;
|
||||
color: var(--text-link);
|
||||
}
|
||||
|
||||
.CodeMirror-foldgutter-folded:after {
|
||||
content: "\25BA";
|
||||
color: var(--text-link);
|
||||
}
|
||||
|
||||
.CodeMirror-foldgutter-open:after {
|
||||
content: "\25BC";
|
||||
}
|
||||
|
||||
/* Bullet Point Relationship Lines */
|
||||
|
||||
.cm-hmd-list-indent .cm-tab,
|
||||
ul ul {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.cm-hmd-list-indent .cm-tab::before,
|
||||
ul ul::before {
|
||||
content: "";
|
||||
border-left: 1px solid;
|
||||
color: #92CDD6;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.cm-hmd-list-indent .cm-tab::before {
|
||||
left: 0;
|
||||
top: -5px;
|
||||
bottom: -4px;
|
||||
}
|
||||
|
||||
ul ul::before {
|
||||
left: 0px;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
/* ul, li & ol colors in editor */
|
||||
|
||||
.cm-s-obsidian span.cm-formatting-list {
|
||||
color: #8abeb7;
|
||||
}
|
||||
|
||||
ol {
|
||||
display: block;
|
||||
list-style-type: decimal;
|
||||
margin-block-start: 1em;
|
||||
margin-block-end: 1em;
|
||||
margin-inline-start: 0px;
|
||||
margin-inline-end: 0px;
|
||||
padding-inline-start: 40px;
|
||||
}
|
||||
|
||||
.suggestion-highlight {
|
||||
color: var(--interactive-accent)!important;
|
||||
}
|
||||
|
||||
.is-selected {
|
||||
background-color: var(--blockquote-border)!important;
|
||||
}
|
||||
|
||||
@media print {
|
||||
@page {
|
||||
margin: 0mm 0mm 0mm 0mm;
|
||||
}
|
||||
.print .markdown-preview-view {
|
||||
-webkit-print-color-adjust: exact;
|
||||
background-color: #282a36;
|
||||
color: #f8f8f2;
|
||||
}
|
||||
.markdown-rendered code {
|
||||
color: #BABABA !important;
|
||||
}
|
||||
}
|
||||
214
.obsidian/workspace-mobile.json
vendored
Normal file
214
.obsidian/workspace-mobile.json
vendored
Normal file
@@ -0,0 +1,214 @@
|
||||
{
|
||||
"main": {
|
||||
"id": "f63c4a78c407c6ee",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "4ec1346d537820b7",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "714922bf5742788e",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "empty",
|
||||
"state": {},
|
||||
"icon": "lucide-file",
|
||||
"title": "New tab"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
},
|
||||
"left": {
|
||||
"id": "eabd2e6fc1013b38",
|
||||
"type": "mobile-drawer",
|
||||
"children": [
|
||||
{
|
||||
"id": "6657684f52cddfc9",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "file-explorer",
|
||||
"state": {
|
||||
"sortOrder": "alphabetical",
|
||||
"autoReveal": false
|
||||
},
|
||||
"icon": "lucide-folder-closed",
|
||||
"title": "Files"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "8f48f9854381bcb6",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "search",
|
||||
"state": {
|
||||
"query": "",
|
||||
"matchingCase": false,
|
||||
"explainSearch": false,
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical"
|
||||
},
|
||||
"icon": "lucide-search",
|
||||
"title": "Search"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "6ae7238078845977",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "tag",
|
||||
"state": {
|
||||
"sortOrder": "frequency",
|
||||
"useHierarchy": true,
|
||||
"showSearch": false,
|
||||
"searchQuery": ""
|
||||
},
|
||||
"icon": "lucide-tags",
|
||||
"title": "Tags"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "3905e00a5003328d",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "all-properties",
|
||||
"state": {
|
||||
"sortOrder": "frequency",
|
||||
"showSearch": false,
|
||||
"searchQuery": ""
|
||||
},
|
||||
"icon": "lucide-archive",
|
||||
"title": "All properties"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "831343064e30b326",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "bookmarks",
|
||||
"state": {},
|
||||
"icon": "lucide-bookmark",
|
||||
"title": "Bookmarks"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 0
|
||||
},
|
||||
"right": {
|
||||
"id": "72e1b1e5491aed3a",
|
||||
"type": "mobile-drawer",
|
||||
"children": [
|
||||
{
|
||||
"id": "28d4fab0735b06c8",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
"showSearch": false,
|
||||
"searchQuery": "",
|
||||
"backlinkCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
},
|
||||
"icon": "links-coming-in",
|
||||
"title": "Backlinks"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "d4b340ec1b27b852",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
},
|
||||
"icon": "links-going-out",
|
||||
"title": "Outgoing links"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "d261f2caac317d8b",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"followCursor": false,
|
||||
"showSearch": false,
|
||||
"searchQuery": ""
|
||||
},
|
||||
"icon": "lucide-list",
|
||||
"title": "Outline"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 0
|
||||
},
|
||||
"left-ribbon": {
|
||||
"hiddenItems": {
|
||||
"switcher:Open quick switcher": false,
|
||||
"graph:Open graph view": false,
|
||||
"canvas:Create new canvas": false,
|
||||
"daily-notes:Open today's daily note": false,
|
||||
"templates:Insert template": false,
|
||||
"command-palette:Open command palette": false,
|
||||
"bases:Create new base": false
|
||||
}
|
||||
},
|
||||
"active": "714922bf5742788e",
|
||||
"lastOpenFiles": [
|
||||
"paxad/quartz/i18n/locales/de-DE.ts",
|
||||
"paxad/quartz/i18n/locales/id-ID.ts",
|
||||
"paxad/quartz/i18n/locales/ar-SA.ts",
|
||||
"paxad/quartz/i18n/locales/it-IT.ts",
|
||||
"paxad/quartz/i18n/locales/pl-PL.ts",
|
||||
"paxad/quartz/i18n/locales/uk-UA.ts",
|
||||
"paxad/quartz/i18n/locales/ru-RU.ts",
|
||||
"paxad/quartz/i18n/locales/ja-JP.ts",
|
||||
"paxad/quartz/i18n/locales/he-IL.ts",
|
||||
"paxad/quartz/i18n/locales/fi-FI.ts",
|
||||
"paxad/quartz/i18n/locales/kk-KZ.ts",
|
||||
"paxad/quartz/static/og-image.png",
|
||||
"paxad/quartz/static/icon.png",
|
||||
"paxad/docs/getting-started/installation.md",
|
||||
"paxad/docs/getting-started/upgrading.md",
|
||||
"paxad/docs/getting-started/migrating.md",
|
||||
"paxad/docs/getting-started/authoring-content.md",
|
||||
"paxad/docs/getting-started/index.md",
|
||||
"paxad/docs/getting-started/whats-new.md",
|
||||
"paxad/docs/tags/component.md",
|
||||
"paxad/docs/tags/plugin.md",
|
||||
"paxad/docs/cli/upgrade.md",
|
||||
"paxad/docs/cli/sync.md",
|
||||
"paxad/docs/cli/build.md",
|
||||
"paxad/docs/cli/create.md",
|
||||
"paxad/docs/cli/index.md",
|
||||
"paxad/docs/cli/restore.md",
|
||||
"paxad/docs/cli/tui.md",
|
||||
"paxad/docs/cli/plugin.md",
|
||||
"paxad/docs/features/Citations.md",
|
||||
"paxad/docs/features/RSS Feed.md",
|
||||
"paxad/docs/features/recent notes.md",
|
||||
"paxad/docs/features/wikilinks.md",
|
||||
"paxad/docs/features/OxHugo compatibility.md",
|
||||
"paxad/docs/features/Docker Support.md",
|
||||
"paxad/docs/features/Mermaid diagrams.md",
|
||||
"paxad/docs/features/table of contents.md",
|
||||
"paxad/docs/features/Canvas.md",
|
||||
"paxad/docs/images/giscus-discussion.png",
|
||||
"paxad/docs/images/github-quick-setup.png",
|
||||
"paxad/docs/images/dns records.png",
|
||||
"paxad/docs/images/giscus-results.png",
|
||||
"paxad/docs/images/social-image-preview-dark.png",
|
||||
"paxad/docs/images/giscus-repo.png",
|
||||
"paxad/docs/images/quartz-layout-mobile.png",
|
||||
"paxad/docs/images/quartz-layout-desktop.png",
|
||||
"paxad/docs/Canvas.canvas"
|
||||
]
|
||||
}
|
||||
19
README.md
19
README.md
@@ -1,17 +1,4 @@
|
||||
# Quartz v5
|
||||
# pax.ad
|
||||
a digital garden that might be full of weeds
|
||||
|
||||
> “[One] who works with the door open gets all kinds of interruptions, but [they] also occasionally gets clues as to what the world is and what might be important.” — Richard Hamming
|
||||
|
||||
Quartz is a set of tools that helps you publish your [digital garden](https://jzhao.xyz/posts/networked-thought) and notes as a website for free.
|
||||
|
||||
🔗 Read the documentation and get started: https://quartz.jzhao.xyz/
|
||||
|
||||
[Join the Discord Community](https://discord.gg/cRFFHYye7t)
|
||||
|
||||
## Sponsors
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/sponsors/jackyzha0">
|
||||
<img src="https://cdn.jsdelivr.net/gh/jackyzha0/jackyzha0/sponsorkit/sponsors.svg" />
|
||||
</a>
|
||||
</p>
|
||||
running on [Quartz v5](https://quartz.jzhao.xyz/)
|
||||
|
||||
17
content/index.md
Normal file
17
content/index.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
publish: true
|
||||
title: hi
|
||||
description: a digital garden, but it might be full of weeds
|
||||
created: 2026-07-07T22:59:17.843-04:00
|
||||
modified: 2026-07-07T23:02:06.833-04:00
|
||||
---
|
||||
|
||||
> [!quote]
|
||||
> In the beginning, the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move.
|
||||
> _-Douglas Adams, Hitchhiker's Guide to the Galaxy_
|
||||
|
||||
there exists, somewhere on this planet of ours, a group of individuals i'd call my tribe. where they dwell, i can't say.
|
||||
|
||||
all i know is that i'd like to meet them some day. i hope i do. i know i've already met some.
|
||||
|
||||
[[tv]]
|
||||
16
content/movies/Dune.md
Normal file
16
content/movies/Dune.md
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
description: bless the Maker and His water, bless His comings and goings; may His passing cleanse the world
|
||||
publish:
|
||||
---
|
||||
*sietchposting with the Fedaykin*
|
||||
|
||||
i've got a lot of thoughts on *Dune*, but i'm not entirely sure how many of them are exactly...*original*.
|
||||
|
||||
# the three Dunes
|
||||
there are three *Dune*s.
|
||||
|
||||
the first, *Dune* (1984). David Lynch directed and gave quite a bit of art direction. Kyle MacLaughlan, Patrick Stewart, hell, even Jürgen Prochnow. poor Virginia was robbed. "stylistic" is a light way of putting it. extremely chopped up. watch the **Spicediver** edit with the deleted stuff cut back in if you can.
|
||||
|
||||
the second, *Frank Herbert's Dune* and *Children of Dune*, both Sci-Fi Channel productions. mini-series, both. "stupid hats Dune" as I refer to it. this Baron Harkonnen always ends his scenes in a rhyming couplet like he's in a Shakespearean drama.
|
||||
|
||||
the third, Denis Villeneuve's *Dune*, *Dune: Part Two*, and upcoming *Dune *
|
||||
14
content/tv/tv.md
Normal file
14
content/tv/tv.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
publish: true
|
||||
---
|
||||
**Right Now**
|
||||
- *[[Silo]]* - S3
|
||||
- *[[House of the Dragon]]*
|
||||
- [[The Vampire Lestat]] (*Interview with the Vampire* Season 3)
|
||||
|
||||
**where tf is**
|
||||
- [[Dune Prophecy]]
|
||||
- [[Neuromancer]]
|
||||
- [[Foundation]]
|
||||
- [[Doctor Who]]
|
||||
- [[Star Trek]]
|
||||
306
quartz.config.yaml
Normal file
306
quartz.config.yaml
Normal file
@@ -0,0 +1,306 @@
|
||||
# yaml-language-server: $schema=./quartz/plugins/quartz-plugins.schema.json
|
||||
configuration:
|
||||
pageTitle: "pax.ad"
|
||||
pageTitleSuffix: ""
|
||||
enableSPA: true
|
||||
enablePopovers: true
|
||||
analytics:
|
||||
provider: plausible
|
||||
locale: en-US
|
||||
baseUrl: pax.ad
|
||||
ignorePatterns:
|
||||
- _private
|
||||
- _templates
|
||||
- .obsidian
|
||||
theme:
|
||||
fontOrigin: googleFonts
|
||||
cdnCaching: true
|
||||
typography:
|
||||
header: Corben
|
||||
body: Corben
|
||||
code: IBM Plex Mono
|
||||
colors:
|
||||
lightMode:
|
||||
light: "#faf8f8"
|
||||
lightgray: "#e5e5e5"
|
||||
gray: "#b8b8b8"
|
||||
darkgray: "#4e4e4e"
|
||||
dark: "#2b2b2b"
|
||||
secondary: "#284b63"
|
||||
tertiary: "#84a59d"
|
||||
highlight: rgba(143, 159, 169, 0.15)
|
||||
textHighlight: "#fff23688"
|
||||
darkMode:
|
||||
light: "#161618"
|
||||
lightgray: "#393639"
|
||||
gray: "#646464"
|
||||
darkgray: "#d4d4d4"
|
||||
dark: "#ebebec"
|
||||
secondary: "#7b97aa"
|
||||
tertiary: "#84a59d"
|
||||
highlight: rgba(143, 159, 169, 0.15)
|
||||
textHighlight: "#b3aa0288"
|
||||
plugins:
|
||||
- source: github:quartz-community/created-modified-date
|
||||
enabled: true
|
||||
options:
|
||||
defaultDateType: modified
|
||||
priority:
|
||||
- frontmatter
|
||||
- git
|
||||
- filesystem
|
||||
order: 10
|
||||
- source: github:quartz-community/syntax-highlighting
|
||||
enabled: true
|
||||
options:
|
||||
theme:
|
||||
light: github-light
|
||||
dark: github-dark
|
||||
keepBackground: false
|
||||
order: 20
|
||||
- source: github:quartz-community/obsidian-flavored-markdown
|
||||
enabled: true
|
||||
options:
|
||||
comments: true
|
||||
highlight: true
|
||||
wikilinks: true
|
||||
callouts: true
|
||||
mermaid: true
|
||||
parseTags: true
|
||||
parseArrows: true
|
||||
parseBlockReferences: true
|
||||
enableInHtmlEmbed: false
|
||||
enableYouTubeEmbed: true
|
||||
enableVideoEmbed: true
|
||||
enableCheckbox: true
|
||||
order: 30
|
||||
- source: github:quartz-community/github-flavored-markdown
|
||||
enabled: true
|
||||
order: 40
|
||||
- source: github:quartz-community/table-of-contents
|
||||
enabled: true
|
||||
order: 50
|
||||
layout:
|
||||
position: right
|
||||
priority: 30
|
||||
- source: github:quartz-community/crawl-links
|
||||
enabled: true
|
||||
options:
|
||||
markdownLinkResolution: shortest
|
||||
order: 60
|
||||
- source: github:quartz-community/description
|
||||
enabled: true
|
||||
order: 70
|
||||
- source: github:quartz-community/latex
|
||||
enabled: true
|
||||
options:
|
||||
renderEngine: katex
|
||||
order: 80
|
||||
- source: github:quartz-community/citations
|
||||
enabled: false
|
||||
order: 85
|
||||
- source: github:quartz-community/hard-line-breaks
|
||||
enabled: true
|
||||
order: 90
|
||||
- source: github:quartz-community/ox-hugo
|
||||
enabled: false
|
||||
order: 91
|
||||
- source: github:quartz-community/roam
|
||||
enabled: false
|
||||
order: 92
|
||||
- source: github:quartz-community/fonts
|
||||
enabled: true
|
||||
options:
|
||||
useThemeFonts: false
|
||||
fontOrigin: googleFonts
|
||||
header: Corben
|
||||
body: Corben
|
||||
interface: Corben
|
||||
code: IBM Plex Mono
|
||||
- source: github:quartz-community/remove-draft
|
||||
enabled: true
|
||||
- source: github:quartz-community/explicit-publish
|
||||
enabled: true
|
||||
- source: github:quartz-community/unlisted-pages
|
||||
enabled: true
|
||||
options: {}
|
||||
order: 45
|
||||
- source: github:quartz-community/encrypted-pages
|
||||
enabled: true
|
||||
options:
|
||||
iterations: 600000
|
||||
passwordField: password
|
||||
unlistWhenEncrypted: false
|
||||
outputPath: static/encryptedContentIndex.json
|
||||
- source: github:quartz-community/stacked-pages
|
||||
enabled: false
|
||||
layout:
|
||||
position: afterBody
|
||||
priority: 50
|
||||
display: all
|
||||
- source: github:quartz-community/alias-redirects
|
||||
enabled: true
|
||||
- source: github:quartz-community/content-index
|
||||
enabled: true
|
||||
options:
|
||||
enableSiteMap: true
|
||||
enableRSS: true
|
||||
- source: github:quartz-community/favicon
|
||||
enabled: true
|
||||
- source: github:quartz-community/og-image
|
||||
enabled: true
|
||||
- source: github:quartz-community/cname
|
||||
enabled: true
|
||||
- source: github:quartz-community/canvas-page
|
||||
enabled: true
|
||||
- source: github:quartz-community/content-page
|
||||
enabled: true
|
||||
- source: github:quartz-community/folder-page
|
||||
enabled: true
|
||||
- source: github:quartz-community/tag-page
|
||||
enabled: true
|
||||
- source: github:quartz-community/explorer
|
||||
enabled: true
|
||||
layout:
|
||||
position: left
|
||||
priority: 50
|
||||
- source: github:quartz-community/graph
|
||||
enabled: true
|
||||
layout:
|
||||
position: right
|
||||
priority: 10
|
||||
- source: github:quartz-community/search
|
||||
enabled: true
|
||||
layout:
|
||||
position: left
|
||||
priority: 20
|
||||
group: toolbar
|
||||
groupOptions:
|
||||
grow: true
|
||||
- source: github:quartz-community/backlinks
|
||||
enabled: true
|
||||
layout:
|
||||
position: right
|
||||
priority: 50
|
||||
- source: github:quartz-community/article-title
|
||||
enabled: true
|
||||
layout:
|
||||
position: beforeBody
|
||||
priority: 10
|
||||
- source: github:quartz-community/content-meta
|
||||
enabled: true
|
||||
layout:
|
||||
position: beforeBody
|
||||
priority: 20
|
||||
- source: github:quartz-community/tag-list
|
||||
enabled: false
|
||||
layout:
|
||||
position: beforeBody
|
||||
priority: 30
|
||||
- source: github:quartz-community/page-title
|
||||
enabled: true
|
||||
layout:
|
||||
position: left
|
||||
priority: 10
|
||||
- source: github:quartz-community/darkmode
|
||||
enabled: true
|
||||
layout:
|
||||
position: left
|
||||
priority: 30
|
||||
group: toolbar
|
||||
- source: github:quartz-community/reader-mode
|
||||
enabled: true
|
||||
layout:
|
||||
position: left
|
||||
priority: 35
|
||||
group: toolbar
|
||||
- source: github:quartz-community/breadcrumbs
|
||||
enabled: true
|
||||
layout:
|
||||
position: beforeBody
|
||||
priority: 5
|
||||
condition: not-index
|
||||
- source: github:quartz-community/comments
|
||||
enabled: false
|
||||
options:
|
||||
provider: giscus
|
||||
options: {}
|
||||
layout:
|
||||
position: afterBody
|
||||
priority: 10
|
||||
- source: github:quartz-community/footer
|
||||
enabled: true
|
||||
options:
|
||||
links:
|
||||
bsky: https://bsky.app/profile/pax.dog
|
||||
\@: at://did:plc:cde6mpfngdb4kylusjbxm5ir
|
||||
- source: github:quartz-community/recent-notes
|
||||
enabled: false
|
||||
- source: github:quartz-community/spacer
|
||||
enabled: true
|
||||
options: {}
|
||||
order: 25
|
||||
layout:
|
||||
position: left
|
||||
priority: 25
|
||||
display: mobile-only
|
||||
- source: github:quartz-community/bases-page
|
||||
enabled: true
|
||||
options: {}
|
||||
order: 50
|
||||
- source: github:quartz-community/note-properties
|
||||
enabled: true
|
||||
options:
|
||||
includeAll: false
|
||||
includedProperties:
|
||||
- description
|
||||
- tags
|
||||
- aliases
|
||||
excludedProperties: []
|
||||
hidePropertiesView: false
|
||||
delimiters: ---
|
||||
language: yaml
|
||||
order: 5
|
||||
layout:
|
||||
position: beforeBody
|
||||
priority: 15
|
||||
display: all
|
||||
- source:
|
||||
name: quartz-themes
|
||||
repo: github:saberzero1/quartz-themes
|
||||
subdir: plugin
|
||||
enabled: true
|
||||
options:
|
||||
theme: dracula-official
|
||||
- source: github:quartz-community/obsidian-plugin-excalidraw
|
||||
enabled: true
|
||||
options:
|
||||
enableInteraction: true
|
||||
darkMode: auto
|
||||
exportPadding: 20
|
||||
order: 50
|
||||
layout:
|
||||
groups:
|
||||
toolbar:
|
||||
priority: 35
|
||||
direction: row
|
||||
gap: 0.5rem
|
||||
byPageType:
|
||||
"404":
|
||||
positions:
|
||||
beforeBody: []
|
||||
left: []
|
||||
right: []
|
||||
content: {}
|
||||
folder:
|
||||
exclude:
|
||||
- reader-mode
|
||||
positions:
|
||||
right: []
|
||||
tag:
|
||||
exclude:
|
||||
- reader-mode
|
||||
positions:
|
||||
right: []
|
||||
canvas: {}
|
||||
bases: {}
|
||||
@@ -5,199 +5,199 @@
|
||||
"source": "github:quartz-community/alias-redirects",
|
||||
"resolved": "https://github.com/quartz-community/alias-redirects.git",
|
||||
"commit": "73a98dda7e4f55239310833299d91daf8611349f",
|
||||
"installedAt": "2026-06-09T17:57:45.809Z"
|
||||
"installedAt": "2026-07-08T01:16:23.652Z"
|
||||
},
|
||||
"article-title": {
|
||||
"source": "github:quartz-community/article-title",
|
||||
"resolved": "https://github.com/quartz-community/article-title.git",
|
||||
"commit": "e608ca815e137e22b598094f735bcd8a481dafaa",
|
||||
"installedAt": "2026-06-03T13:32:35.204Z"
|
||||
"installedAt": "2026-07-08T01:16:24.369Z"
|
||||
},
|
||||
"backlinks": {
|
||||
"source": "github:quartz-community/backlinks",
|
||||
"resolved": "https://github.com/quartz-community/backlinks.git",
|
||||
"commit": "7490f921b7bd974c3f2f985ad3744b06160827d6",
|
||||
"installedAt": "2026-06-03T13:32:35.225Z"
|
||||
"installedAt": "2026-07-08T01:16:24.313Z"
|
||||
},
|
||||
"bases-page": {
|
||||
"source": "github:quartz-community/bases-page",
|
||||
"resolved": "https://github.com/quartz-community/bases-page.git",
|
||||
"commit": "f8fc7da3515a4d4bbe0bd4be0fd9188823866a01",
|
||||
"installedAt": "2026-06-03T13:32:35.344Z"
|
||||
"installedAt": "2026-07-08T01:16:25.056Z"
|
||||
},
|
||||
"breadcrumbs": {
|
||||
"source": "github:quartz-community/breadcrumbs",
|
||||
"resolved": "https://github.com/quartz-community/breadcrumbs.git",
|
||||
"commit": "cf2e161425165e1ac713f1feb7250b07fe0250ae",
|
||||
"installedAt": "2026-06-03T13:32:35.270Z"
|
||||
"installedAt": "2026-07-08T01:16:24.664Z"
|
||||
},
|
||||
"canvas-page": {
|
||||
"source": "github:quartz-community/canvas-page",
|
||||
"resolved": "https://github.com/quartz-community/canvas-page.git",
|
||||
"commit": "84fc96799671a65f76b66e30217dbefdd43a2905",
|
||||
"installedAt": "2026-06-03T13:32:35.291Z"
|
||||
"installedAt": "2026-07-08T01:16:24.048Z"
|
||||
},
|
||||
"citations": {
|
||||
"source": "github:quartz-community/citations",
|
||||
"resolved": "https://github.com/quartz-community/citations.git",
|
||||
"commit": "2ad133a123c5b15b7c41d4fb684d422622113081",
|
||||
"installedAt": "2026-06-03T13:16:37.060Z"
|
||||
"installedAt": "2026-07-08T01:16:23.129Z"
|
||||
},
|
||||
"cname": {
|
||||
"source": "github:quartz-community/cname",
|
||||
"resolved": "https://github.com/quartz-community/cname.git",
|
||||
"commit": "ec4c81c91da13a6f6c2cbe1656daf5c14575dab3",
|
||||
"installedAt": "2026-06-03T13:16:37.301Z"
|
||||
"installedAt": "2026-07-08T01:16:23.742Z"
|
||||
},
|
||||
"comments": {
|
||||
"source": "github:quartz-community/comments",
|
||||
"resolved": "https://github.com/quartz-community/comments.git",
|
||||
"commit": "42c5023e42cf62495219095a862b2ea144b65600",
|
||||
"installedAt": "2026-06-03T13:32:35.236Z"
|
||||
"installedAt": "2026-07-08T01:16:24.678Z"
|
||||
},
|
||||
"content-index": {
|
||||
"source": "github:quartz-community/content-index",
|
||||
"resolved": "https://github.com/quartz-community/content-index.git",
|
||||
"commit": "c3d4f5c85311712c3355cd71da46b28e2d8eba71",
|
||||
"installedAt": "2026-06-03T13:32:35.431Z"
|
||||
"installedAt": "2026-07-08T01:16:24.044Z"
|
||||
},
|
||||
"content-meta": {
|
||||
"source": "github:quartz-community/content-meta",
|
||||
"resolved": "https://github.com/quartz-community/content-meta.git",
|
||||
"commit": "dd6e94b5ca1cb195104a2b5e624a43ee6aa0a324",
|
||||
"installedAt": "2026-06-03T13:32:35.221Z"
|
||||
"installedAt": "2026-07-08T01:16:24.334Z"
|
||||
},
|
||||
"content-page": {
|
||||
"source": "github:quartz-community/content-page",
|
||||
"resolved": "https://github.com/quartz-community/content-page.git",
|
||||
"commit": "d22fae357ae74a3e97a2f450862f23f5227842c4",
|
||||
"installedAt": "2026-06-03T13:32:35.505Z"
|
||||
"installedAt": "2026-07-08T01:16:23.872Z"
|
||||
},
|
||||
"crawl-links": {
|
||||
"source": "github:quartz-community/crawl-links",
|
||||
"resolved": "https://github.com/quartz-community/crawl-links.git",
|
||||
"commit": "43edc6d5182e79bf1b63fed7eb3ba0c7624a1526",
|
||||
"installedAt": "2026-06-03T13:32:35.242Z"
|
||||
"installedAt": "2026-07-08T01:16:22.741Z"
|
||||
},
|
||||
"created-modified-date": {
|
||||
"source": "github:quartz-community/created-modified-date",
|
||||
"resolved": "https://github.com/quartz-community/created-modified-date.git",
|
||||
"commit": "c003199fb842969d43ee9e0f54120a85e588260e",
|
||||
"installedAt": "2026-06-03T13:16:36.740Z"
|
||||
"installedAt": "2026-07-08T01:16:22.779Z"
|
||||
},
|
||||
"darkmode": {
|
||||
"source": "github:quartz-community/darkmode",
|
||||
"resolved": "https://github.com/quartz-community/darkmode.git",
|
||||
"commit": "c6484f72ebc6ea89339be7cf86ad14b40c47dcc7",
|
||||
"installedAt": "2026-06-03T13:32:35.196Z"
|
||||
"installedAt": "2026-07-08T01:16:24.517Z"
|
||||
},
|
||||
"description": {
|
||||
"source": "github:quartz-community/description",
|
||||
"resolved": "https://github.com/quartz-community/description.git",
|
||||
"commit": "56dc546614d905ad07dd0da8dd5820e25e5ea97b",
|
||||
"installedAt": "2026-06-03T13:32:35.233Z"
|
||||
"installedAt": "2026-07-08T01:16:22.721Z"
|
||||
},
|
||||
"encrypted-pages": {
|
||||
"source": "github:quartz-community/encrypted-pages",
|
||||
"resolved": "https://github.com/quartz-community/encrypted-pages.git",
|
||||
"commit": "89e88af565dfaa9ab2d9c99677b82394ea7be356",
|
||||
"installedAt": "2026-06-03T13:32:35.661Z"
|
||||
"installedAt": "2026-07-08T01:16:23.346Z"
|
||||
},
|
||||
"explicit-publish": {
|
||||
"source": "github:quartz-community/explicit-publish",
|
||||
"resolved": "https://github.com/quartz-community/explicit-publish.git",
|
||||
"commit": "4afb630a1cc9034267beb93c928e81d0fa2f4d4b",
|
||||
"installedAt": "2026-06-03T13:16:36.746Z"
|
||||
"installedAt": "2026-07-08T01:16:23.253Z"
|
||||
},
|
||||
"explorer": {
|
||||
"source": "github:quartz-community/explorer",
|
||||
"resolved": "https://github.com/quartz-community/explorer.git",
|
||||
"commit": "a2dfd1373abe58ace461ebea0b4e94cb287f894e",
|
||||
"installedAt": "2026-06-03T13:32:35.808Z"
|
||||
"installedAt": "2026-07-08T01:16:24.376Z"
|
||||
},
|
||||
"favicon": {
|
||||
"source": "github:quartz-community/favicon",
|
||||
"resolved": "https://github.com/quartz-community/favicon.git",
|
||||
"commit": "85842d5c15f937a3d1a02c45accee27118146d73",
|
||||
"installedAt": "2026-06-03T13:16:37.198Z"
|
||||
"installedAt": "2026-07-08T01:16:23.720Z"
|
||||
},
|
||||
"folder-page": {
|
||||
"source": "github:quartz-community/folder-page",
|
||||
"resolved": "https://github.com/quartz-community/folder-page.git",
|
||||
"commit": "93304d22e1d7f09f93a33658ec273f7cb8d17793",
|
||||
"installedAt": "2026-06-03T13:32:35.810Z"
|
||||
"installedAt": "2026-07-08T01:16:24.067Z"
|
||||
},
|
||||
"fonts": {
|
||||
"source": "github:quartz-community/fonts",
|
||||
"resolved": "https://github.com/quartz-community/fonts.git",
|
||||
"commit": "8be5be706d19ca34fa8e342327b78e11aff3d4f0",
|
||||
"installedAt": "2026-06-10T21:13:18.081Z"
|
||||
"installedAt": "2026-07-08T01:16:23.254Z"
|
||||
},
|
||||
"footer": {
|
||||
"source": "github:quartz-community/footer",
|
||||
"resolved": "https://github.com/quartz-community/footer.git",
|
||||
"commit": "6ed61928d3c0178d7cef972ebcbca6a206a2f065",
|
||||
"installedAt": "2026-06-03T13:32:35.802Z"
|
||||
"installedAt": "2026-07-08T01:16:24.780Z"
|
||||
},
|
||||
"github-flavored-markdown": {
|
||||
"source": "github:quartz-community/github-flavored-markdown",
|
||||
"resolved": "https://github.com/quartz-community/github-flavored-markdown.git",
|
||||
"commit": "3eabbaa252ce175665ab3f62e1af25948a83e8b6",
|
||||
"installedAt": "2026-06-03T13:16:36.665Z"
|
||||
"installedAt": "2026-07-08T01:16:22.887Z"
|
||||
},
|
||||
"graph": {
|
||||
"source": "github:quartz-community/graph",
|
||||
"resolved": "https://github.com/quartz-community/graph.git",
|
||||
"commit": "46f0ba1c3c0cc484697572e7bcf315fa384d80d2",
|
||||
"installedAt": "2026-06-03T13:32:35.872Z"
|
||||
"installedAt": "2026-07-08T01:16:24.284Z"
|
||||
},
|
||||
"hard-line-breaks": {
|
||||
"source": "github:quartz-community/hard-line-breaks",
|
||||
"resolved": "https://github.com/quartz-community/hard-line-breaks.git",
|
||||
"commit": "0d448f38a24c568c5539ff2cd57d813293430ccd",
|
||||
"installedAt": "2026-06-03T13:16:36.965Z"
|
||||
"installedAt": "2026-07-08T01:16:22.801Z"
|
||||
},
|
||||
"latex": {
|
||||
"source": "github:quartz-community/latex",
|
||||
"resolved": "https://github.com/quartz-community/latex.git",
|
||||
"commit": "3dcfedcb5ae5e28b71248a72665ccb881e82c185",
|
||||
"installedAt": "2026-06-03T13:16:36.841Z"
|
||||
"installedAt": "2026-07-08T01:16:23.000Z"
|
||||
},
|
||||
"note-properties": {
|
||||
"source": "github:quartz-community/note-properties",
|
||||
"resolved": "https://github.com/quartz-community/note-properties.git",
|
||||
"commit": "3cb40141e792a8a9ba9f99553cd436f36411bf8d",
|
||||
"installedAt": "2026-06-03T13:32:35.812Z"
|
||||
"installedAt": "2026-07-08T01:16:25.161Z"
|
||||
},
|
||||
"obsidian-flavored-markdown": {
|
||||
"source": "github:quartz-community/obsidian-flavored-markdown",
|
||||
"resolved": "https://github.com/quartz-community/obsidian-flavored-markdown.git",
|
||||
"commit": "07eaca7b31a537c7c4a0fd2848b1f00014c940af",
|
||||
"installedAt": "2026-06-03T13:32:35.815Z"
|
||||
"installedAt": "2026-07-08T01:16:22.865Z"
|
||||
},
|
||||
"obsidian-plugin-excalidraw": {
|
||||
"source": "github:quartz-community/obsidian-plugin-excalidraw",
|
||||
"resolved": "https://github.com/quartz-community/obsidian-plugin-excalidraw.git",
|
||||
"commit": "dad0a4c0abdc8b3c2786277a2cbd67dc039c754c",
|
||||
"installedAt": "2026-06-03T13:32:35.851Z"
|
||||
"installedAt": "2026-07-08T01:16:25.074Z"
|
||||
},
|
||||
"og-image": {
|
||||
"source": "github:quartz-community/og-image",
|
||||
"resolved": "https://github.com/quartz-community/og-image.git",
|
||||
"commit": "31343c612d02c5fd22ff27a1e6035b2486be75f5",
|
||||
"installedAt": "2026-06-03T13:32:35.899Z"
|
||||
"installedAt": "2026-07-08T01:16:23.923Z"
|
||||
},
|
||||
"ox-hugo": {
|
||||
"source": "github:quartz-community/ox-hugo",
|
||||
"resolved": "https://github.com/quartz-community/ox-hugo.git",
|
||||
"commit": "832871da9ab33d52f904456c1a5e14f1b2057d83",
|
||||
"installedAt": "2026-06-03T13:16:36.714Z"
|
||||
"installedAt": "2026-07-08T01:16:23.219Z"
|
||||
},
|
||||
"page-title": {
|
||||
"source": "github:quartz-community/page-title",
|
||||
"resolved": "https://github.com/quartz-community/page-title.git",
|
||||
"commit": "a1c1fe0a9c6a5ce1acf6efa01d473a7d9850e2a3",
|
||||
"installedAt": "2026-06-03T13:32:36.002Z"
|
||||
"installedAt": "2026-07-08T01:16:24.448Z"
|
||||
},
|
||||
"quartz-themes": {
|
||||
"source": {
|
||||
@@ -208,79 +208,79 @@
|
||||
"resolved": "https://github.com/saberzero1/quartz-themes.git",
|
||||
"commit": "945135e8b70576753d0591e1713fe56553100b3d",
|
||||
"subdir": "plugin",
|
||||
"installedAt": "2026-06-11T15:50:25.576Z"
|
||||
"installedAt": "2026-07-08T01:17:12.880Z"
|
||||
},
|
||||
"reader-mode": {
|
||||
"source": "github:quartz-community/reader-mode",
|
||||
"resolved": "https://github.com/quartz-community/reader-mode.git",
|
||||
"commit": "73c8bce66df8835510ffac47e53b1ca0f7efd51e",
|
||||
"installedAt": "2026-06-03T13:32:36.320Z"
|
||||
"installedAt": "2026-07-08T01:16:24.740Z"
|
||||
},
|
||||
"recent-notes": {
|
||||
"source": "github:quartz-community/recent-notes",
|
||||
"resolved": "https://github.com/quartz-community/recent-notes.git",
|
||||
"commit": "3c3d104335e2fc5ff62371ead157667adb79b046",
|
||||
"installedAt": "2026-06-03T13:32:36.284Z"
|
||||
"installedAt": "2026-07-08T01:16:24.851Z"
|
||||
},
|
||||
"remove-draft": {
|
||||
"source": "github:quartz-community/remove-draft",
|
||||
"resolved": "https://github.com/quartz-community/remove-draft.git",
|
||||
"commit": "0a51a4c6abb3c86961a9bbf46f4538da87fcf9f8",
|
||||
"installedAt": "2026-06-03T13:16:36.691Z"
|
||||
"installedAt": "2026-07-08T01:16:23.189Z"
|
||||
},
|
||||
"roam": {
|
||||
"source": "github:quartz-community/roam",
|
||||
"resolved": "https://github.com/quartz-community/roam.git",
|
||||
"commit": "b2aad70fdf548d07b8fd28df9edbdba7f256f166",
|
||||
"installedAt": "2026-06-03T13:16:36.771Z"
|
||||
"installedAt": "2026-07-08T01:16:23.211Z"
|
||||
},
|
||||
"search": {
|
||||
"source": "github:quartz-community/search",
|
||||
"resolved": "https://github.com/quartz-community/search.git",
|
||||
"commit": "0f4c1a233cd03a0f562e13636b89b7708f8e2698",
|
||||
"installedAt": "2026-06-03T13:32:36.597Z"
|
||||
"installedAt": "2026-07-08T01:16:24.367Z"
|
||||
},
|
||||
"spacer": {
|
||||
"source": "github:quartz-community/spacer",
|
||||
"resolved": "https://github.com/quartz-community/spacer.git",
|
||||
"commit": "64b135dcfb78c4911f8c42d942872d645cd2a456",
|
||||
"installedAt": "2026-06-03T13:16:37.913Z"
|
||||
"installedAt": "2026-07-08T01:16:24.804Z"
|
||||
},
|
||||
"stacked-pages": {
|
||||
"source": "github:quartz-community/stacked-pages",
|
||||
"resolved": "https://github.com/quartz-community/stacked-pages.git",
|
||||
"commit": "e88fe063c68f74e6ba2dc7c54ddb353bb10c7982",
|
||||
"installedAt": "2026-06-03T13:32:36.330Z"
|
||||
"installedAt": "2026-07-08T01:16:23.540Z"
|
||||
},
|
||||
"syntax-highlighting": {
|
||||
"source": "github:quartz-community/syntax-highlighting",
|
||||
"resolved": "https://github.com/quartz-community/syntax-highlighting.git",
|
||||
"commit": "5bfdc2c3f42d3d0326c4e777eb575f3fb68d51fb",
|
||||
"installedAt": "2026-06-03T13:16:37.737Z"
|
||||
"installedAt": "2026-07-08T01:16:23.636Z"
|
||||
},
|
||||
"table-of-contents": {
|
||||
"source": "github:quartz-community/table-of-contents",
|
||||
"resolved": "https://github.com/quartz-community/table-of-contents.git",
|
||||
"commit": "6984305e5dae0830c025450e160f12610406f7a4",
|
||||
"installedAt": "2026-06-03T13:32:36.265Z"
|
||||
"installedAt": "2026-07-08T01:16:22.858Z"
|
||||
},
|
||||
"tag-list": {
|
||||
"source": "github:quartz-community/tag-list",
|
||||
"resolved": "https://github.com/quartz-community/tag-list.git",
|
||||
"commit": "c48324e2ba768e2a0a5c4c17cd0661b190d075c5",
|
||||
"installedAt": "2026-06-03T13:32:36.346Z"
|
||||
"installedAt": "2026-07-08T01:16:24.516Z"
|
||||
},
|
||||
"tag-page": {
|
||||
"source": "github:quartz-community/tag-page",
|
||||
"resolved": "https://github.com/quartz-community/tag-page.git",
|
||||
"commit": "eabf3eec55c0bab7f49e69957341f34d2ae3c5a1",
|
||||
"installedAt": "2026-06-03T13:32:36.377Z"
|
||||
"installedAt": "2026-07-08T01:16:24.250Z"
|
||||
},
|
||||
"unlisted-pages": {
|
||||
"source": "github:quartz-community/unlisted-pages",
|
||||
"resolved": "https://github.com/quartz-community/unlisted-pages.git",
|
||||
"commit": "f512d8672862c5891e63d755ba04b66277e6d760",
|
||||
"installedAt": "2026-06-03T13:32:36.647Z"
|
||||
"installedAt": "2026-07-08T01:16:23.245Z"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user