You've already forked system-aspect
vault sync 14/04 17:02
This commit is contained in:
12
.obsidian/themes/Typewriter/manifest.json
vendored
12
.obsidian/themes/Typewriter/manifest.json
vendored
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Typewriter",
|
||||
"version": "2.1.3",
|
||||
"minAppVersion": "0.16.0",
|
||||
"author": "crashmoney",
|
||||
"authorUrl": "https://github.com/crashmoney"
|
||||
}
|
||||
"name": "Typewriter",
|
||||
"version": "2.1.10",
|
||||
"minAppVersion": "0.16.0",
|
||||
"author": "crashmoney",
|
||||
"authorUrl": "https://github.com/crashmoney"
|
||||
}
|
||||
|
||||
103
.obsidian/themes/Typewriter/theme.css
vendored
103
.obsidian/themes/Typewriter/theme.css
vendored
@@ -1,10 +1,22 @@
|
||||
/* -------- FRONT MATTER ---------
|
||||
** Theme: Obsidian Typewriter
|
||||
** Version number: 2.1.3
|
||||
** Version number: 2.1.9
|
||||
** GitHub Repo: https://github.com/crashmoney/obsidian-typewriter
|
||||
** Made by: crashmoney
|
||||
----------------------------------- */
|
||||
|
||||
/* +++ TOC
|
||||
|_ FONT FACES
|
||||
|_ COLOR VARIABLES
|
||||
|_ LIGHT MODE
|
||||
|_ DARK MODE
|
||||
|_ TYPOGRAPHY & FONTS
|
||||
|_ UI ELEMENTS
|
||||
|_ PLUGINS
|
||||
|_ STYLE SETTINGS
|
||||
|_ OBSIDIAN HUB
|
||||
*/
|
||||
|
||||
/* +++ FONT FACES */
|
||||
|
||||
@font-face /* iA Writer Mono V */ {
|
||||
@@ -72,6 +84,7 @@ body {
|
||||
--base-d: 15%; /* base lightness for dark mode. 0 is black */
|
||||
--base-l: 96%; /* base lightness for light mode. 100 is white */
|
||||
|
||||
/* rgb: 81, 157, 92 */
|
||||
--theme-accent-h: 129;
|
||||
--theme-accent-s: 31.9%;
|
||||
--theme-accent-l: 46.7%;
|
||||
@@ -85,7 +98,7 @@ body {
|
||||
*/
|
||||
}
|
||||
|
||||
/* +++ LIGHT MDOE */
|
||||
/* +++ LIGHT MODE */
|
||||
.theme-light {
|
||||
--background-primary: hsl(
|
||||
calc(var(--base-h) + 44),
|
||||
@@ -189,6 +202,8 @@ body {
|
||||
|
||||
--icon-color: var(--text-muted);
|
||||
--icon-hex: 000;
|
||||
|
||||
--graph-line-color: #c0c9ce;
|
||||
}
|
||||
|
||||
/* +++ DARK MODE */
|
||||
@@ -266,6 +281,8 @@ body {
|
||||
--scrollbar-bg: rgba(255, 255, 255, 0.05);
|
||||
--scrollbar-thumb-bg: rgba(255, 255, 255, 0.1);
|
||||
--highlight-mix-blend-mode: lighten;
|
||||
|
||||
--graph-line-color: #6f7577;
|
||||
}
|
||||
|
||||
/* +++ TYPOGRAPHY & FONTS */
|
||||
@@ -276,12 +293,14 @@ body {
|
||||
var(--font-text-override);
|
||||
--font-monospace-theme: "JetBrains Mono";
|
||||
|
||||
--font-normal: 1em;
|
||||
--metadata-input-font-size: var(--font-small);
|
||||
|
||||
--font-normal-size: 1em;
|
||||
--font-small: 0.813em;
|
||||
--font-smaller: 0.688em;
|
||||
--font-smallest: 0.625em;
|
||||
|
||||
--code-size: var(--font-normal);
|
||||
--code-size: var(--font-small);
|
||||
--code-normal: var(--blue);
|
||||
|
||||
--h1: 1.8em;
|
||||
@@ -354,6 +373,12 @@ body {
|
||||
font-size: var(--font-smaller) !important;
|
||||
}
|
||||
|
||||
/* increase blockquote height */
|
||||
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote {
|
||||
padding-top: 7px;
|
||||
padding-bottom: 7px;
|
||||
}
|
||||
|
||||
/* HIGHLIGHT ACTIVE LINE */
|
||||
.active-line-highlight .markdown-source-view .CodeMirror-activeline,
|
||||
.active-line-highlight .markdown-source-view.mod-cm6 .cm-active.cm-line {
|
||||
@@ -361,6 +386,7 @@ body {
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
/* SIDEBAR NOTES */
|
||||
/* make sidebar notes' background var(--background-primary) */
|
||||
.mod-right-split .markdown-preview-view,
|
||||
.mod-left-split .markdown-preview-view,
|
||||
@@ -376,6 +402,18 @@ body {
|
||||
font-weight: var(--h1-weight);
|
||||
}
|
||||
|
||||
/* increase space between editor and metadata – credit to Minimal */
|
||||
.metadata-container {
|
||||
--input-height: 2rem;
|
||||
}
|
||||
.markdown-source-view .metadata-container {
|
||||
transform: translateX(-4px);
|
||||
}
|
||||
.is-phone {
|
||||
--metadata-label-font-size: var(--font-adaptive-smaller);
|
||||
--metadata-input-font-size: var(--font-adaptive-smaller);
|
||||
}
|
||||
|
||||
/* make cursor accent color */
|
||||
.CodeMirror-cursor {
|
||||
background-color: var(--color-accent);
|
||||
@@ -398,7 +436,7 @@ body .modal .prompt-results {
|
||||
padding: calc((1rem * 2) * 1);
|
||||
}
|
||||
body .modal-bg {
|
||||
/*backdrop-filter: blur(8px);*/ /*causes slowdowns*/
|
||||
/* backdrop-filter: blur(8px); */ /* causes slowdowns */
|
||||
background-color: rgb(8, 8, 8);
|
||||
}
|
||||
|
||||
@@ -410,7 +448,7 @@ body .modal-bg {
|
||||
background-color: var(--background-primary);
|
||||
}
|
||||
|
||||
/* Remove note-to-note link underline */
|
||||
/* remove note-to-note link underline */
|
||||
:root body {
|
||||
--link-decoration: none;
|
||||
--link-decoration-hover: none;
|
||||
@@ -446,35 +484,57 @@ body {
|
||||
:root h1 {
|
||||
margin: 0;
|
||||
}
|
||||
.markdown-preview-view div:has(>h1) + div > p {
|
||||
.markdown-preview-view div:has(> h1) + div > p {
|
||||
margin-top: 1em;
|
||||
}
|
||||
.markdown-preview-view div:has(+div>h1) > p {
|
||||
margin-bottom: .33em;
|
||||
.markdown-preview-view div:has(+ div > h1) > p {
|
||||
margin-bottom: 0.33em;
|
||||
}
|
||||
|
||||
/* FIX: margin-top funkiness present since Obsidian 1.1+ */
|
||||
.markdown-source-view table {
|
||||
margin-top: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
/* FIX: background color for titlebar buttons on Windows */
|
||||
div.titlebar-button-container.mod-right {
|
||||
background-color: var(--background-primary) !important;
|
||||
}
|
||||
|
||||
/* EDITOR: font-scalable edit-block-button */
|
||||
/* add header padding for button if last column is right-aligned */
|
||||
.markdown-source-view table th:last-child[align="right"] {
|
||||
padding-right: 2.767527675276753em;
|
||||
padding-left: 0.8324108241082411em; /* balances padding-right */
|
||||
padding-right: 2.767527675276753em;
|
||||
padding-left: 0.8324108241082411em; /* balances padding-right */
|
||||
}
|
||||
/* button attributes */
|
||||
.markdown-source-view.mod-cm6 .edit-block-button {
|
||||
opacity: 1;
|
||||
top: 0.3em;
|
||||
right: 0.25em;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
top: 0.3em;
|
||||
right: 0.25em;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.markdown-source-view div.edit-block-button svg {
|
||||
width: 1.2em;
|
||||
height: 1em;
|
||||
width: 1.2em;
|
||||
height: 1em;
|
||||
}
|
||||
|
||||
/* DARKEN GRAPH VIEW LINS */
|
||||
.graph-view.color-line {
|
||||
color: var(--graph-line-color);
|
||||
}
|
||||
|
||||
/* FOLD INDICATOR SPACING */
|
||||
/* prevent overlap with text */
|
||||
|
||||
div.cm-fold-indicator {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.markdown-source-view.mod-cm6 .cm-fold-indicator .collapse-indicator {
|
||||
padding-right: 4px;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
/* +++ PLUGINS */
|
||||
@@ -485,7 +545,7 @@ body {
|
||||
}
|
||||
|
||||
/* KANBAN by @mgmeyers */
|
||||
.kanban-plugin__grow-wrap>textarea {
|
||||
.kanban-plugin__grow-wrap > textarea {
|
||||
background-color: var(--background-primary);
|
||||
}
|
||||
|
||||
@@ -495,12 +555,13 @@ div.todo-item-view-item span.due-date {
|
||||
color: white; /* makes due dates legible */
|
||||
}
|
||||
|
||||
div.todo-item-view-item span.due-date.overdue {
|
||||
div.todo-item-view-item span.due-date.overdue {
|
||||
background-color: var(--orange);
|
||||
}
|
||||
|
||||
/* make toolbar items more legible */
|
||||
div.todo-item-view-item-link svg, div.todo-item-view-toolbar-item svg {
|
||||
div.todo-item-view-item-link svg,
|
||||
div.todo-item-view-toolbar-item svg {
|
||||
fill: var(--text-faint);
|
||||
}
|
||||
/* make focused toolbar item follow the theme accent */
|
||||
|
||||
Reference in New Issue
Block a user