Skip to content

Commit

Permalink
Quartz sync: Dec 29, 2024, 6:25 AM
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelbend committed Dec 29, 2024
1 parent 6a6b672 commit 61cbd70
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"annotatePrefix": "annotated_",
"annotatePreserveSize": false,
"previewImageType": "SVGIMG",
"renderingConcurrency": 3,
"allowImageCache": true,
"allowImageCacheInScene": true,
"displayExportedImageIfAvailable": false,
Expand Down Expand Up @@ -111,7 +112,7 @@
"mdCSS": "",
"scriptEngineSettings": {},
"defaultTrayMode": true,
"previousRelease": "2.7.2",
"previousRelease": "2.7.4",
"showReleaseNotes": true,
"showNewVersionNotification": true,
"latexBoilerplate": "\\color{blue}",
Expand Down
8 changes: 4 additions & 4 deletions content/.obsidian/plugins/obsidian-excalidraw-plugin/main.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-excalidraw-plugin",
"name": "Excalidraw",
"version": "2.7.2",
"version": "2.7.4",
"minAppVersion": "1.1.6",
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
"author": "Zsolt Viczian",
Expand Down

Large diffs are not rendered by default.

37 changes: 19 additions & 18 deletions quartz.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,29 +28,30 @@ const config: QuartzConfig = {
},
colors: {
lightMode: {
light: "#fafafa", // Authentic Atom One Light background
lightgray: "#e5e5e5", // Very light gray for panels
gray: "#4b535e", // Darkened medium gray, slightly darker for better contrast
darkgray: "#2f3338", // Darker gray for primary text, optimized for readability
dark: "#c678dd", // Light purple for headers and accents (matches dark mode)
secondary: "#56b6c2", // Teal for links and accents, consistent with dark mode
tertiary: "#98675d", // Warm pinkish-brown for secondary accents
highlight: "rgba(216, 222, 233, 0.15)", // Light gray for background highlights
textHighlight: "#d19a66", // Light, warm gold for highlighted text
light: "#fafafa", // Authentic Atom One Light background
lightgray: "#e5e5e5", // Very light gray for panels
gray: "#4b535e", // Darkened medium gray, slightly darker for better contrast
darkgray: "#2f3338", // Darker gray for primary text, optimized for readability
dark: "#c678dd", // Light purple for headers and accents (matches dark mode)
secondary: "#56b6c2", // Teal for links and accents, consistent with dark mode
tertiary: "#98675d", // Warm pinkish-brown for secondary accents
highlight: "rgba(216, 222, 233, 0.15)", // Light gray for background highlights
textHighlight: "#d19a66", // Light, warm gold for highlighted text
},
darkMode: {
light: "#282c34", // Authentic Atom One Dark background
lightgray: "#3e4451", // Slightly lighter than background for panels
gray: "#5c6370", // Muted gray for secondary text
darkgray: "#abb2bf", // Light gray for main text
dark: "#c678dd", // Soft purple for headers and accents (replaces red)
secondary: "#56b6c2", // Teal for links and additional accents
tertiary: "#d19a66", // Warm pinkish-orange for secondary accents
highlight: "rgba(56, 61, 72, 0.15)", // Subtle dark highlight
textHighlight: "#e5c07b88", // Soft gold for highlighted text
light: "#282c34", // Authentic Atom One Dark background
lightgray: "#3e4451", // Slightly lighter than background for panels
gray: "#5c6370", // Muted gray for secondary text
darkgray: "#abb2bf", // Light gray for main text
dark: "#c678dd", // Soft purple for headers and accents (replaces red)
secondary: "#56b6c2", // Teal for links and additional accents
tertiary: "#d19a66", // Warm pinkish-orange for secondary accents
highlight: "rgba(56, 61, 72, 0.15)", // Subtle dark highlight
textHighlight: "#e5c07b88", // Soft gold for highlighted text
},
},
},
generateSocialImages: true
},
plugins: {
transformers: [
Expand Down

0 comments on commit 61cbd70

Please sign in to comment.