├── .prettierignore ├── .gitignore ├── src ├── index.ts ├── generator.test.ts ├── markdownTable.test.ts ├── markdownTable.ts └── generator.ts ├── readme.md ├── package.json ├── .github ├── dependabot.yml └── workflows │ └── node.js.yml ├── tsconfig.json ├── license ├── bun.lock └── lists └── themes.md /.prettierignore: -------------------------------------------------------------------------------- 1 | lists/ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | node_modules/ 3 | 4 | # dotenv environment variables 5 | .env 6 | 7 | # Bun 8 | .bun 9 | 10 | # macOS 11 | .DS_Store -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { runGeneration } from "./generator"; 2 | 3 | runGeneration().catch((error) => { 4 | console.error(error); 5 | process.exitCode = 1; 6 | }); 7 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # 📃 obsidian-community-list 2 | 3 | This repository fetches the [community themes and plugins catalog](https://github.com/obsidianmd/obsidian-releases) and turns it into Markdown tables. 4 | 5 | - [🎀 Themes](lists/themes.md) 6 | - [🔌 Plugins](lists/plugins.md) 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "obsidian-community-list", 3 | "scripts": { 4 | "start": "bun run src/index.ts", 5 | "format": "prettier --write .", 6 | "lint": "prettier --check .", 7 | "test": "bun test" 8 | }, 9 | "devDependencies": { 10 | "@types/bun": "^1.3.5", 11 | "prettier": "^3.7.4", 12 | "typescript": "^5.9.3" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: "bun" 9 | directory: "/" # Location of package manifests 10 | schedule: 11 | interval: "daily" 12 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "lib": ["ESNext"], 4 | "target": "ESNext", 5 | "module": "Preserve", 6 | "moduleDetection": "force", 7 | "jsx": "react-jsx", 8 | "allowJs": true, 9 | "moduleResolution": "bundler", 10 | "allowImportingTsExtensions": true, 11 | "verbatimModuleSyntax": true, 12 | "noEmit": true, 13 | "strict": true, 14 | "skipLibCheck": true, 15 | "noFallthroughCasesInSwitch": true, 16 | "noUncheckedIndexedAccess": true, 17 | "noImplicitOverride": true, 18 | "noUnusedLocals": false, 19 | "noUnusedParameters": false, 20 | "noPropertyAccessFromIndexSignature": false, 21 | "types": ["bun"], 22 | "resolveJsonModule": true 23 | }, 24 | "include": ["src"] 25 | } 26 | -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- 1 | # Runs the Bun toolchain on a schedule. Everything (install, lint, test, build) 2 | # executes via Bun, so no standalone Node runtime is required. 3 | 4 | name: Bun CI 5 | 6 | on: 7 | push: 8 | branches: [main] 9 | pull_request: 10 | branches: [main] 11 | schedule: 12 | - cron: "00 00 * * *" 13 | 14 | jobs: 15 | build: 16 | permissions: 17 | contents: write 18 | runs-on: ubuntu-latest 19 | steps: 20 | - uses: actions/checkout@v4 21 | - name: Setup Bun 22 | uses: oven-sh/setup-bun@v1 23 | with: 24 | bun-version: 1.3.4 25 | - run: bun install --no-save 26 | - run: bun run lint 27 | - run: bun test 28 | - run: bun run start 29 | - name: Commit generated output 30 | if: github.event_name == 'schedule' 31 | run: |- 32 | git diff 33 | git config --global user.email "actions@users.noreply.github.com" 34 | git config --global user.name "README-bot" 35 | git add -A 36 | git commit -m "🐱 readme.md" || exit 0 37 | git push 38 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 Jan Szymański 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1, 3 | "configVersion": 0, 4 | "workspaces": { 5 | "": { 6 | "name": "obsidian-community-list", 7 | "devDependencies": { 8 | "@types/bun": "^1.3.5", 9 | "prettier": "^3.7.4", 10 | "typescript": "^5.9.3", 11 | }, 12 | }, 13 | }, 14 | "packages": { 15 | "@types/bun": ["@types/bun@1.3.5", "", { "dependencies": { "bun-types": "1.3.5" } }, "sha512-RnygCqNrd3srIPEWBd5LFeUYG7plCoH2Yw9WaZGyNmdTEei+gWaHqydbaIRkIkcbXwhBT94q78QljxN0Sk838w=="], 16 | 17 | "@types/node": ["@types/node@24.10.2", "", { "dependencies": { "undici-types": "~7.16.0" } }, "sha512-WOhQTZ4G8xZ1tjJTvKOpyEVSGgOTvJAfDK3FNFgELyaTpzhdgHVHeqW8V+UJvzF5BT+/B54T/1S2K6gd9c7bbA=="], 18 | 19 | "bun-types": ["bun-types@1.3.5", "", { "dependencies": { "@types/node": "*" } }, "sha512-inmAYe2PFLs0SUbFOWSVD24sg1jFlMPxOjOSSCYqUgn4Hsc3rDc7dFvfVYjFPNHtov6kgUeulV4SxbuIV/stPw=="], 20 | 21 | "prettier": ["prettier@3.7.4", "", { "bin": "bin/prettier.cjs" }, "sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA=="], 22 | 23 | "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="], 24 | 25 | "undici-types": ["undici-types@7.16.0", "", {}, "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw=="], 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/generator.test.ts: -------------------------------------------------------------------------------- 1 | import { describe, expect, test } from "bun:test"; 2 | import { 3 | normalizePlugins, 4 | normalizeThemes, 5 | renderPluginTable, 6 | renderThemeTable, 7 | } from "./generator"; 8 | 9 | describe("normalizePlugins", () => { 10 | test("drops invalid items and preserves descriptions", () => { 11 | const payload = [ 12 | { name: "Sample", repo: "owner/repo", description: "desc" }, 13 | { name: "Missing repo" }, 14 | { repo: "owner/only" }, 15 | ]; 16 | 17 | const normalized = normalizePlugins(payload); 18 | 19 | expect(normalized).toEqual([ 20 | { name: "Sample", repo: "owner/repo", description: "desc" }, 21 | ]); 22 | }); 23 | }); 24 | 25 | describe("normalizeThemes", () => { 26 | test("requires name, repo and screenshot", () => { 27 | const payload = [ 28 | { name: "Theme", repo: "owner/theme", screenshot: "shot.png" }, 29 | { name: "Theme", repo: "owner/theme" }, 30 | ]; 31 | 32 | const normalized = normalizeThemes(payload); 33 | 34 | expect(normalized).toEqual([ 35 | { name: "Theme", repo: "owner/theme", screenshot: "shot.png" }, 36 | ]); 37 | }); 38 | }); 39 | 40 | describe("renderers", () => { 41 | test("renderPluginTable substitutes empty description", () => { 42 | const table = renderPluginTable([ 43 | { name: "Plugin", repo: "owner/plugin", description: "" }, 44 | ]); 45 | 46 | expect(table.includes("—")).toBe(true); 47 | }); 48 | 49 | test("renderThemeTable embeds screenshot URLs", () => { 50 | const table = renderThemeTable([ 51 | { name: "Theme", repo: "owner/theme", screenshot: "shot.png" }, 52 | ]); 53 | 54 | expect(table).toContain("shot.png"); 55 | }); 56 | }); 57 | -------------------------------------------------------------------------------- /src/markdownTable.test.ts: -------------------------------------------------------------------------------- 1 | import { describe, expect, test } from "bun:test"; 2 | import { createMarkdownTable, parseMarkdownTable } from "./markdownTable"; 3 | 4 | describe("createMarkdownTable", () => { 5 | test("renders well-formed markdown with escaped characters", () => { 6 | const table = createMarkdownTable( 7 | ["📁 Name", "✨ Description"], 8 | [["alpha|beta", "line one\nline two"]], 9 | ); 10 | 11 | expect(table).toBe( 12 | "| 📁 Name | ✨ Description |\n| --- | --- |\n| alpha\\|beta | line one
line two |", 13 | ); 14 | }); 15 | 16 | test("pads short rows to match header count", () => { 17 | const table = createMarkdownTable(["A", "B", "C"], [["x"]]); 18 | 19 | expect(table.endsWith("| x | | |")).toBe(true); 20 | }); 21 | }); 22 | 23 | describe("parseMarkdownTable", () => { 24 | test("handles rows that span multiple lines", () => { 25 | const markdown = [ 26 | "| 📁 Name | ✨ Description |", 27 | "| --- | --- |", 28 | "| [Quick snippets and navigation](https://github.com/ieviev/obsidian-keyboard-shortcuts) | Keyboard navigation up/down for headings", 29 | "- Configurable default code block and callout", 30 | "- Copy code block via keyboard shortcut. |", 31 | ].join("\n"); 32 | 33 | const parsed = parseMarkdownTable(markdown); 34 | 35 | expect(parsed.headers).toEqual(["📁 Name", "✨ Description"]); 36 | expect(parsed.rows).toHaveLength(1); 37 | expect(parsed.rows[0]?.[1]).toBe( 38 | "Keyboard navigation up/down for headings\n- Configurable default code block and callout\n- Copy code block via keyboard shortcut.", 39 | ); 40 | 41 | const regenerated = createMarkdownTable(parsed.headers, parsed.rows); 42 | 43 | expect(regenerated).toContain("
- Configurable default code block"); 44 | expect(regenerated.includes("\n- Configurable")).toBe(false); 45 | }); 46 | }); 47 | -------------------------------------------------------------------------------- /src/markdownTable.ts: -------------------------------------------------------------------------------- 1 | function sanitizeCell(value: string): string { 2 | const cleaned = value 3 | .replace(/\\/g, "\\\\") 4 | .replace(/\|/g, "\\|") 5 | .replace(/\r?\n/g, "
") 6 | .trim(); 7 | 8 | return cleaned.length > 0 ? cleaned : " "; 9 | } 10 | 11 | function normalizeRow(row: string[], columnCount: number): string[] { 12 | const normalized: string[] = []; 13 | 14 | for (let index = 0; index < columnCount; index += 1) { 15 | const cell = row[index] ?? ""; 16 | normalized.push(sanitizeCell(cell)); 17 | } 18 | 19 | return normalized; 20 | } 21 | 22 | export type ParsedMarkdownTable = { 23 | headers: string[]; 24 | rows: string[][]; 25 | }; 26 | 27 | function splitRowIntoCells(row: string): string[] { 28 | const trimmed = row.trim(); 29 | 30 | if (!trimmed.startsWith("|") || !trimmed.endsWith("|")) { 31 | throw new Error(`Invalid table row: ${row}`); 32 | } 33 | 34 | const content = trimmed.slice(1, -1); 35 | const cells: string[] = []; 36 | let buffer = ""; 37 | let index = 0; 38 | 39 | while (index < content.length) { 40 | const char = content[index]; 41 | 42 | if (char === "\\") { 43 | const nextChar = content[index + 1]; 44 | 45 | if (nextChar === "|") { 46 | buffer += "|"; 47 | index += 2; 48 | continue; 49 | } 50 | 51 | buffer += "\\"; 52 | index += 1; 53 | continue; 54 | } 55 | 56 | if (char === "|") { 57 | cells.push(buffer.trim()); 58 | buffer = ""; 59 | index += 1; 60 | continue; 61 | } 62 | 63 | buffer += char; 64 | index += 1; 65 | } 66 | 67 | cells.push(buffer.trim()); 68 | 69 | return cells; 70 | } 71 | 72 | function isDividerCell(value: string): boolean { 73 | return /^:?-{3,}:?$/.test(value.trim()); 74 | } 75 | 76 | function collectTableRows(markdown: string): string[] { 77 | const lines = markdown.split(/\r?\n/); 78 | const rows: string[] = []; 79 | let buffer: string[] = []; 80 | 81 | const pushBuffer = (): void => { 82 | if (buffer.length > 0) { 83 | rows.push(buffer.join("\n")); 84 | buffer = []; 85 | } 86 | }; 87 | 88 | for (const line of lines) { 89 | if (buffer.length === 0) { 90 | if (line.trim().length === 0) { 91 | continue; 92 | } 93 | 94 | if (!line.trimStart().startsWith("|")) { 95 | continue; 96 | } 97 | } 98 | 99 | buffer.push(line); 100 | 101 | if (line.trimEnd().endsWith("|")) { 102 | pushBuffer(); 103 | } 104 | } 105 | 106 | pushBuffer(); 107 | 108 | return rows; 109 | } 110 | 111 | export function createMarkdownTable( 112 | headers: string[], 113 | rows: string[][], 114 | ): string { 115 | if (headers.length === 0) { 116 | throw new Error("Cannot create a table without headers"); 117 | } 118 | 119 | const columnCount = headers.length; 120 | const normalizedHeaders = headers.map(sanitizeCell); 121 | const normalizedRows = rows.map((row) => normalizeRow(row, columnCount)); 122 | const headerLine = `| ${normalizedHeaders.join(" | ")} |`; 123 | const dividerLine = `| ${normalizedHeaders.map(() => "---").join(" | ")} |`; 124 | const rowLines = normalizedRows.map((row) => `| ${row.join(" | ")} |`); 125 | 126 | return [headerLine, dividerLine, ...rowLines].join("\n"); 127 | } 128 | 129 | export function parseMarkdownTable(markdown: string): ParsedMarkdownTable { 130 | const rows = collectTableRows(markdown); 131 | 132 | if (rows.length < 2) { 133 | throw new Error("Markdown table must include headers and divider row"); 134 | } 135 | 136 | const [headerRow, dividerRow, ...dataRows] = rows; 137 | 138 | if (!headerRow || !dividerRow) { 139 | throw new Error("Markdown table must include headers and divider row"); 140 | } 141 | 142 | const headers = splitRowIntoCells(headerRow); 143 | const dividerCells = splitRowIntoCells(dividerRow); 144 | 145 | if ( 146 | dividerCells.length !== headers.length || 147 | !dividerCells.every(isDividerCell) 148 | ) { 149 | throw new Error("Invalid markdown table divider row"); 150 | } 151 | 152 | const parsedRows = dataRows.map((row) => splitRowIntoCells(row)); 153 | 154 | return { headers, rows: parsedRows }; 155 | } 156 | -------------------------------------------------------------------------------- /src/generator.ts: -------------------------------------------------------------------------------- 1 | import { mkdir, writeFile } from "node:fs/promises"; 2 | import { join } from "node:path"; 3 | import { createMarkdownTable } from "./markdownTable"; 4 | 5 | const OUTPUT_DIRECTORY = "lists"; 6 | 7 | const URLS = { 8 | github: "https://github.com", 9 | themes: 10 | "https://raw.githubusercontent.com/obsidianmd/obsidian-releases/refs/heads/master/community-css-themes.json", 11 | plugins: 12 | "https://raw.githubusercontent.com/obsidianmd/obsidian-releases/refs/heads/master/community-plugins.json", 13 | }; 14 | 15 | export type PluginRecord = { 16 | name: string; 17 | repo: string; 18 | description: string; 19 | }; 20 | 21 | export type ThemeRecord = { 22 | name: string; 23 | repo: string; 24 | screenshot: string; 25 | }; 26 | 27 | export type Normalizer = (payload: unknown) => T[]; 28 | export type TableRenderer = (records: T[]) => string; 29 | 30 | function isRecord(value: unknown): value is Record { 31 | return typeof value === "object" && value !== null; 32 | } 33 | 34 | function buildGithubUrl(repo: string): string { 35 | return encodeURI(`${URLS.github}/${repo}`); 36 | } 37 | 38 | function buildScreenshotUrl(theme: ThemeRecord): string { 39 | return encodeURI( 40 | `https://raw.githubusercontent.com/${theme.repo}/master/${theme.screenshot}`, 41 | ); 42 | } 43 | 44 | function formatLink(label: string, href: string): string { 45 | return `[${label}](${href})`; 46 | } 47 | 48 | function formatImage(alt: string, href: string): string { 49 | return `![${alt}](${href})`; 50 | } 51 | 52 | export function normalizePlugins(payload: unknown): PluginRecord[] { 53 | if (!Array.isArray(payload)) { 54 | return []; 55 | } 56 | 57 | return payload.reduce((acc, item) => { 58 | if (!isRecord(item)) { 59 | return acc; 60 | } 61 | 62 | const name = typeof item.name === "string" ? item.name : null; 63 | const repo = typeof item.repo === "string" ? item.repo : null; 64 | const description = 65 | typeof item.description === "string" ? item.description : ""; 66 | 67 | if (name && repo) { 68 | acc.push({ name, repo, description }); 69 | } 70 | 71 | return acc; 72 | }, []); 73 | } 74 | 75 | export function normalizeThemes(payload: unknown): ThemeRecord[] { 76 | if (!Array.isArray(payload)) { 77 | return []; 78 | } 79 | 80 | return payload.reduce((acc, item) => { 81 | if (!isRecord(item)) { 82 | return acc; 83 | } 84 | 85 | const name = typeof item.name === "string" ? item.name : null; 86 | const repo = typeof item.repo === "string" ? item.repo : null; 87 | const screenshot = 88 | typeof item.screenshot === "string" ? item.screenshot : null; 89 | 90 | if (name && repo && screenshot) { 91 | acc.push({ name, repo, screenshot }); 92 | } 93 | 94 | return acc; 95 | }, []); 96 | } 97 | 98 | export function renderPluginTable(records: PluginRecord[]): string { 99 | const headers = ["📁 Name", "✨ Description"]; 100 | const rows = records.map((plugin) => [ 101 | formatLink(plugin.name, buildGithubUrl(plugin.repo)), 102 | plugin.description || "—", 103 | ]); 104 | 105 | return createMarkdownTable(headers, rows); 106 | } 107 | 108 | export function renderThemeTable(records: ThemeRecord[]): string { 109 | const headers = ["📁 Repository", "📷 Screenshot"]; 110 | const rows = records.map((theme) => [ 111 | formatLink(theme.repo, buildGithubUrl(theme.repo)), 112 | formatImage(theme.name, buildScreenshotUrl(theme)), 113 | ]); 114 | 115 | return createMarkdownTable(headers, rows); 116 | } 117 | 118 | async function fetchJson(url: string): Promise { 119 | const response = await fetch(url); 120 | 121 | if (!response.ok) { 122 | throw new Error( 123 | `Failed to fetch ${url}: ${response.status} ${response.statusText}`, 124 | ); 125 | } 126 | 127 | return response.json(); 128 | } 129 | 130 | async function writeMarkdownFile( 131 | filename: string, 132 | content: string, 133 | ): Promise { 134 | const filePath = join(OUTPUT_DIRECTORY, `${filename}.md`); 135 | await writeFile(filePath, `${content}\n`, "utf8"); 136 | } 137 | 138 | async function generateList(options: { 139 | filename: string; 140 | url: string; 141 | normalize: Normalizer; 142 | render: TableRenderer; 143 | }): Promise { 144 | const raw = await fetchJson(options.url); 145 | const normalized = options.normalize(raw); 146 | const table = options.render(normalized); 147 | await writeMarkdownFile(options.filename, table); 148 | } 149 | 150 | async function ensureOutputDirectory(): Promise { 151 | await mkdir(OUTPUT_DIRECTORY, { recursive: true }); 152 | } 153 | 154 | export async function runGeneration(): Promise { 155 | await ensureOutputDirectory(); 156 | 157 | const generationResults = await Promise.allSettled([ 158 | generateList({ 159 | filename: "themes", 160 | url: URLS.themes, 161 | normalize: normalizeThemes, 162 | render: renderThemeTable, 163 | }), 164 | generateList({ 165 | filename: "plugins", 166 | url: URLS.plugins, 167 | normalize: normalizePlugins, 168 | render: renderPluginTable, 169 | }), 170 | ]); 171 | 172 | const failures = generationResults.filter( 173 | (result): result is PromiseRejectedResult => result.status === "rejected", 174 | ); 175 | 176 | if (failures.length > 0) { 177 | const reasons = failures.map((failure) => { 178 | if (failure.reason instanceof Error) { 179 | return failure.reason; 180 | } 181 | 182 | if (typeof failure.reason === "string") { 183 | return new Error(failure.reason); 184 | } 185 | 186 | return new Error("Unknown generation failure"); 187 | }); 188 | 189 | throw new AggregateError( 190 | reasons, 191 | "Failed to complete all list generations", 192 | ); 193 | } 194 | } 195 | -------------------------------------------------------------------------------- /lists/themes.md: -------------------------------------------------------------------------------- 1 | | 📁 Repository | 📷 Screenshot | 2 | | --- | --- | 3 | | [kognise/obsidian-atom](https://github.com/kognise/obsidian-atom) | ![Atom](https://raw.githubusercontent.com/kognise/obsidian-atom/master/screenshot-hybrid.png) | 4 | | [cotemaxime/obsidian-amethyst](https://github.com/cotemaxime/obsidian-amethyst) | ![Amethyst](https://raw.githubusercontent.com/cotemaxime/obsidian-amethyst/master/screenshot.png) | 5 | | [insanum/obsidian_gruvbox](https://github.com/insanum/obsidian_gruvbox) | ![Obsidian gruvbox](https://raw.githubusercontent.com/insanum/obsidian_gruvbox/master/dark.png) | 6 | | [insanum/obsidian_nord](https://github.com/insanum/obsidian_nord) | ![Obsidian Nord](https://raw.githubusercontent.com/insanum/obsidian_nord/master/dark.png) | 7 | | [jarodise/Dracula-for-Obsidian.md](https://github.com/jarodise/Dracula-for-Obsidian.md) | ![Dracula for Obsidian](https://raw.githubusercontent.com/jarodise/Dracula-for-Obsidian.md/master/screencap.jpg) | 8 | | [dogwaddle/obsidian-gastown-theme.md](https://github.com/dogwaddle/obsidian-gastown-theme.md) | ![Gastown](https://raw.githubusercontent.com/dogwaddle/obsidian-gastown-theme.md/master/ObsidianOne.png) | 9 | | [deathau/80s-Neon-for-Obsidian.md](https://github.com/deathau/80s-Neon-for-Obsidian.md) | ![80s Neon](https://raw.githubusercontent.com/deathau/80s-Neon-for-Obsidian.md/master/screenshot.jpg) | 10 | | [deathau/Base2Tone-For-Obsidian.md](https://github.com/deathau/Base2Tone-For-Obsidian.md) | ![Base2Tone](https://raw.githubusercontent.com/deathau/Base2Tone-For-Obsidian.md/master/colours.gif) | 11 | | [deathau/Notation-for-Obsidian](https://github.com/deathau/Notation-for-Obsidian) | ![Notation](https://raw.githubusercontent.com/deathau/Notation-for-Obsidian/master/screenshot.jpg) | 12 | | [harmtemolder/obsidian-solarized](https://github.com/harmtemolder/obsidian-solarized) | ![Solarized](https://raw.githubusercontent.com/harmtemolder/obsidian-solarized/master/screenshot.png) | 13 | | [obsidian-ezs/obsidian-comfort-color-dark](https://github.com/obsidian-ezs/obsidian-comfort-color-dark) | ![Comfort color dark](https://raw.githubusercontent.com/obsidian-ezs/obsidian-comfort-color-dark/master/screencap.png) | 14 | | [obsidian-ezs/obsidian-ursa](https://github.com/obsidian-ezs/obsidian-ursa) | ![Ursa](https://raw.githubusercontent.com/obsidian-ezs/obsidian-ursa/master/light-theme_full.png) | 15 | | [nickmilo/Cybertron](https://github.com/nickmilo/Cybertron) | ![Cybertron](https://raw.githubusercontent.com/nickmilo/Cybertron/master/Cybertron.png) | 16 | | [kartik-karz/moonlight-obsidian](https://github.com/kartik-karz/moonlight-obsidian) | ![Moonlight](https://raw.githubusercontent.com/kartik-karz/moonlight-obsidian/master/moonlight-theme.png) | 17 | | [seanwcom/Red-Graphite-for-Obsidian](https://github.com/seanwcom/Red-Graphite-for-Obsidian) | ![Red Graphite](https://raw.githubusercontent.com/seanwcom/Red-Graphite-for-Obsidian/master/thumbnail.png) | 18 | | [kartik-karz/subtlegold-obsidian](https://github.com/kartik-karz/subtlegold-obsidian) | ![Subtlegold](https://raw.githubusercontent.com/kartik-karz/subtlegold-obsidian/master/subtlegold-theme.png) | 19 | | [sainadh-d/obsidian-boom](https://github.com/sainadh-d/obsidian-boom) | ![Obsidian Boom](https://raw.githubusercontent.com/sainadh-d/obsidian-boom/master/roam-1.png) | 20 | | [pgalliford/Obsidian-theme-Incredible-Hulk](https://github.com/pgalliford/Obsidian-theme-Incredible-Hulk) | ![Hulk](https://raw.githubusercontent.com/pgalliford/Obsidian-theme-Incredible-Hulk/master/Screen%20Shot.png) | 21 | | [GuangluWu/obsidian-pisum](https://github.com/GuangluWu/obsidian-pisum) | ![Pisum](https://raw.githubusercontent.com/GuangluWu/obsidian-pisum/master/fullpower.png) | 22 | | [elliotboyd/obsidian-traffic-lights](https://github.com/elliotboyd/obsidian-traffic-lights) | ![Traffic Lights](https://raw.githubusercontent.com/elliotboyd/obsidian-traffic-lights/master/dark.png) | 23 | | [mediapathic/obsidian-arsmagna-theme](https://github.com/mediapathic/obsidian-arsmagna-theme) | ![Ars Magna](https://raw.githubusercontent.com/mediapathic/obsidian-arsmagna-theme/master/arsmagna.png) | 24 | | [cannibalox/Obsdn-dark-rmx](https://github.com/cannibalox/Obsdn-dark-rmx) | ![Obsdn-Dark-Rmx](https://raw.githubusercontent.com/cannibalox/Obsdn-dark-rmx/master/Obsdn-Dark-Rmx.png) | 25 | | [kepano/obsidian-minimal](https://github.com/kepano/obsidian-minimal) | ![Minimal](https://raw.githubusercontent.com/kepano/obsidian-minimal/master/dark-simple.png) | 26 | | [rcvd/obsidian_ia](https://github.com/rcvd/obsidian_ia) | ![obsidian_ia](https://raw.githubusercontent.com/rcvd/obsidian_ia/master/light.png) | 27 | | [bcdavasconcelos/Obsidian-Charcoal](https://github.com/bcdavasconcelos/Obsidian-Charcoal) | ![Charcoal](https://raw.githubusercontent.com/bcdavasconcelos/Obsidian-Charcoal/master/charcoal.png) | 28 | | [bcdavasconcelos/Obsidian-Panic_Mode](https://github.com/bcdavasconcelos/Obsidian-Panic_Mode) | ![Panic Mode](https://raw.githubusercontent.com/bcdavasconcelos/Obsidian-Panic_Mode/master/panic.png) | 29 | | [bcdavasconcelos/Obsidian-Graphite](https://github.com/bcdavasconcelos/Obsidian-Graphite) | ![Dark Graphite](https://raw.githubusercontent.com/bcdavasconcelos/Obsidian-Graphite/master/graphite.png) | 30 | | [bcdavasconcelos/Obsidian-Ayu](https://github.com/bcdavasconcelos/Obsidian-Ayu) | ![Ayu](https://raw.githubusercontent.com/bcdavasconcelos/Obsidian-Ayu/master/ayu2.png) | 31 | | [bcdavasconcelos/Obsidian-Ayu_Mirage](https://github.com/bcdavasconcelos/Obsidian-Ayu_Mirage) | ![Ayu Mirage](https://raw.githubusercontent.com/bcdavasconcelos/Obsidian-Ayu_Mirage/master/ayu1.png) | 32 | | [bcdavasconcelos/Obsidian-GDCT](https://github.com/bcdavasconcelos/Obsidian-GDCT) | ![GDCT](https://raw.githubusercontent.com/bcdavasconcelos/Obsidian-GDCT/master/gdct.png) | 33 | | [bcdavasconcelos/Obsidian-GDCT_Dark](https://github.com/bcdavasconcelos/Obsidian-GDCT_Dark) | ![GDCT Dark](https://raw.githubusercontent.com/bcdavasconcelos/Obsidian-GDCT_Dark/master/gdct.png) | 34 | | [dmytrodubinin/Obuntu-theme-for-Obsidian](https://github.com/dmytrodubinin/Obuntu-theme-for-Obsidian) | ![Obuntu](https://raw.githubusercontent.com/dmytrodubinin/Obuntu-theme-for-Obsidian/master/screenshot.jpg) | 35 | | [cannibalox/ono-sendai_obsdn](https://github.com/cannibalox/ono-sendai_obsdn) | ![Ono Sendai](https://raw.githubusercontent.com/cannibalox/ono-sendai_obsdn/master/ono-sendai_obsdn_00.png) | 36 | | [PKM-er/Blue-Topaz_Obsidian-css](https://github.com/PKM-er/Blue-Topaz_Obsidian-css) | ![Blue Topaz](https://raw.githubusercontent.com/PKM-er/Blue-Topaz_Obsidian-css/master/preview_Blue%20Topaz.png) | 37 | | [santiyounger/Reverie-Obsidian-Theme](https://github.com/santiyounger/Reverie-Obsidian-Theme) | ![Reverie](https://raw.githubusercontent.com/santiyounger/Reverie-Obsidian-Theme/master/img/reverie-2020-09-14-dark.png) | 38 | | [ryjjin/Obsidian-Dark-Graphite-Pie-theme](https://github.com/ryjjin/Obsidian-Dark-Graphite-Pie-theme) | ![Dark Graphite Pie](https://raw.githubusercontent.com/ryjjin/Obsidian-Dark-Graphite-Pie-theme/master/Dark%20Graphite%20Pie%20theme%200.9.4.png) | 39 | | [bennyxguo/Obsidian-Obsidianite](https://github.com/bennyxguo/Obsidian-Obsidianite) | ![Obsidianite](https://raw.githubusercontent.com/bennyxguo/Obsidian-Obsidianite/master/images/demo1.png) | 40 | | [ismailgunacar/gitsidian](https://github.com/ismailgunacar/gitsidian) | ![Gitsidian](https://raw.githubusercontent.com/ismailgunacar/gitsidian/master/showcase.png) | 41 | | [sparklau/comfort-smooth](https://github.com/sparklau/comfort-smooth) | ![Comfort Smooth](https://raw.githubusercontent.com/sparklau/comfort-smooth/master/comfort-smooth.png) | 42 | | [dxcore35/Suddha-theme](https://github.com/dxcore35/Suddha-theme) | ![Suddha](https://raw.githubusercontent.com/dxcore35/Suddha-theme/master/Images/Preview1.jpg) | 43 | | [radekkozak/discordian](https://github.com/radekkozak/discordian) | ![Discordian](https://raw.githubusercontent.com/radekkozak/discordian/master/media/screenshots/discordian-full-mode.png) | 44 | | [chad-bennett/al-dente-obsidian-theme](https://github.com/chad-bennett/al-dente-obsidian-theme) | ![Al Dente](https://raw.githubusercontent.com/chad-bennett/al-dente-obsidian-theme/master/aldente-screenshot.png) | 45 | | [santiyounger/Wasp-Obsidian-Theme](https://github.com/santiyounger/Wasp-Obsidian-Theme) | ![Wasp](https://raw.githubusercontent.com/santiyounger/Wasp-Obsidian-Theme/master/img/wasp-dark.png) | 46 | | [lukauskas/obsidian-highlighter-theme](https://github.com/lukauskas/obsidian-highlighter-theme) | ![Higlighter](https://raw.githubusercontent.com/lukauskas/obsidian-highlighter-theme/master/screenshots/screenshot-themes-panel.png) | 47 | | [SlRvb/Obsidian--ITS-Theme](https://github.com/SlRvb/Obsidian--ITS-Theme) | ![ITS Theme](https://raw.githubusercontent.com/SlRvb/Obsidian--ITS-Theme/master/ITS.png) | 48 | | [hipstersmoothie/hipstersmoothie-obsidian-theme](https://github.com/hipstersmoothie/hipstersmoothie-obsidian-theme) | ![Hipstersmoothie](https://raw.githubusercontent.com/hipstersmoothie/hipstersmoothie-obsidian-theme/master/hipstersmoothie-obsidian-theme.png) | 49 | | [auroral-ui/aurora-obsidian-md](https://github.com/auroral-ui/aurora-obsidian-md) | ![Aurora](https://raw.githubusercontent.com/auroral-ui/aurora-obsidian-md/master/screenshots/screenshot-1.png) | 50 | | [izumin5210/obsidian-iceberg](https://github.com/izumin5210/obsidian-iceberg) | ![Iceberg](https://raw.githubusercontent.com/izumin5210/obsidian-iceberg/master/screenshot.png) | 51 | | [chetachiezikeuzor/Yin-and-Yang-Theme](https://github.com/chetachiezikeuzor/Yin-and-Yang-Theme) | ![Yin and Yang](https://raw.githubusercontent.com/chetachiezikeuzor/Yin-and-Yang-Theme/master/assets/screenshot.png) | 52 | | [shaggyfeng/obsidian-Golden-Topaz-theme](https://github.com/shaggyfeng/obsidian-Golden-Topaz-theme) | ![Golden Topaz](https://raw.githubusercontent.com/shaggyfeng/obsidian-Golden-Topaz-theme/master/screenshot.png) | 53 | | [shaggyfeng/obsidian-Pink-topaz-theme](https://github.com/shaggyfeng/obsidian-Pink-topaz-theme) | ![Pink Topaz](https://raw.githubusercontent.com/shaggyfeng/obsidian-Pink-topaz-theme/master/screenshot.png) | 54 | | [sergey900553/obsidian_githublike_theme](https://github.com/sergey900553/obsidian_githublike_theme) | ![Dark Moss](https://raw.githubusercontent.com/sergey900553/obsidian_githublike_theme/master/screenshot.png) | 55 | | [Wittionary/mammoth-obsidian-theme](https://github.com/Wittionary/mammoth-obsidian-theme) | ![Mammoth](https://raw.githubusercontent.com/Wittionary/mammoth-obsidian-theme/master/screenshots/thumbnail.png) | 56 | | [luke-rmaki/rmaki-obsidian](https://github.com/luke-rmaki/rmaki-obsidian) | ![Rmaki](https://raw.githubusercontent.com/luke-rmaki/rmaki-obsidian/master/screenshot.png) | 57 | | [ThePharaohArt/Obsidian-CyberGlow](https://github.com/ThePharaohArt/Obsidian-CyberGlow) | ![Cyber Glow](https://raw.githubusercontent.com/ThePharaohArt/Obsidian-CyberGlow/master/Screenshot.png) | 58 | | [johackim/obsidian-darkyan](https://github.com/johackim/obsidian-darkyan) | ![Darkyan](https://raw.githubusercontent.com/johackim/obsidian-darkyan/master/screenshot.png) | 59 | | [0xGlitchbyte/obsidian_everforest](https://github.com/0xGlitchbyte/obsidian_everforest) | ![Everforest](https://raw.githubusercontent.com/0xGlitchbyte/obsidian_everforest/master/dark_v2.png) | 60 | | [vanadium23/obsidian-blackbird-theme](https://github.com/vanadium23/obsidian-blackbird-theme) | ![Blackbird](https://raw.githubusercontent.com/vanadium23/obsidian-blackbird-theme/master/images/example.png) | 61 | | [Chrismettal/Obsidian-Behave-dark](https://github.com/Chrismettal/Obsidian-Behave-dark) | ![Behave dark](https://raw.githubusercontent.com/Chrismettal/Obsidian-Behave-dark/master/Screenshot.png) | 62 | | [SMUsamaShah/Obsidian-Win98-Edition](https://github.com/SMUsamaShah/Obsidian-Win98-Edition) | ![Obsidian Windows 98 Edition](https://raw.githubusercontent.com/SMUsamaShah/Obsidian-Win98-Edition/master/screenshots/main.png) | 63 | | [dogwaddle/lizardmen-zettelkasten](https://github.com/dogwaddle/lizardmen-zettelkasten) | ![Lizardmen Zettelkasten](https://raw.githubusercontent.com/dogwaddle/lizardmen-zettelkasten/master/screenshot.png) | 64 | | [chrisgrieser/shimmering-focus](https://github.com/chrisgrieser/shimmering-focus) | ![Shimmering Focus](https://raw.githubusercontent.com/chrisgrieser/shimmering-focus/master/assets/promo-screenshot.webp) | 65 | | [lazercaveman/obsidian-firefly-theme](https://github.com/lazercaveman/obsidian-firefly-theme) | ![Firefly](https://raw.githubusercontent.com/lazercaveman/obsidian-firefly-theme/master/firefly-theme-screenshot.png) | 66 | | [zacharyc/purple-owl-theme](https://github.com/zacharyc/purple-owl-theme) | ![Purple Owl](https://raw.githubusercontent.com/zacharyc/purple-owl-theme/master/purple-owl-theme.png) | 67 | | [gracejoseph1236/obsidian-emerald](https://github.com/gracejoseph1236/obsidian-emerald) | ![Emerald](https://raw.githubusercontent.com/gracejoseph1236/obsidian-emerald/master/example.png) | 68 | | [tomzorz/Sodalite](https://github.com/tomzorz/Sodalite) | ![Sodalite](https://raw.githubusercontent.com/tomzorz/Sodalite/master/screenshot.png) | 69 | | [JoshKasap/Obsidian-Faded-Theme](https://github.com/JoshKasap/Obsidian-Faded-Theme) | ![Faded](https://raw.githubusercontent.com/JoshKasap/Obsidian-Faded-Theme/master/Faded.png) | 70 | | [jdanielmourao/obsidian-sanctum](https://github.com/jdanielmourao/obsidian-sanctum) | ![Sanctum](https://raw.githubusercontent.com/jdanielmourao/obsidian-sanctum/master/cover.png) | 71 | | [cassidoo/cardstock](https://github.com/cassidoo/cardstock) | ![Cardstock](https://raw.githubusercontent.com/cassidoo/cardstock/master/miniscreenshot.png) | 72 | | [Nilahn/pine_forest_berry](https://github.com/Nilahn/pine_forest_berry) | ![Pine Forest Berry](https://raw.githubusercontent.com/Nilahn/pine_forest_berry/master/Screenshot%20PFB%201.png) | 73 | | [mimishahzad/rose-pine-moon-obsidian](https://github.com/mimishahzad/rose-pine-moon-obsidian) | ![Rosé Pine Moon](https://raw.githubusercontent.com/mimishahzad/rose-pine-moon-obsidian/master/assets/template.png) | 74 | | [gracejoseph1236/obsidian-ruby](https://github.com/gracejoseph1236/obsidian-ruby) | ![Ruby](https://raw.githubusercontent.com/gracejoseph1236/obsidian-ruby/master/example.png) | 75 | | [damiankorcz/Prism-Theme](https://github.com/damiankorcz/Prism-Theme) | ![Prism](https://raw.githubusercontent.com/damiankorcz/Prism-Theme/master/assets/screenshots/Community%20Themes%20Screenshot.png) | 76 | | [gracejoseph1236/obsidian-carnelian](https://github.com/gracejoseph1236/obsidian-carnelian) | ![Carnelian](https://raw.githubusercontent.com/gracejoseph1236/obsidian-carnelian/master/example.png) | 77 | | [ebullient/obsidian-theme-ebullientworks](https://github.com/ebullient/obsidian-theme-ebullientworks) | ![Ebullientworks](https://raw.githubusercontent.com/ebullient/obsidian-theme-ebullientworks/master/images/ebullientworks-theme.jpg) | 78 | | [AndreasStandar/Obsidian-Theme---Purple-Aurora](https://github.com/AndreasStandar/Obsidian-Theme---Purple-Aurora) | ![Purple Aurora](https://raw.githubusercontent.com/AndreasStandar/Obsidian-Theme---Purple-Aurora/master/1%20Purple%20Aurora%20screenshot.png) | 79 | | [primary-theme/obsidian](https://github.com/primary-theme/obsidian) | ![Primary](https://raw.githubusercontent.com/primary-theme/obsidian/master/assets/obsidian-store-header.png) | 80 | | [zcysxy/Obsidian-Terminal-Theme](https://github.com/zcysxy/Obsidian-Terminal-Theme) | ![Terminal](https://raw.githubusercontent.com/zcysxy/Obsidian-Terminal-Theme/master/screenshots/terminal.png) | 81 | | [Emrie-Candera/Bubble-Space-Theme](https://github.com/Emrie-Candera/Bubble-Space-Theme) | ![Bubble Space](https://raw.githubusercontent.com/Emrie-Candera/Bubble-Space-Theme/master/screenshot.png) | 82 | | [colineckert/obsidian-things](https://github.com/colineckert/obsidian-things) | ![Things](https://raw.githubusercontent.com/colineckert/obsidian-things/master/assets/main-demo.png) | 83 | | [hungsu/typomagical-obsidian](https://github.com/hungsu/typomagical-obsidian) | ![Typomagical](https://raw.githubusercontent.com/hungsu/typomagical-obsidian/master/Typomagical-split.jpg) | 84 | | [curio-heart/obsidian-wyrd](https://github.com/curio-heart/obsidian-wyrd) | ![Wyrd](https://raw.githubusercontent.com/curio-heart/obsidian-wyrd/master/img/Wyrd.png) | 85 | | [crashmoney/obsidian-typewriter](https://github.com/crashmoney/obsidian-typewriter) | ![Typewriter](https://raw.githubusercontent.com/crashmoney/obsidian-typewriter/master/cover.jpg) | 86 | | [Thiews/Obsidian-Harmonic](https://github.com/Thiews/Obsidian-Harmonic) | ![Harmonic](https://raw.githubusercontent.com/Thiews/Obsidian-Harmonic/master/cover.png) | 87 | | [dracula/obsidian](https://github.com/dracula/obsidian) | ![Dracula Official](https://raw.githubusercontent.com/dracula/obsidian/master/screenshot.png) | 88 | | [bLaCkwEw/Dracula-Slim](https://github.com/bLaCkwEw/Dracula-Slim) | ![Dracula Slim](https://raw.githubusercontent.com/bLaCkwEw/Dracula-Slim/master/screenshot.png) | 89 | | [jaysan0/obsidian-sandstorm](https://github.com/jaysan0/obsidian-sandstorm) | ![Sandstorm](https://raw.githubusercontent.com/jaysan0/obsidian-sandstorm/master/screenshot.png) | 90 | | [nickmilo/LYT-Mode](https://github.com/nickmilo/LYT-Mode) | ![LYT Mode](https://raw.githubusercontent.com/nickmilo/LYT-Mode/master/lyt-mode-graphic-1.jpg) | 91 | | [operator-axel/obsdian_theme--Carpe_Noctem](https://github.com/operator-axel/obsdian_theme--Carpe_Noctem) | ![Carpe Noctem](https://raw.githubusercontent.com/operator-axel/obsdian_theme--Carpe_Noctem/master/screenshot.png) | 92 | | [catppuccin/obsidian](https://github.com/catppuccin/obsidian) | ![Catppuccin](https://raw.githubusercontent.com/catppuccin/obsidian/master/assets/screenshot.png) | 93 | | [ChopTV/Obsidian-Theme-That-Shall-Not-Be-Named](https://github.com/ChopTV/Obsidian-Theme-That-Shall-Not-Be-Named) | ![Theme-That-Shall-Not-Be-Named](https://raw.githubusercontent.com/ChopTV/Obsidian-Theme-That-Shall-Not-Be-Named/master/Theme-That-Shall-Not-Be-Named.png) | 94 | | [tingmelvin/willemstad-x](https://github.com/tingmelvin/willemstad-x) | ![Willemstad](https://raw.githubusercontent.com/tingmelvin/willemstad-x/master/img/Willemstad-X.png) | 95 | | [caro401/royal-velvet](https://github.com/caro401/royal-velvet) | ![Royal Velvet](https://raw.githubusercontent.com/caro401/royal-velvet/master/royal-velvet.png) | 96 | | [xRyul/ObsidianMD_Dracula_x_LYT](https://github.com/xRyul/ObsidianMD_Dracula_x_LYT) | ![Dracula + LYT](https://raw.githubusercontent.com/xRyul/ObsidianMD_Dracula_x_LYT/master/Overview.jpg) | 97 | | [hydescarf/Obsidian-Theme-Mado-11](https://github.com/hydescarf/Obsidian-Theme-Mado-11) | ![Mado 11](https://raw.githubusercontent.com/hydescarf/Obsidian-Theme-Mado-11/master/img/store-cover.png) | 98 | | [Everblush/Obsidian](https://github.com/Everblush/Obsidian) | ![Everblush](https://raw.githubusercontent.com/Everblush/Obsidian/master/preview.png) | 99 | | [kkYrusobad/AbsoluteGruv](https://github.com/kkYrusobad/AbsoluteGruv) | ![AbsoluteGruv](https://raw.githubusercontent.com/kkYrusobad/AbsoluteGruv/master/obsidian.png) | 100 | | [aitaDev/Violet-Evening-for-Obsidian](https://github.com/aitaDev/Violet-Evening-for-Obsidian) | ![Violet Evening](https://raw.githubusercontent.com/aitaDev/Violet-Evening-for-Obsidian/master/screenshot.png) | 101 | | [danyim/obsidian-zenburn](https://github.com/danyim/obsidian-zenburn) | ![Zenburn](https://raw.githubusercontent.com/danyim/obsidian-zenburn/master/screen.png) | 102 | | [roberts-code/obsidian-theme-modern-dark](https://github.com/roberts-code/obsidian-theme-modern-dark) | ![Modern Dark](https://raw.githubusercontent.com/roberts-code/obsidian-theme-modern-dark/master/screenshot.png) | 103 | | [KyleKlus/solitude-obsidian-theme](https://github.com/KyleKlus/solitude-obsidian-theme) | ![Solitude](https://raw.githubusercontent.com/KyleKlus/solitude-obsidian-theme/master/promo_screenshot.png) | 104 | | [mulfok/obsidian-viridian](https://github.com/mulfok/obsidian-viridian) | ![Viridian](https://raw.githubusercontent.com/mulfok/obsidian-viridian/master/cover.png) | 105 | | [sspaeti/obsidian_kanagawa](https://github.com/sspaeti/obsidian_kanagawa) | ![Kanagawa](https://raw.githubusercontent.com/sspaeti/obsidian_kanagawa/master/dark.png) | 106 | | [Carbonateb/obsidian-encore-theme](https://github.com/Carbonateb/obsidian-encore-theme) | ![Encore](https://raw.githubusercontent.com/Carbonateb/obsidian-encore-theme/master/images/promo-image.png) | 107 | | [hydescarf/Obsidian-Theme-Mado-Miniflow](https://github.com/hydescarf/Obsidian-Theme-Mado-Miniflow) | ![Mado Miniflow](https://raw.githubusercontent.com/hydescarf/Obsidian-Theme-Mado-Miniflow/master/img/store-cover.png) | 108 | | [ThisTheThe/MicroMike](https://github.com/ThisTheThe/MicroMike) | ![Micro Mike](https://raw.githubusercontent.com/ThisTheThe/MicroMike/master/screenshotThumb.png) | 109 | | [erykwalder/dayspring-theme](https://github.com/erykwalder/dayspring-theme) | ![Dayspring](https://raw.githubusercontent.com/erykwalder/dayspring-theme/master/screenshots/thumbnail.png) | 110 | | [zamsyt/obsidian-fusion](https://github.com/zamsyt/obsidian-fusion) | ![Fusion](https://raw.githubusercontent.com/zamsyt/obsidian-fusion/master/thumbnail.png) | 111 | | [7368697661/Ultra-Lobster](https://github.com/7368697661/Ultra-Lobster) | ![Ultra Lobster](https://raw.githubusercontent.com/7368697661/Ultra-Lobster/master/preview_thumb.png) | 112 | | [krios2146/obsidian-theme-github](https://github.com/krios2146/obsidian-theme-github) | ![GitHub Theme](https://raw.githubusercontent.com/krios2146/obsidian-theme-github/master/imgs/thumbnail.png) | 113 | | [marcoluzi/obsidian-synthwave](https://github.com/marcoluzi/obsidian-synthwave) | ![SynthWave](https://raw.githubusercontent.com/marcoluzi/obsidian-synthwave/master/screenshot.jpeg) | 114 | | [ltctceplrm/oldsidian-purple](https://github.com/ltctceplrm/oldsidian-purple) | ![Oldsidian Purple](https://raw.githubusercontent.com/ltctceplrm/oldsidian-purple/master/cover.png) | 115 | | [lucas-fern/obsidian-deeper-work-theme](https://github.com/lucas-fern/obsidian-deeper-work-theme) | ![deeper work](https://raw.githubusercontent.com/lucas-fern/obsidian-deeper-work-theme/master/thumbnail.png) | 116 | | [ashwinjadhav818/obsidian-aura](https://github.com/ashwinjadhav818/obsidian-aura) | ![Aura](https://raw.githubusercontent.com/ashwinjadhav818/obsidian-aura/master/assets/showcase-preview.png) | 117 | | [zamsyt/obsidian-ion](https://github.com/zamsyt/obsidian-ion) | ![ion](https://raw.githubusercontent.com/zamsyt/obsidian-ion/master/thumbnail.png) | 118 | | [efemkay/obsidian-listive-theme](https://github.com/efemkay/obsidian-listive-theme) | ![Listive](https://raw.githubusercontent.com/efemkay/obsidian-listive-theme/master/thumbnail.jpg) | 119 | | [dragonwocky/obsidian-material-ocean](https://github.com/dragonwocky/obsidian-material-ocean) | ![Material Ocean](https://raw.githubusercontent.com/dragonwocky/obsidian-material-ocean/master/thumbnail.png) | 120 | | [Satchelmouth/Obsidian-Theme-WYConsole](https://github.com/Satchelmouth/Obsidian-Theme-WYConsole) | ![WY Console](https://raw.githubusercontent.com/Satchelmouth/Obsidian-Theme-WYConsole/master/WYConsole_Store_Screenshot.png) | 121 | | [birneee/obsidian-adwaita-theme](https://github.com/birneee/obsidian-adwaita-theme) | ![Adwaita](https://raw.githubusercontent.com/birneee/obsidian-adwaita-theme/master/generated/theme-store-preview.png) | 122 | | [AmadeusWM/Obsidian-Apatheia](https://github.com/AmadeusWM/Obsidian-Apatheia) | ![Apatheia](https://raw.githubusercontent.com/AmadeusWM/Obsidian-Apatheia/master/promo_screenshot.png) | 123 | | [7368697661/Origami](https://github.com/7368697661/Origami) | ![Origami](https://raw.githubusercontent.com/7368697661/Origami/master/screen.png) | 124 | | [Akifyss/obsidian-border](https://github.com/Akifyss/obsidian-border) | ![Border](https://raw.githubusercontent.com/Akifyss/obsidian-border/master/cover.png) | 125 | | [ZekunC/Obsidian-Typora-Vue-Theme](https://github.com/ZekunC/Obsidian-Typora-Vue-Theme) | ![Typora-Vue](https://raw.githubusercontent.com/ZekunC/Obsidian-Typora-Vue-Theme/master/obsidian-typora-vue.png) | 126 | | [zalenza/Abecedarium-theme](https://github.com/zalenza/Abecedarium-theme) | ![Abecedarium](https://raw.githubusercontent.com/zalenza/Abecedarium-theme/master/abecedarium_dark.png) | 127 | | [Bluemoondragon07/obsidian-light-and-bright-theme](https://github.com/Bluemoondragon07/obsidian-light-and-bright-theme) | ![Light & Bright](https://raw.githubusercontent.com/Bluemoondragon07/obsidian-light-and-bright-theme/master/light-and-bright-cover.png) | 128 | | [Bluemoondragon07/Wikipedia-Theme](https://github.com/Bluemoondragon07/Wikipedia-Theme) | ![Wikipedia](https://raw.githubusercontent.com/Bluemoondragon07/Wikipedia-Theme/master/example.png) | 129 | | [AllJavi/material_gruvbox_obsidian](https://github.com/AllJavi/material_gruvbox_obsidian) | ![Material Gruvbox](https://raw.githubusercontent.com/AllJavi/material_gruvbox_obsidian/master/promo_screenshot.png) | 130 | | [hush-hush/obsidian_wombat](https://github.com/hush-hush/obsidian_wombat) | ![Wombat](https://raw.githubusercontent.com/hush-hush/obsidian_wombat/master/main_thumbnail.png) | 131 | | [JamesLemony/obsidian_vibrant](https://github.com/JamesLemony/obsidian_vibrant) | ![Vibrant](https://raw.githubusercontent.com/JamesLemony/obsidian_vibrant/master/images/demo1.png) | 132 | | [faroukx/Obsidian-shiba-inu-theme](https://github.com/faroukx/Obsidian-shiba-inu-theme) | ![Shiba Inu](https://raw.githubusercontent.com/faroukx/Obsidian-shiba-inu-theme/master/shibainubackgroundshowcase.png) | 133 | | [AnubisNekhet/AnuPpuccin](https://github.com/AnubisNekhet/AnuPpuccin) | ![AnuPpuccin](https://raw.githubusercontent.com/AnubisNekhet/AnuPpuccin/master/preview.png) | 134 | | [tazpellegrini/abyssalobsidian](https://github.com/tazpellegrini/abyssalobsidian) | ![Abyssal](https://raw.githubusercontent.com/tazpellegrini/abyssalobsidian/master/abyssal-thumbnail.png) | 135 | | [lnbgc/obsidian-jotter](https://github.com/lnbgc/obsidian-jotter) | ![Jotter](https://raw.githubusercontent.com/lnbgc/obsidian-jotter/master/jotter.png) | 136 | | [PipeItToDevNull/PLN](https://github.com/PipeItToDevNull/PLN) | ![PLN](https://raw.githubusercontent.com/PipeItToDevNull/PLN/master/screenshot.png) | 137 | | [clbn/dracula-gemini](https://github.com/clbn/dracula-gemini) | ![Dracula Gemini](https://raw.githubusercontent.com/clbn/dracula-gemini/master/images/cover-thumbnail.png) | 138 | | [ds-package/Dawn](https://github.com/ds-package/Dawn) | ![Dawn](https://raw.githubusercontent.com/ds-package/Dawn/master/assets/00-screenshot-small.png) | 139 | | [JorgEdmundo/cybertron-shifted](https://github.com/JorgEdmundo/cybertron-shifted) | ![Cybertron Shifted](https://raw.githubusercontent.com/JorgEdmundo/cybertron-shifted/master/CybertronShifted.png) | 140 | | [NicolasGHS/Rezin-theme](https://github.com/NicolasGHS/Rezin-theme) | ![Rezin](https://raw.githubusercontent.com/NicolasGHS/Rezin-theme/master/assets/image.png) | 141 | | [threethan/obsidian-material-flat-theme](https://github.com/threethan/obsidian-material-flat-theme) | ![Material Flat](https://raw.githubusercontent.com/threethan/obsidian-material-flat-theme/master/screenshot.png) | 142 | | [frank0713/nightingale-obsidian](https://github.com/frank0713/nightingale-obsidian) | ![Nightingale](https://raw.githubusercontent.com/frank0713/nightingale-obsidian/master/image/cover.png) | 143 | | [sergey900553/obsidian_dekurai_theme](https://github.com/sergey900553/obsidian_dekurai_theme) | ![Dekurai](https://raw.githubusercontent.com/sergey900553/obsidian_dekurai_theme/master/screenshot.png) | 144 | | [callumhackett/obsidian_polka_theme](https://github.com/callumhackett/obsidian_polka_theme) | ![Polka](https://raw.githubusercontent.com/callumhackett/obsidian_polka_theme/master/polka.png) | 145 | | [gbraad-obsidian/obsidian-tomorrow-night-bright-theme](https://github.com/gbraad-obsidian/obsidian-tomorrow-night-bright-theme) | ![Tomorrow Night Bright](https://raw.githubusercontent.com/gbraad-obsidian/obsidian-tomorrow-night-bright-theme/master/images/example.png) | 146 | | [mProjectsCode/obsidian-lemons-theme](https://github.com/mProjectsCode/obsidian-lemons-theme) | ![Lemons Theme](https://raw.githubusercontent.com/mProjectsCode/obsidian-lemons-theme/master/lemons-theme-picture-low-res.PNG) | 147 | | [subframe7536/obsidian-theme-maple](https://github.com/subframe7536/obsidian-theme-maple) | ![Maple](https://raw.githubusercontent.com/subframe7536/obsidian-theme-maple/master/img/screenshot.png) | 148 | | [diegoeis/obsidianotion](https://github.com/diegoeis/obsidianotion) | ![Obsidianotion](https://raw.githubusercontent.com/diegoeis/obsidianotion/master/cover.png) | 149 | | [Victologo/elegance-theme](https://github.com/Victologo/elegance-theme) | ![Elegance](https://raw.githubusercontent.com/Victologo/elegance-theme/master/assets/Miniatura%20-%20Elegance%20(tema%20para%20Obisidian).jpg) | 150 | | [tcmmichaelb139/obsidian-tokyonight](https://github.com/tcmmichaelb139/obsidian-tokyonight) | ![Tokyo Night](https://raw.githubusercontent.com/tcmmichaelb139/obsidian-tokyonight/master/dark.png) | 151 | | [mrowa44/obsidian-ia-writer](https://github.com/mrowa44/obsidian-ia-writer) | ![iA Writer](https://raw.githubusercontent.com/mrowa44/obsidian-ia-writer/master/promo_screenshot.png) | 152 | | [Bluemoondragon07/obsidian-notation-2](https://github.com/Bluemoondragon07/obsidian-notation-2) | ![Notation 2](https://raw.githubusercontent.com/Bluemoondragon07/obsidian-notation-2/master/cover-small.png) | 153 | | [Jopp-gh/Obsidian-Dune84](https://github.com/Jopp-gh/Obsidian-Dune84) | ![Dune](https://raw.githubusercontent.com/Jopp-gh/Obsidian-Dune84/master/Dune-Obsidian.jpg) | 154 | | [Satchelmouth/Obsidian-Theme-Sanguine](https://github.com/Satchelmouth/Obsidian-Theme-Sanguine) | ![Sanguine](https://raw.githubusercontent.com/Satchelmouth/Obsidian-Theme-Sanguine/master/Sanguine_Store_Screenshot.png) | 155 | | [FireIsGood/obsidian-everforest-enchanted](https://github.com/FireIsGood/obsidian-everforest-enchanted) | ![Everforest Enchanted](https://raw.githubusercontent.com/FireIsGood/obsidian-everforest-enchanted/master/promo_screenshot.png) | 156 | | [KeithLerner/ObsidianMDsQdthOne](https://github.com/KeithLerner/ObsidianMDsQdthOne) | ![sQdthOne](https://raw.githubusercontent.com/KeithLerner/ObsidianMDsQdthOne/master/GitCapture.png) | 157 | | [ScottKirvan/GitHubDHC](https://github.com/ScottKirvan/GitHubDHC) | ![GitHubDHC](https://raw.githubusercontent.com/ScottKirvan/GitHubDHC/master/imgs/thumbnail.png) | 158 | | [lukasbach/obsidian-proper-dark](https://github.com/lukasbach/obsidian-proper-dark) | ![Proper Dark](https://raw.githubusercontent.com/lukasbach/obsidian-proper-dark/master/thumb.png) | 159 | | [isax785/obsidian-sparkling-night](https://github.com/isax785/obsidian-sparkling-night) | ![Sparkling Night](https://raw.githubusercontent.com/isax785/obsidian-sparkling-night/master/img/sparkling_night.png) | 160 | | [Bluemoondragon07/Obsidian-Serenity](https://github.com/Bluemoondragon07/Obsidian-Serenity) | ![Serenity](https://raw.githubusercontent.com/Bluemoondragon07/Obsidian-Serenity/master/cover-small.png) | 161 | | [OlivierPS/Olivier-s-Theme](https://github.com/OlivierPS/Olivier-s-Theme) | ![Olivier’s Theme](https://raw.githubusercontent.com/OlivierPS/Olivier-s-Theme/master/main-screenshot.png) | 162 | | [G2Jose/synthwave-84-obsidian-theme](https://github.com/G2Jose/synthwave-84-obsidian-theme) | ![Synthwave '84](https://raw.githubusercontent.com/G2Jose/synthwave-84-obsidian-theme/master/screenshot-512x288.png) | 163 | | [whereiswhere/iB-Writer](https://github.com/whereiswhere/iB-Writer) | ![iB Writer](https://raw.githubusercontent.com/whereiswhere/iB-Writer/master/store-screenshot.png) | 164 | | [oqipoDev/buena-vista-obsidian](https://github.com/oqipoDev/buena-vista-obsidian) | ![Buena Vista](https://raw.githubusercontent.com/oqipoDev/buena-vista-obsidian/master/img/thumb.png) | 165 | | [Thiews/obsidian-simplicity](https://github.com/Thiews/obsidian-simplicity) | ![Simplicity](https://raw.githubusercontent.com/Thiews/obsidian-simplicity/master/cover.png) | 166 | | [drbap/magicuser-theme-for-obsidian](https://github.com/drbap/magicuser-theme-for-obsidian) | ![MagicUser](https://raw.githubusercontent.com/drbap/magicuser-theme-for-obsidian/master/screenshot.png) | 167 | | [PrettyBoyCosmo/ProtocolBlue](https://github.com/PrettyBoyCosmo/ProtocolBlue) | ![ProtocolBlue](https://raw.githubusercontent.com/PrettyBoyCosmo/ProtocolBlue/master/assets/image.png) | 168 | | [GixoXYZ/YueObsidian](https://github.com/GixoXYZ/YueObsidian) | ![Yue](https://raw.githubusercontent.com/GixoXYZ/YueObsidian/master/assets/main-demo.png) | 169 | | [abrahambahez/Brutalism](https://github.com/abrahambahez/Brutalism) | ![Brutalism](https://raw.githubusercontent.com/abrahambahez/Brutalism/master/brutalism_dark.png) | 170 | | [arozx/obsidian_tokyo-night-storm](https://github.com/arozx/obsidian_tokyo-night-storm) | ![Tokyo Night Storm](https://raw.githubusercontent.com/arozx/obsidian_tokyo-night-storm/master/tokyo-night-storm.png) | 171 | | [Nikolai2038/strict-obsidian-theme](https://github.com/Nikolai2038/strict-obsidian-theme) | ![Strict](https://raw.githubusercontent.com/Nikolai2038/strict-obsidian-theme/master/screenshot_edit_mode.png) | 172 | | [sq1000000/NeuBorder](https://github.com/sq1000000/NeuBorder) | ![NeuBorder](https://raw.githubusercontent.com/sq1000000/NeuBorder/master/img/cover.png) | 173 | | [Bluemoondragon07/Obsidian-Bolt](https://github.com/Bluemoondragon07/Obsidian-Bolt) | ![Bolt](https://raw.githubusercontent.com/Bluemoondragon07/Obsidian-Bolt/master/cover.png) | 174 | | [Bluemoondragon07/Obsidian-Origin](https://github.com/Bluemoondragon07/Obsidian-Origin) | ![Origin](https://raw.githubusercontent.com/Bluemoondragon07/Obsidian-Origin/master/origin.png) | 175 | | [schrunchee/obsidian-covert-theme](https://github.com/schrunchee/obsidian-covert-theme) | ![Covert](https://raw.githubusercontent.com/schrunchee/obsidian-covert-theme/master/obsidian_covert_theme_sm3.jpg) | 176 | | [saket61195/Dracula_obsidian_theme](https://github.com/saket61195/Dracula_obsidian_theme) | ![Dracula Plus](https://raw.githubusercontent.com/saket61195/Dracula_obsidian_theme/master/demo1.png) | 177 | | [SalemElatar/salem-obsidian-theme](https://github.com/SalemElatar/salem-obsidian-theme) | ![SALEM](https://raw.githubusercontent.com/SalemElatar/salem-obsidian-theme/master/screenshot.png) | 178 | | [zfmohammed/obsidian-feather](https://github.com/zfmohammed/obsidian-feather) | ![Feather](https://raw.githubusercontent.com/zfmohammed/obsidian-feather/master/assets/Screenshot.png) | 179 | | [Ooopz/obsidianmd-theme-comfort-dark](https://github.com/Ooopz/obsidianmd-theme-comfort-dark) | ![Comfort Dark](https://raw.githubusercontent.com/Ooopz/obsidianmd-theme-comfort-dark/master/screenshot.png) | 180 | | [diegoeis/simple-obsidian](https://github.com/diegoeis/simple-obsidian) | ![Simple](https://raw.githubusercontent.com/diegoeis/simple-obsidian/master/cover.png) | 181 | | [Carrie999/comfort](https://github.com/Carrie999/comfort) | ![Comfort](https://raw.githubusercontent.com/Carrie999/comfort/master/screenshot.png) | 182 | | [davidjroos/obsidian-notswift](https://github.com/davidjroos/obsidian-notswift) | ![NotSwift](https://raw.githubusercontent.com/davidjroos/obsidian-notswift/master/screenie.png) | 183 | | [x0aa7i/obsidian-neo](https://github.com/x0aa7i/obsidian-neo) | ![Neo](https://raw.githubusercontent.com/x0aa7i/obsidian-neo/master/cover.png) | 184 | | [SakuraIsayeki/vanilla-amoled-theme](https://github.com/SakuraIsayeki/vanilla-amoled-theme) | ![Vanilla AMOLED](https://raw.githubusercontent.com/SakuraIsayeki/vanilla-amoled-theme/master/sample-screenshot-sm.png) | 185 | | [Fro-Q/Qlean](https://github.com/Fro-Q/Qlean) | ![Qlean](https://raw.githubusercontent.com/Fro-Q/Qlean/master/assets/Qlean.png) | 186 | | [possibly-not/obsidian-aura-theme](https://github.com/possibly-not/obsidian-aura-theme) | ![Aura Dark](https://raw.githubusercontent.com/possibly-not/obsidian-aura-theme/master/img/aura_dark_diagonal.png) | 187 | | [Warrobot10/Serika-for-obsidian](https://github.com/Warrobot10/Serika-for-obsidian) | ![Serika](https://raw.githubusercontent.com/Warrobot10/Serika-for-obsidian/master/Serika.png) | 188 | | [1612elphi/autotape-theme](https://github.com/1612elphi/autotape-theme) | ![Autotape](https://raw.githubusercontent.com/1612elphi/autotape-theme/master/Screen.png) | 189 | | [benf2004/Obsidian-LaTeX-Theme](https://github.com/benf2004/Obsidian-LaTeX-Theme) | ![LaTeX](https://raw.githubusercontent.com/benf2004/Obsidian-LaTeX-Theme/master/screenshots/preview.png) | 190 | | [dbarenholz/halcyon-obsidian](https://github.com/dbarenholz/halcyon-obsidian) | ![halcyon](https://raw.githubusercontent.com/dbarenholz/halcyon-obsidian/master/img/halcyon-banner-small.png) | 191 | | [GuiMar10/monochroYou](https://github.com/GuiMar10/monochroYou) | ![monochroYOU](https://raw.githubusercontent.com/GuiMar10/monochroYou/master/screenshot.png) | 192 | | [kepano/flexoki-obsidian](https://github.com/kepano/flexoki-obsidian) | ![Flexoki](https://raw.githubusercontent.com/kepano/flexoki-obsidian/master/cover-small.png) | 193 | | [prradox/green-nightmare](https://github.com/prradox/green-nightmare) | ![Green Nightmare](https://raw.githubusercontent.com/prradox/green-nightmare/master/screenshot.png) | 194 | | [GeorgeAzma/Transient](https://github.com/GeorgeAzma/Transient) | ![Transient](https://raw.githubusercontent.com/GeorgeAzma/Transient/master/theme.png) | 195 | | [isaacfreeman/kakano-obsidian-theme](https://github.com/isaacfreeman/kakano-obsidian-theme) | ![Kakano](https://raw.githubusercontent.com/isaacfreeman/kakano-obsidian-theme/master/screenshot.png) | 196 | | [tu2-atmanand/EvilRed-ObsidianTheme](https://github.com/tu2-atmanand/EvilRed-ObsidianTheme) | ![EvilRed](https://raw.githubusercontent.com/tu2-atmanand/EvilRed-ObsidianTheme/master/Thumbnail.png) | 197 | | [EddieTheEd/Prussian-Blue](https://github.com/EddieTheEd/Prussian-Blue) | ![Prussian Blue](https://raw.githubusercontent.com/EddieTheEd/Prussian-Blue/master/assets/thumbnail.png) | 198 | | [nazarioricardo/zario-obsidian](https://github.com/nazarioricardo/zario-obsidian) | ![Zario](https://raw.githubusercontent.com/nazarioricardo/zario-obsidian/master/screenshot.png) | 199 | | [behrouze/obsidian-theme](https://github.com/behrouze/obsidian-theme) | ![Perso](https://raw.githubusercontent.com/behrouze/obsidian-theme/master/screenshots/theme-perso-obsidian.png) | 200 | | [nhrrs/heboric-obsidian](https://github.com/nhrrs/heboric-obsidian) | ![Heboric](https://raw.githubusercontent.com/nhrrs/heboric-obsidian/master/screenshots/Heboric-screenshot-sm2.png) | 201 | | [zaheralmajed/vicious-theme-obsidian](https://github.com/zaheralmajed/vicious-theme-obsidian) | ![Vicious](https://raw.githubusercontent.com/zaheralmajed/vicious-theme-obsidian/master/screenshot.png) | 202 | | [MateusHenriquegringo/spring-theme-obsidian](https://github.com/MateusHenriquegringo/spring-theme-obsidian) | ![Spring](https://raw.githubusercontent.com/MateusHenriquegringo/spring-theme-obsidian/master/SPRING.png) | 203 | | [Bluemoondragon07/Obsidian-Celestial-Night-Theme](https://github.com/Bluemoondragon07/Obsidian-Celestial-Night-Theme) | ![Celestial Night](https://raw.githubusercontent.com/Bluemoondragon07/Obsidian-Celestial-Night-Theme/master/assets/low-res.png) | 204 | | [sspaeti/obsidian_rose_pine](https://github.com/sspaeti/obsidian_rose_pine) | ![Rosé Pine](https://raw.githubusercontent.com/sspaeti/obsidian_rose_pine/master/dark.jpg) | 205 | | [vhbelvadi/obsidian-carbon](https://github.com/vhbelvadi/obsidian-carbon) | ![Carbon](https://raw.githubusercontent.com/vhbelvadi/obsidian-carbon/master/obsidian-screenshot-small.png) | 206 | | [RyzenFromFire/obsidian-phoenix](https://github.com/RyzenFromFire/obsidian-phoenix) | ![Phoenix](https://raw.githubusercontent.com/RyzenFromFire/obsidian-phoenix/master/thumbnail.png) | 207 | | [oqipoDev/garden-gnome-obsidian](https://github.com/oqipoDev/garden-gnome-obsidian) | ![Garden Gnome (Adwaita, GTK)](https://raw.githubusercontent.com/oqipoDev/garden-gnome-obsidian/master/img/thumb.png) | 208 | | [bitSchleuder/obsidian-monokai-theme](https://github.com/bitSchleuder/obsidian-monokai-theme) | ![Monokai](https://raw.githubusercontent.com/bitSchleuder/obsidian-monokai-theme/master/assets/monokai-obsidian-theme-thumbnail.png) | 209 | | [ethereontheme/obsidian](https://github.com/ethereontheme/obsidian) | ![Ethereon](https://raw.githubusercontent.com/ethereontheme/obsidian/master/screenshots/dark.png) | 210 | | [deudz/obsidian-tomorrow-theme](https://github.com/deudz/obsidian-tomorrow-theme) | ![Tomorrow](https://raw.githubusercontent.com/deudz/obsidian-tomorrow-theme/master/res/thumb.png) | 211 | | [markmacode/obsidian-nightfox](https://github.com/markmacode/obsidian-nightfox) | ![Nightfox](https://raw.githubusercontent.com/markmacode/obsidian-nightfox/master/thumbnail.png) | 212 | | [mmartamg/novadust-obsidian](https://github.com/mmartamg/novadust-obsidian) | ![Novadust](https://raw.githubusercontent.com/mmartamg/novadust-obsidian/master/novadust-img.png) | 213 | | [lychileng/Obsidian-Theme-Pure](https://github.com/lychileng/Obsidian-Theme-Pure) | ![Pure](https://raw.githubusercontent.com/lychileng/Obsidian-Theme-Pure/master/screenshots/cover.png) | 214 | | [rivea0/obsidian-prime](https://github.com/rivea0/obsidian-prime) | ![Prime](https://raw.githubusercontent.com/rivea0/obsidian-prime/master/screenshot.png) | 215 | | [xRyul/obsidian-arcane-theme](https://github.com/xRyul/obsidian-arcane-theme) | ![Arcane](https://raw.githubusercontent.com/xRyul/obsidian-arcane-theme/master/Arcane_sample_01.jpg) | 216 | | [RaveSplash/obsidian-misty-mauve](https://github.com/RaveSplash/obsidian-misty-mauve) | ![MistyMauve](https://raw.githubusercontent.com/RaveSplash/obsidian-misty-mauve/master/dark.jpg) | 217 | | [KStew1017/obsidian-sea-glass-theme](https://github.com/KStew1017/obsidian-sea-glass-theme) | ![Sea Glass](https://raw.githubusercontent.com/KStew1017/obsidian-sea-glass-theme/master/sea-glass-preview.png) | 218 | | [DMeurer/improved-potato](https://github.com/DMeurer/improved-potato) | ![Improved Potato](https://raw.githubusercontent.com/DMeurer/improved-potato/master/images/image2.png) | 219 | | [slavafyi/obsidian-neovim](https://github.com/slavafyi/obsidian-neovim) | ![Neovim](https://raw.githubusercontent.com/slavafyi/obsidian-neovim/master/screenshot.png) | 220 | | [isax785/obsidian-sparkling-day](https://github.com/isax785/obsidian-sparkling-day) | ![Sparkling Day](https://raw.githubusercontent.com/isax785/obsidian-sparkling-day/master/img/sparkling_day_small.png) | 221 | | [ZeChArtiahSaher/obsidian-mono-black](https://github.com/ZeChArtiahSaher/obsidian-mono-black) | ![mono black (monochrome, charcoal)](https://raw.githubusercontent.com/ZeChArtiahSaher/obsidian-mono-black/master/img/screen-1.png) | 222 | | [tomkaygames/Tom-s-Theme](https://github.com/tomkaygames/Tom-s-Theme) | ![Tom's Theme](https://raw.githubusercontent.com/tomkaygames/Tom-s-Theme/master/screenshot.png) | 223 | | [isax785/obsidian-soloing](https://github.com/isax785/obsidian-soloing) | ![Soloing](https://raw.githubusercontent.com/isax785/obsidian-soloing/master/img/soloing_small.png) | 224 | | [contrapasso3/Reshi](https://github.com/contrapasso3/Reshi) | ![Reshi](https://raw.githubusercontent.com/contrapasso3/Reshi/master/Reshi%20Preview.png) | 225 | | [mProjectsCode/obsidian-focus-theme](https://github.com/mProjectsCode/obsidian-focus-theme) | ![Focus](https://raw.githubusercontent.com/mProjectsCode/obsidian-focus-theme/master/FocusThemeImage.png) | 226 | | [natowb/obsidian-nordic](https://github.com/natowb/obsidian-nordic) | ![Nordic](https://raw.githubusercontent.com/natowb/obsidian-nordic/master/obsidian-nordic.png) | 227 | | [vladstudio/tiniri-obsidian](https://github.com/vladstudio/tiniri-obsidian) | ![Tiniri](https://raw.githubusercontent.com/vladstudio/tiniri-obsidian/master/screenshot.png) | 228 | | [Indyandie/kurokula-obsidian-theme](https://github.com/Indyandie/kurokula-obsidian-theme) | ![Kurokula](https://raw.githubusercontent.com/Indyandie/kurokula-obsidian-theme/master/dark.png) | 229 | | [clearlysid/apex](https://github.com/clearlysid/apex) | ![Apex](https://raw.githubusercontent.com/clearlysid/apex/master/preview.png) | 230 | | [yoGhastly/poimandres-obsidian](https://github.com/yoGhastly/poimandres-obsidian) | ![Poimandres](https://raw.githubusercontent.com/yoGhastly/poimandres-obsidian/master/dark.png) | 231 | | [eldritch-theme/obsidian](https://github.com/eldritch-theme/obsidian) | ![Eldritch](https://raw.githubusercontent.com/eldritch-theme/obsidian/master/eldritch.png) | 232 | | [AwesomeDog/obsidian-soothe](https://github.com/AwesomeDog/obsidian-soothe) | ![Soothe](https://raw.githubusercontent.com/AwesomeDog/obsidian-soothe/master/preview.png) | 233 | | [eliz-abeth/sandover](https://github.com/eliz-abeth/sandover) | ![Sandover](https://raw.githubusercontent.com/eliz-abeth/sandover/master//images/sandover-plain.png) | 234 | | [Ch0live/dunite](https://github.com/Ch0live/dunite) | ![Dunite](https://raw.githubusercontent.com/Ch0live/dunite/master/dunite-icon.png) | 235 | | [loveminimal/obsidian-theme-virgo](https://github.com/loveminimal/obsidian-theme-virgo) | ![Virgo](https://raw.githubusercontent.com/loveminimal/obsidian-theme-virgo/master/assets/screenshot.png) | 236 | | [jbisits/penumbra-obsidian-theme](https://github.com/jbisits/penumbra-obsidian-theme) | ![Penumbra](https://raw.githubusercontent.com/jbisits/penumbra-obsidian-theme/master/screenshot_light.png) | 237 | | [humandecoded/Trace-Labs-Obsidian-Theme](https://github.com/humandecoded/Trace-Labs-Obsidian-Theme) | ![Trace Labs](https://raw.githubusercontent.com/humandecoded/Trace-Labs-Obsidian-Theme/master/screenshot.png) | 238 | | [phchang/W95](https://github.com/phchang/W95) | ![W95](https://raw.githubusercontent.com/phchang/W95/master/w95.png) | 239 | | [antoKeinanen/obsidian-sanctum-reborn](https://github.com/antoKeinanen/obsidian-sanctum-reborn) | ![Sanctum reborn](https://raw.githubusercontent.com/antoKeinanen/obsidian-sanctum-reborn/master/cover.png) | 240 | | [SandmansDreams/Spectrum-Blue](https://github.com/SandmansDreams/Spectrum-Blue) | ![Spectrum Blue](https://raw.githubusercontent.com/SandmansDreams/Spectrum-Blue/master/SpectrumBluePreview.png) | 241 | | [dpavaoman/cobalt-peacock-obmd](https://github.com/dpavaoman/cobalt-peacock-obmd) | ![Cobalt Peacock](https://raw.githubusercontent.com/dpavaoman/cobalt-peacock-obmd/master/screenshot.png) | 242 | | [lorens-osman-dev/Lorens-Obsidian-Theme](https://github.com/lorens-osman-dev/Lorens-Obsidian-Theme) | ![Lorens](https://raw.githubusercontent.com/lorens-osman-dev/Lorens-Obsidian-Theme/master/cover.png) | 243 | | [NoahBoos/obsidian-rift](https://github.com/NoahBoos/obsidian-rift) | ![Rift](https://raw.githubusercontent.com/NoahBoos/obsidian-rift/master/showcase-temporaire.png) | 244 | | [BlossomTheme/Obsidian](https://github.com/BlossomTheme/Obsidian) | ![Blossom](https://raw.githubusercontent.com/BlossomTheme/Obsidian/master/screenshot01.png) | 245 | | [bhappen/obsidian-space](https://github.com/bhappen/obsidian-space) | ![Space](https://raw.githubusercontent.com/bhappen/obsidian-space/master/obsidian-space.png) | 246 | | [grjsmith/Neon-Synthwave](https://github.com/grjsmith/Neon-Synthwave) | ![Neon Synthwave](https://raw.githubusercontent.com/grjsmith/Neon-Synthwave/master/screenshot.jpg) | 247 | | [CyanVoxel/vauxhall-obsidian](https://github.com/CyanVoxel/vauxhall-obsidian) | ![Vauxhall](https://raw.githubusercontent.com/CyanVoxel/vauxhall-obsidian/master/cover.png) | 248 | | [xainapse/Allium](https://github.com/xainapse/Allium) | ![Allium](https://raw.githubusercontent.com/xainapse/Allium/master/AlliumScreenshot.png) | 249 | | [Elhary/obsidian-Pale](https://github.com/Elhary/obsidian-Pale) | ![Pale - 淡](https://raw.githubusercontent.com/Elhary/obsidian-Pale/master/screenshot.png) | 250 | | [anareaty/creme-brulee-obsidian-theme](https://github.com/anareaty/creme-brulee-obsidian-theme) | ![Creme brulee](https://raw.githubusercontent.com/anareaty/creme-brulee-obsidian-theme/master/screenshot.png) | 251 | | [rodydavis/obsidian-dynamic-color](https://github.com/rodydavis/obsidian-dynamic-color) | ![Dynamic Color](https://raw.githubusercontent.com/rodydavis/obsidian-dynamic-color/master/screenshots/light-purple.png) | 252 | | [scottgriv/Dark-Castle-Obsidian](https://github.com/scottgriv/Dark-Castle-Obsidian) | ![Dark Castle](https://raw.githubusercontent.com/scottgriv/Dark-Castle-Obsidian/master/screenshot-small.png) | 253 | | [sr-campelo/retronotes](https://github.com/sr-campelo/retronotes) | ![RetroNotes](https://raw.githubusercontent.com/sr-campelo/retronotes/master/cover.jpg) | 254 | | [BossElijah/bossidian](https://github.com/BossElijah/bossidian) | ![Bossidian](https://raw.githubusercontent.com/BossElijah/bossidian/master/images/image-1-small.png) | 255 | | [Quinta0/Aurora-Twilight](https://github.com/Quinta0/Aurora-Twilight) | ![Aurora-Twilight](https://raw.githubusercontent.com/Quinta0/Aurora-Twilight/master/image-small.png) | 256 | | [Quinta0/Evergreen-Shadow](https://github.com/Quinta0/Evergreen-Shadow) | ![Evergreen-Shadow](https://raw.githubusercontent.com/Quinta0/Evergreen-Shadow/master/Evergreen-Shadow-small.png) | 257 | | [Quinta0/Velvet-Moon](https://github.com/Quinta0/Velvet-Moon) | ![Velvet-Moon](https://raw.githubusercontent.com/Quinta0/Velvet-Moon/master/Velvet-Moon-small.png) | 258 | | [Quinta0/Midnight-Fjord](https://github.com/Quinta0/Midnight-Fjord) | ![Midnight-Fjord](https://raw.githubusercontent.com/Quinta0/Midnight-Fjord/master/Midnight-Fjord-small.png) | 259 | | [Quinta0/Mint-Breeze](https://github.com/Quinta0/Mint-Breeze) | ![Mint-Breeze](https://raw.githubusercontent.com/Quinta0/Mint-Breeze/master/Mint-Breeze-small.png) | 260 | | [Quinta0/Lavender-Mist](https://github.com/Quinta0/Lavender-Mist) | ![Lavender-Mist](https://raw.githubusercontent.com/Quinta0/Lavender-Mist/master/Lavender-Mist-small.png) | 261 | | [Quinta0/Northern-Sky](https://github.com/Quinta0/Northern-Sky) | ![Northern-Sky](https://raw.githubusercontent.com/Quinta0/Northern-Sky/master/Northern-Sky-small.png) | 262 | | [GustavoSZ124/Obsidian-Theme-Seamless-View](https://github.com/GustavoSZ124/Obsidian-Theme-Seamless-View) | ![Seamless View](https://raw.githubusercontent.com/GustavoSZ124/Obsidian-Theme-Seamless-View/master/assets/Seamless%20View.png) | 263 | | [WinnerWind/gummy-revived](https://github.com/WinnerWind/gummy-revived) | ![Gummy-Revived](https://raw.githubusercontent.com/WinnerWind/gummy-revived/master/screenshot.png) | 264 | | [solm0/Agate](https://github.com/solm0/Agate) | ![Agate](https://raw.githubusercontent.com/solm0/Agate/master/agate_screenshot.png) | 265 | | [GnRlLeclerc/Vanilla-Theme-Palettes](https://github.com/GnRlLeclerc/Vanilla-Theme-Palettes) | ![Vanilla Palettes](https://raw.githubusercontent.com/GnRlLeclerc/Vanilla-Theme-Palettes/master/thumbnail.png) | 266 | | [chenbihao/obsidian-theme-dark-clarity](https://github.com/chenbihao/obsidian-theme-dark-clarity) | ![Dark Clarity](https://raw.githubusercontent.com/chenbihao/obsidian-theme-dark-clarity/master/screenshot.png) | 267 | | [exloseur3d/nier-theme](https://github.com/exloseur3d/nier-theme) | ![Nier](https://raw.githubusercontent.com/exloseur3d/nier-theme/master/preview_Nier_theme.png) | 268 | | [miz-i/Obsidian-theme-DarkEmber](https://github.com/miz-i/Obsidian-theme-DarkEmber) | ![DarkEmber](https://raw.githubusercontent.com/miz-i/Obsidian-theme-DarkEmber/master/images/screenshot.png) | 269 | | [Lina674/Pxld-Obsidian-Theme](https://github.com/Lina674/Pxld-Obsidian-Theme) | ![Pxld](https://raw.githubusercontent.com/Lina674/Pxld-Obsidian-Theme/master/merged_diagonal_resized.png) | 270 | | [Quinta0/chiaroscuroflow](https://github.com/Quinta0/chiaroscuroflow) | ![chiaroscuroflow](https://raw.githubusercontent.com/Quinta0/chiaroscuroflow/master/cover.png) | 271 | | [HasanTheSyrian/Muted-Blue-Obsidian](https://github.com/HasanTheSyrian/Muted-Blue-Obsidian) | ![Muted-Blue](https://raw.githubusercontent.com/HasanTheSyrian/Muted-Blue-Obsidian/master/preview.png) | 272 | | [carols12352/Oreo-theme](https://github.com/carols12352/Oreo-theme) | ![Oreo](https://raw.githubusercontent.com/carols12352/Oreo-theme/master/images/thumbnail.png) | 273 | | [Spekulucius/obsidian-brainhack](https://github.com/Spekulucius/obsidian-brainhack) | ![Brainhack](https://raw.githubusercontent.com/Spekulucius/obsidian-brainhack/master/preview.png) | 274 | | [buluw/nobb-obsidian](https://github.com/buluw/nobb-obsidian) | ![nobb](https://raw.githubusercontent.com/buluw/nobb-obsidian/master/nobb-obtheme.jpg) | 275 | | [Sskki-exe/vanilla-amoled-theme-color](https://github.com/Sskki-exe/vanilla-amoled-theme-color) | ![Vanilla AMOLED Color](https://raw.githubusercontent.com/Sskki-exe/vanilla-amoled-theme-color/master/sample-screenshot-sm.png) | 276 | | [ricedev10/Abate-theme](https://github.com/ricedev10/Abate-theme) | ![Abate](https://raw.githubusercontent.com/ricedev10/Abate-theme/master/ScreenshotPreview.png) | 277 | | [Elevict/Shade-Sanctuary](https://github.com/Elevict/Shade-Sanctuary) | ![Shade Sanctuary](https://raw.githubusercontent.com/Elevict/Shade-Sanctuary/master/cover.png) | 278 | | [Seniblue/Underwater](https://github.com/Seniblue/Underwater) | ![Underwater](https://raw.githubusercontent.com/Seniblue/Underwater/master/uw.png) | 279 | | [c-sooyoung/kiwi-mono-obsidian-theme](https://github.com/c-sooyoung/kiwi-mono-obsidian-theme) | ![Kiwi Mono](https://raw.githubusercontent.com/c-sooyoung/kiwi-mono-obsidian-theme/master/thumbnail.png) | 280 | | [danielkhmara/obsidian-lumines](https://github.com/danielkhmara/obsidian-lumines) | ![Lumines](https://raw.githubusercontent.com/danielkhmara/obsidian-lumines/master/obsidian-lumines.png) | 281 | | [Erallie/colored-candy](https://github.com/Erallie/colored-candy) | ![Colored Candy](https://raw.githubusercontent.com/Erallie/colored-candy/master/colored-candy-thumbnail.png) | 282 | | [Spekulucius/obsidian-adrenaline](https://github.com/Spekulucius/obsidian-adrenaline) | ![Adrenaline](https://raw.githubusercontent.com/Spekulucius/obsidian-adrenaline/master/adrenaline_thumbnail.png) | 283 | | [omsandippatil/OISTNB](https://github.com/omsandippatil/OISTNB) | ![OISTNB](https://raw.githubusercontent.com/omsandippatil/OISTNB/master/OISTNB.png) | 284 | | [b3h3m0th/black-obsidian-theme](https://github.com/b3h3m0th/black-obsidian-theme) | ![Black](https://raw.githubusercontent.com/b3h3m0th/black-obsidian-theme/master/screenshot_512x275.png) | 285 | | [FaisalTamanoJr/Refined-Default](https://github.com/FaisalTamanoJr/Refined-Default) | ![Refined Default](https://raw.githubusercontent.com/FaisalTamanoJr/Refined-Default/master/banner.png) | 286 | | [tu2-atmanand/RoseRed-ObsidianTheme](https://github.com/tu2-atmanand/RoseRed-ObsidianTheme) | ![Rose Red](https://raw.githubusercontent.com/tu2-atmanand/RoseRed-ObsidianTheme/master/Thumbnail.png) | 287 | | [Elhary/Obsidian-Minimal-Edge](https://github.com/Elhary/Obsidian-Minimal-Edge) | ![Minimal Edge](https://raw.githubusercontent.com/Elhary/Obsidian-Minimal-Edge/master/minimal-edge.png) | 288 | | [darthdemono/AMOLED-Serenity](https://github.com/darthdemono/AMOLED-Serenity) | ![AMOLED Serenity](https://raw.githubusercontent.com/darthdemono/AMOLED-Serenity/master/AMOLED-Serenity-sm.png) | 289 | | [golam71/obsidian-hackthebox](https://github.com/golam71/obsidian-hackthebox) | ![Hackthebox](https://raw.githubusercontent.com/golam71/obsidian-hackthebox/master/dark.png) | 290 | | [Oczko24/Obsidian-transparent](https://github.com/Oczko24/Obsidian-transparent) | ![Transparent](https://raw.githubusercontent.com/Oczko24/Obsidian-transparent/master/cover.png) | 291 | | [LeslyeCream/Lagom-Obsidian-Theme](https://github.com/LeslyeCream/Lagom-Obsidian-Theme) | ![Lagom](https://raw.githubusercontent.com/LeslyeCream/Lagom-Obsidian-Theme/master/IMG_20241009_134537.jpg) | 292 | | [LorenzoPegorari/SimplyColorful](https://github.com/LorenzoPegorari/SimplyColorful) | ![Simply Colorful](https://raw.githubusercontent.com/LorenzoPegorari/SimplyColorful/master/preview.png) | 293 | | [Sunhaloo/OneNice](https://github.com/Sunhaloo/OneNice) | ![OneNice](https://raw.githubusercontent.com/Sunhaloo/OneNice/master/OneNice.png) | 294 | | [ElsaTam/obsidian-fancy-a-story](https://github.com/ElsaTam/obsidian-fancy-a-story) | ![Fancy-a-Story](https://raw.githubusercontent.com/ElsaTam/obsidian-fancy-a-story/master/overview-mini.png) | 295 | | [ofalvai/flexoki-warm](https://github.com/ofalvai/flexoki-warm) | ![Flexoki Warm](https://raw.githubusercontent.com/ofalvai/flexoki-warm/master/screenshots/cover-small.png) | 296 | | [xero/evangelion.obsidian](https://github.com/xero/evangelion.obsidian) | ![evangelion](https://raw.githubusercontent.com/xero/evangelion.obsidian/master/preview.png) | 297 | | [juanchiparra/obsidian-borealis](https://github.com/juanchiparra/obsidian-borealis) | ![Borealis](https://raw.githubusercontent.com/juanchiparra/obsidian-borealis/master/docs/dark-cover.png) | 298 | | [DKLiberty/Red-Shadow](https://github.com/DKLiberty/Red-Shadow) | ![Red-Shadow](https://raw.githubusercontent.com/DKLiberty/Red-Shadow/master/Resources/Screenshot.png) | 299 | | [artorias305/obsidian-shadeflow](https://github.com/artorias305/obsidian-shadeflow) | ![Shadeflow](https://raw.githubusercontent.com/artorias305/obsidian-shadeflow/master/dark.png) | 300 | | [afrangi/Obsidian-Theme-Orange](https://github.com/afrangi/Obsidian-Theme-Orange) | ![Orange](https://raw.githubusercontent.com/afrangi/Obsidian-Theme-Orange/master/screenshot.png) | 301 | | [incantatem2/Obsidian-winter-spices](https://github.com/incantatem2/Obsidian-winter-spices) | ![Winter Spices](https://raw.githubusercontent.com/incantatem2/Obsidian-winter-spices/master/images/winterspices-thumbnail.jpg) | 302 | | [pinei/obsidian-consolas-theme](https://github.com/pinei/obsidian-consolas-theme) | ![Consolas](https://raw.githubusercontent.com/pinei/obsidian-consolas-theme/master/screenshot.png) | 303 | | [incantatem2/Obsidian-neutral-academia](https://github.com/incantatem2/Obsidian-neutral-academia) | ![Neutral Academia](https://raw.githubusercontent.com/incantatem2/Obsidian-neutral-academia/master/images/neutralacademia-dark-thumbnail.jpg) | 304 | | [harmtemolder/obsidian-ink](https://github.com/harmtemolder/obsidian-ink) | ![Ink](https://raw.githubusercontent.com/harmtemolder/obsidian-ink/master/screenshot.png) | 305 | | [drkpxl/Frost](https://github.com/drkpxl/Frost) | ![Frost](https://raw.githubusercontent.com/drkpxl/Frost/master/screenshot.png) | 306 | | [lorens-osman-dev/Glass-Robo](https://github.com/lorens-osman-dev/Glass-Robo) | ![Glass Robo](https://raw.githubusercontent.com/lorens-osman-dev/Glass-Robo/master/cover.png) | 307 | | [incantatem2/Obsidian-mulled-wine](https://github.com/incantatem2/Obsidian-mulled-wine) | ![Mulled Wine](https://raw.githubusercontent.com/incantatem2/Obsidian-mulled-wine/master/images/mulledwine-thumbnail.jpg) | 308 | | [abhimangs/obsidian-vortex](https://github.com/abhimangs/obsidian-vortex) | ![Vortex](https://raw.githubusercontent.com/abhimangs/obsidian-vortex/master/cover.png) | 309 | | [sspaeti/obsidian_kanagawa_paper](https://github.com/sspaeti/obsidian_kanagawa_paper) | ![Kanagawa Paper](https://raw.githubusercontent.com/sspaeti/obsidian_kanagawa_paper/master/dark.jpg) | 310 | | [IxBlazarxI/Obsidian-Theme-OverCast](https://github.com/IxBlazarxI/Obsidian-Theme-OverCast) | ![OverCast](https://raw.githubusercontent.com/IxBlazarxI/Obsidian-Theme-OverCast/master/Thumbnail.jpg) | 311 | | [Daiki48/sakurajima.obsidian](https://github.com/Daiki48/sakurajima.obsidian) | ![Sakurajima](https://raw.githubusercontent.com/Daiki48/sakurajima.obsidian/master/screenshots/cover.png) | 312 | | [aaaaalexis/obsidian-cupertino](https://github.com/aaaaalexis/obsidian-cupertino) | ![Cupertino](https://raw.githubusercontent.com/aaaaalexis/obsidian-cupertino/master/cupertino.png) | 313 | | [MalcolmMielle/Emerald-Echo](https://github.com/MalcolmMielle/Emerald-Echo) | ![Emerald Echo](https://raw.githubusercontent.com/MalcolmMielle/Emerald-Echo/master/screenshot.png) | 314 | | [benjaminezequiel/playground-theme](https://github.com/benjaminezequiel/playground-theme) | ![Playground](https://raw.githubusercontent.com/benjaminezequiel/playground-theme/master/theme_preview.png) | 315 | | [druxorey/minimal-dracula-for-obsidian](https://github.com/druxorey/minimal-dracula-for-obsidian) | ![Minimal Dracula](https://raw.githubusercontent.com/druxorey/minimal-dracula-for-obsidian/master/resources/cover.png) | 316 | | [technerium/obsidian-ukiyo](https://github.com/technerium/obsidian-ukiyo) | ![Ukiyo](https://raw.githubusercontent.com/technerium/obsidian-ukiyo/master/screenshot.png) | 317 | | [laughmaker/Zen](https://github.com/laughmaker/Zen) | ![Zen](https://raw.githubusercontent.com/laughmaker/Zen/master/cover.png) | 318 | | [Inc44/OLED.Black](https://github.com/Inc44/OLED.Black) | ![OLED.Black](https://raw.githubusercontent.com/Inc44/OLED.Black/master/screenshot.png) | 319 | | [iwa/Sei](https://github.com/iwa/Sei) | ![Sei](https://raw.githubusercontent.com/iwa/Sei/master/assets/thumbnail.jpg) | 320 | | [babidisrc/obsidian-sunbather](https://github.com/babidisrc/obsidian-sunbather) | ![Sunbather](https://raw.githubusercontent.com/babidisrc/obsidian-sunbather/master/thumbnail.png) | 321 | | [AfonsoMiranda02/MinimalRed-Obsidian-Theme](https://github.com/AfonsoMiranda02/MinimalRed-Obsidian-Theme) | ![Minimal Red](https://raw.githubusercontent.com/AfonsoMiranda02/MinimalRed-Obsidian-Theme/master/cover.png) | 322 | | [rose-pine/obsidian](https://github.com/rose-pine/obsidian) | ![Rose Pine](https://raw.githubusercontent.com/rose-pine/obsidian/master/thumbnail.png) | 323 | | [vran-dev/obsidian-composer](https://github.com/vran-dev/obsidian-composer) | ![Composer](https://raw.githubusercontent.com/vran-dev/obsidian-composer/master/screenshot.png) | 324 | | [double-tilde/old-world-obsidian](https://github.com/double-tilde/old-world-obsidian) | ![Old World](https://raw.githubusercontent.com/double-tilde/old-world-obsidian/master/images/screenshot.png) | 325 | | [HarmfulBreeze/obsidian-material-3-theme](https://github.com/HarmfulBreeze/obsidian-material-3-theme) | ![Material 3](https://raw.githubusercontent.com/HarmfulBreeze/obsidian-material-3-theme/master/screenshot.png) | 326 | | [GodlyMan-bit/Serif](https://github.com/GodlyMan-bit/Serif) | ![Serif](https://raw.githubusercontent.com/GodlyMan-bit/Serif/master/screenshot.png) | 327 | | [Halftroll0/Sad-Machine-Druid](https://github.com/Halftroll0/Sad-Machine-Druid) | ![Sad Machine Druid](https://raw.githubusercontent.com/Halftroll0/Sad-Machine-Druid/master/sad_machine_druid_screenshot_v1.jpg) | 328 | | [bladeacer/flexcyon](https://github.com/bladeacer/flexcyon) | ![flexcyon](https://raw.githubusercontent.com/bladeacer/flexcyon/master//docs/dark.png) | 329 | | [codeisconfusing/retro-windows-obsidian](https://github.com/codeisconfusing/retro-windows-obsidian) | ![Retro Windows](https://raw.githubusercontent.com/codeisconfusing/retro-windows-obsidian/master/screenshot.png) | 330 | | [outsidetext/lesswrong-obsidian](https://github.com/outsidetext/lesswrong-obsidian) | ![LessWrong](https://raw.githubusercontent.com/outsidetext/lesswrong-obsidian/master/preview.png) | 331 | | [en3sis/vercel-obsidian](https://github.com/en3sis/vercel-obsidian) | ![Vercel Geist](https://raw.githubusercontent.com/en3sis/vercel-obsidian/master/assets/vercel-obsidian-small.png) | 332 | | [incantatem2/Obsidian-aged-whisky](https://github.com/incantatem2/Obsidian-aged-whisky) | ![aged whisky](https://raw.githubusercontent.com/incantatem2/Obsidian-aged-whisky/master/images/aged-whisky-thumbnail.jpg) | 333 | | [LostViking09/obsidian-fastppuccin](https://github.com/LostViking09/obsidian-fastppuccin) | ![FastPpuccin](https://raw.githubusercontent.com/LostViking09/obsidian-fastppuccin/master/theme_image.png) | 334 | | [Krishna-Sen-Programming-World/Minimal-Dark-Coder](https://github.com/Krishna-Sen-Programming-World/Minimal-Dark-Coder) | ![Minimal-Dark-Coder](https://raw.githubusercontent.com/Krishna-Sen-Programming-World/Minimal-Dark-Coder/master/images/image.jpg) | 335 | | [MrParalloid/obsidian-things](https://github.com/MrParalloid/obsidian-things) | ![Things 3](https://raw.githubusercontent.com/MrParalloid/obsidian-things/master/things-screenshot.jpg) | 336 | | [LennZone/enhanced-file-explorer-tree](https://github.com/LennZone/enhanced-file-explorer-tree) | ![Enhanced file explorer tree](https://raw.githubusercontent.com/LennZone/enhanced-file-explorer-tree/master/thumbnail.png) | 337 | | [ninetyfive666/Planetary](https://github.com/ninetyfive666/Planetary) | ![Planetary](https://raw.githubusercontent.com/ninetyfive666/Planetary/master/thumbnail.jpg) | 338 | | [LennZone/Neumorphism](https://github.com/LennZone/Neumorphism) | ![Neumorphism](https://raw.githubusercontent.com/LennZone/Neumorphism/master/thumbnail.png) | 339 | | [splendidissimemendax/Camena](https://github.com/splendidissimemendax/Camena) | ![Camena](https://raw.githubusercontent.com/splendidissimemendax/Camena/master/Thumbnail.png) | 340 | | [MrParalloid/pomme-notes](https://github.com/MrParalloid/pomme-notes) | ![Pomme Notes](https://raw.githubusercontent.com/MrParalloid/pomme-notes/master/images/screenshot.jpg) | 341 | | [incantatem2/Obsidian-deep-submerge](https://github.com/incantatem2/Obsidian-deep-submerge) | ![deep submerge](https://raw.githubusercontent.com/incantatem2/Obsidian-deep-submerge/master/images/deep-submerge-thumbnail.jpg) | 342 | | [manuelcoca/obsidian-mono-high-contrast-theme](https://github.com/manuelcoca/obsidian-mono-high-contrast-theme) | ![Mono High Contrast](https://raw.githubusercontent.com/manuelcoca/obsidian-mono-high-contrast-theme/master/assets/thumbnail.png) | 343 | | [aidanastridge/Publisher](https://github.com/aidanastridge/Publisher) | ![Publisher](https://raw.githubusercontent.com/aidanastridge/Publisher/master/src/thumbnail.png) | 344 | | [ddspog/obsidian-ribbons-theme](https://github.com/ddspog/obsidian-ribbons-theme) | ![Ribbons](https://raw.githubusercontent.com/ddspog/obsidian-ribbons-theme/master/screenshot.png) | 345 | | [dubefab/obsidian-TerraFlow](https://github.com/dubefab/obsidian-TerraFlow) | ![TerraFlow](https://raw.githubusercontent.com/dubefab/obsidian-TerraFlow/master/Terraflow-cover.png) | 346 | | [ThePharaohArt/Obsidian-RetroOS98](https://github.com/ThePharaohArt/Obsidian-RetroOS98) | ![RetroOS 98](https://raw.githubusercontent.com/ThePharaohArt/Obsidian-RetroOS98/master/screen.png) | 347 | | [theaayushpatel/quillcode](https://github.com/theaayushpatel/quillcode) | ![Quillcode](https://raw.githubusercontent.com/theaayushpatel/quillcode/master/assets/dark-screenshot.png) | 348 | | [mulder3062/Myst](https://github.com/mulder3062/Myst) | ![Myst](https://raw.githubusercontent.com/mulder3062/Myst/master/screenshot.png) | 349 | | [GodlyMan-bit/SoliDeoGloria](https://github.com/GodlyMan-bit/SoliDeoGloria) | ![Soli Deo Gloria](https://raw.githubusercontent.com/GodlyMan-bit/SoliDeoGloria/master/screenshot.png) | 350 | | [pr0methevs/Hojicha](https://github.com/pr0methevs/Hojicha) | ![Hojicha](https://raw.githubusercontent.com/pr0methevs/Hojicha/master/assets/thumbnail.png) | 351 | | [Spekulucius/obsidian-marathon](https://github.com/Spekulucius/obsidian-marathon) | ![Marathon](https://raw.githubusercontent.com/Spekulucius/obsidian-marathon/master/preview.png) | 352 | | [kmranrg/obsidian-handwriting-theme](https://github.com/kmranrg/obsidian-handwriting-theme) | ![Handwriting (Kalam)](https://raw.githubusercontent.com/kmranrg/obsidian-handwriting-theme/master/screenshot.png) | 353 | | [omarrashad/obsidian-vesper](https://github.com/omarrashad/obsidian-vesper) | ![Vesper](https://raw.githubusercontent.com/omarrashad/obsidian-vesper/master/assets/cover.png) | 354 | | [SourTarte/Powered-By-Lancer](https://github.com/SourTarte/Powered-By-Lancer) | ![Powered by Lancer](https://raw.githubusercontent.com/SourTarte/Powered-By-Lancer/master/PoweredByLancer-Icon.png) | 355 | | [isax785/Terminal2K](https://github.com/isax785/Terminal2K) | ![Terminal2K](https://raw.githubusercontent.com/isax785/Terminal2K/master/img/screenshot.png) | 356 | | [mvahaste/meridian](https://github.com/mvahaste/meridian) | ![Meridian](https://raw.githubusercontent.com/mvahaste/meridian/master/preview.png) | 357 | | [omkar-4/Modern-GenZ-Vibedose](https://github.com/omkar-4/Modern-GenZ-Vibedose) | ![Modern GenZ Vibedose](https://raw.githubusercontent.com/omkar-4/Modern-GenZ-Vibedose/master/screenshot.png) | 358 | | [CascadeThemes/Duality](https://github.com/CascadeThemes/Duality) | ![Duality](https://raw.githubusercontent.com/CascadeThemes/Duality/master/screenshot.png) | 359 | | [bellebasso/Minimalists-Paradise](https://github.com/bellebasso/Minimalists-Paradise) | ![Minimalists Paradise](https://raw.githubusercontent.com/bellebasso/Minimalists-Paradise/master/screenshot.png) | 360 | | [incantatem2/Obsidian-dashboard](https://github.com/incantatem2/Obsidian-dashboard) | ![dashboard](https://raw.githubusercontent.com/incantatem2/Obsidian-dashboard/master/images/thumbnail.jpg) | 361 | | [anotherlusitano/SpectrumPlus](https://github.com/anotherlusitano/SpectrumPlus) | ![SpectrumPlus](https://raw.githubusercontent.com/anotherlusitano/SpectrumPlus/master/SpectrumPlusStorePreview.png) | 362 | | [JabariD/obsidian-radiance](https://github.com/JabariD/obsidian-radiance) | ![Radiance](https://raw.githubusercontent.com/JabariD/obsidian-radiance/master/cover.png) | 363 | | [kyffa/Iridium](https://github.com/kyffa/Iridium) | ![Iridium](https://raw.githubusercontent.com/kyffa/Iridium/master/screenshot.png) | 364 | | [cheycron/flat-cap-obsidian](https://github.com/cheycron/flat-cap-obsidian) | ![FlatCap](https://raw.githubusercontent.com/cheycron/flat-cap-obsidian/master/images/screenshot.png) | 365 | | [Vlad3Design/Mushin](https://github.com/Vlad3Design/Mushin) | ![Mushin](https://raw.githubusercontent.com/Vlad3Design/Mushin/master/Mushin.jpg) | 366 | | [cxj05h/obsidian-avatar](https://github.com/cxj05h/obsidian-avatar) | ![Avatar](https://raw.githubusercontent.com/cxj05h/obsidian-avatar/master/Avatar_Theme.png) | 367 | | [Riffaells/Robsi](https://github.com/Riffaells/Robsi) | ![Robsi](https://raw.githubusercontent.com/Riffaells/Robsi/master/screenshot.png) | 368 | | [regawaras/Coffee](https://github.com/regawaras/Coffee) | ![Coffee](https://raw.githubusercontent.com/regawaras/Coffee/master/coffee.png) | 369 | | [norderan/RedShift-obsidian-theme](https://github.com/norderan/RedShift-obsidian-theme) | ![RedShift - OLED Blue Light Filter](https://raw.githubusercontent.com/norderan/RedShift-obsidian-theme/master/screenshot.png) | 370 | | [gvorbeck/Nostromo](https://github.com/gvorbeck/Nostromo) | ![Nostromo](https://raw.githubusercontent.com/gvorbeck/Nostromo/master/assets/screenshot.png) | 371 | | [circkumflexx/obsidian-ravenloft-theme](https://github.com/circkumflexx/obsidian-ravenloft-theme) | ![Ravenloft](https://raw.githubusercontent.com/circkumflexx/obsidian-ravenloft-theme/master/preview.png) | 372 | | [danarnold/tokyonight-simple](https://github.com/danarnold/tokyonight-simple) | ![Tokyo Night Simple](https://raw.githubusercontent.com/danarnold/tokyonight-simple/master/directory-screenshot.png) | 373 | | [OmegaCentauri68/Omega-Theme-for-Obsidian](https://github.com/OmegaCentauri68/Omega-Theme-for-Obsidian) | ![Omega](https://raw.githubusercontent.com/OmegaCentauri68/Omega-Theme-for-Obsidian/master/img/thumb.png) | 374 | | [aaaaalexis/obsidian-baseline](https://github.com/aaaaalexis/obsidian-baseline) | ![Baseline](https://raw.githubusercontent.com/aaaaalexis/obsidian-baseline/master/baseline.png) | 375 | | [annagracedev/obsidian-azure](https://github.com/annagracedev/obsidian-azure) | ![Azure](https://raw.githubusercontent.com/annagracedev/obsidian-azure/master/azure_store.png) | 376 | | [konnta0/obsidian-noctis-theme](https://github.com/konnta0/obsidian-noctis-theme) | ![Noctis](https://raw.githubusercontent.com/konnta0/obsidian-noctis-theme/master/screenshot_512x228.png) | 377 | | [dubefab/Matrix](https://github.com/dubefab/Matrix) | ![Matrix](https://raw.githubusercontent.com/dubefab/Matrix/master/cover.png) | 378 | | [Cloopy/Powered-by-Lancer---Retouched](https://github.com/Cloopy/Powered-by-Lancer---Retouched) | ![Powered by Lancer - Retouched](https://raw.githubusercontent.com/Cloopy/Powered-by-Lancer---Retouched/master/RetouchedLancer.jpg) | 379 | | [sspaeti/obsidian_osaka_jade](https://github.com/sspaeti/obsidian_osaka_jade) | ![Osaka Jade](https://raw.githubusercontent.com/sspaeti/obsidian_osaka_jade/master/dark.png) | 380 | | [vupdivup/obsidian-everforest-spruce](https://github.com/vupdivup/obsidian-everforest-spruce) | ![Everforest Spruce](https://raw.githubusercontent.com/vupdivup/obsidian-everforest-spruce/master/cover.png) | 381 | | [crishood/nota-limonada-light](https://github.com/crishood/nota-limonada-light) | ![Nota Limonada Light](https://raw.githubusercontent.com/crishood/nota-limonada-light/master/thumbnail.png) | 382 | | [Lucas-Haux/Nord](https://github.com/Lucas-Haux/Nord) | ![Nord](https://raw.githubusercontent.com/Lucas-Haux/Nord/master/dark.png) | 383 | | [Gonzalo-D-Sales/obsidian-velocity](https://github.com/Gonzalo-D-Sales/obsidian-velocity) | ![Velocity](https://raw.githubusercontent.com/Gonzalo-D-Sales/obsidian-velocity/master/assets/thumbnail.png) | 384 | | [RastGame/obsidian-Noctilux](https://github.com/RastGame/obsidian-Noctilux) | ![Noctilux](https://raw.githubusercontent.com/RastGame/obsidian-Noctilux/master/Assets/preview.png) | 385 | | [emarpiee/Retroma](https://github.com/emarpiee/Retroma) | ![Retroma](https://raw.githubusercontent.com/emarpiee/Retroma/master/assets/screenshots/retroma-banner.png) | 386 | | [seavalanche/vesnea-obsidian-theme](https://github.com/seavalanche/vesnea-obsidian-theme) | ![Vesnea Vibe](https://raw.githubusercontent.com/seavalanche/vesnea-obsidian-theme/master/store-display.png) | 387 | | [incantatem2/Obsidian-blood-rush](https://github.com/incantatem2/Obsidian-blood-rush) | ![Blood Rush](https://raw.githubusercontent.com/incantatem2/Obsidian-blood-rush/master/images/bloodrush-thumbnail.jpg) | 388 | | [DarioArzaba/Obsidian-Theme-Arzaba](https://github.com/DarioArzaba/Obsidian-Theme-Arzaba) | ![Arzaba](https://raw.githubusercontent.com/DarioArzaba/Obsidian-Theme-Arzaba/master/screenshot.png) | 389 | | [tyronejosee/tyrone-neon](https://github.com/tyronejosee/tyrone-neon) | ![Tyrone Neon](https://raw.githubusercontent.com/tyronejosee/tyrone-neon/master/screenshots/main.png) | 390 | | [bastiangx/poimandres.obsidian](https://github.com/bastiangx/poimandres.obsidian) | ![Poimandres Extended](https://raw.githubusercontent.com/bastiangx/poimandres.obsidian/master/sc.png) | 391 | | [Bluemoondragon07/obsidian-future](https://github.com/Bluemoondragon07/obsidian-future) | ![Future](https://raw.githubusercontent.com/Bluemoondragon07/obsidian-future/master/cover.jpg) | 392 | | [IchiroFukuda/spy-terminal-theme](https://github.com/IchiroFukuda/spy-terminal-theme) | ![Spy Terminal](https://raw.githubusercontent.com/IchiroFukuda/spy-terminal-theme/master/screenshots/spy-terminal-atmosphere.png) | 393 | | [xscriptordev/obsidian](https://github.com/xscriptordev/obsidian) | ![Xscriptor](https://raw.githubusercontent.com/xscriptordev/obsidian/master/screenshot.png) | 394 | | [account-not-relevant/museifu-basic-theme](https://github.com/account-not-relevant/museifu-basic-theme) | ![Museifu Basic](https://raw.githubusercontent.com/account-not-relevant/museifu-basic-theme/master/cover.png) | 395 | | [codejota/NightlyWolf_ObsidianTheme](https://github.com/codejota/NightlyWolf_ObsidianTheme) | ![Nightly Wolf](https://raw.githubusercontent.com/codejota/NightlyWolf_ObsidianTheme/master/screenshot.png) | 396 | | [incantatem2/Obsidian-antique-flowers](https://github.com/incantatem2/Obsidian-antique-flowers) | ![Antique Flowers](https://raw.githubusercontent.com/incantatem2/Obsidian-antique-flowers/master/images/antique-flowers-dark-thumbnail.jpg) | 397 | | [incantatem2/Obsidian-desserts](https://github.com/incantatem2/Obsidian-desserts) | ![Desserts](https://raw.githubusercontent.com/incantatem2/Obsidian-desserts/master/images/desserts-light-thumbnail.jpg) | 398 | | [HotAndCold245/Hidden-Grotto](https://github.com/HotAndCold245/Hidden-Grotto) | ![Hidden Grotto](https://raw.githubusercontent.com/HotAndCold245/Hidden-Grotto/master/grotto-screenshot.png) | 399 | | [vinitkumar/oscura-obsidian](https://github.com/vinitkumar/oscura-obsidian) | ![Oscura](https://raw.githubusercontent.com/vinitkumar/oscura-obsidian/master/screenshot.png) | 400 | | [david-troyer/obsidian-theme-minimalist-studio](https://github.com/david-troyer/obsidian-theme-minimalist-studio) | ![Minimalist Studio](https://raw.githubusercontent.com/david-troyer/obsidian-theme-minimalist-studio/master/thumbnail.jpg) | 401 | | [wulflo/obsidian-3Sumaq](https://github.com/wulflo/obsidian-3Sumaq) | ![Universitario](https://raw.githubusercontent.com/wulflo/obsidian-3Sumaq/master/cover.jpg) | 402 | | [modigaphemelo/Dedication-obsidian-theme](https://github.com/modigaphemelo/Dedication-obsidian-theme) | ![Dedication](https://raw.githubusercontent.com/modigaphemelo/Dedication-obsidian-theme/master/Dark.png) | 403 | | [vinitkumar/monokai-ristretto-obsidian](https://github.com/vinitkumar/monokai-ristretto-obsidian) | ![Monokai Ristretto](https://raw.githubusercontent.com/vinitkumar/monokai-ristretto-obsidian/master/screenshot.png) | 404 | | [Jawuj/Blur-Theme](https://github.com/Jawuj/Blur-Theme) | ![Blur](https://raw.githubusercontent.com/Jawuj/Blur-Theme/master/Screenshot.png) | 405 | | [kraasch/true-black](https://github.com/kraasch/true-black) | ![True Black](https://raw.githubusercontent.com/kraasch/true-black/master/data/shot_512x288px.png) | 406 | | [konnta0/obsidian-noctis-viola-theme](https://github.com/konnta0/obsidian-noctis-viola-theme) | ![Noctis Viola](https://raw.githubusercontent.com/konnta0/obsidian-noctis-viola-theme/master/screenshot_512x288.png) | 407 | | [davidgolding/obsidian-auger](https://github.com/davidgolding/obsidian-auger) | ![Auger](https://raw.githubusercontent.com/davidgolding/obsidian-auger/master/img/hero.png) | 408 | | [COGQOD/hoverpopup-obsidian-theme](https://github.com/COGQOD/hoverpopup-obsidian-theme) | ![HoverPopup](https://raw.githubusercontent.com/COGQOD/hoverpopup-obsidian-theme/master/screenshots/screenshot.png) | 409 | | [M-Torrus/obsidian-cosmical-theme](https://github.com/M-Torrus/obsidian-cosmical-theme) | ![Cosmical](https://raw.githubusercontent.com/M-Torrus/obsidian-cosmical-theme/master/screenshot.png) | 410 | | [modigaphemelo/Dedication-2-Obsidian-Theme](https://github.com/modigaphemelo/Dedication-2-Obsidian-Theme) | ![Dedication 2](https://raw.githubusercontent.com/modigaphemelo/Dedication-2-Obsidian-Theme/master/Dark.png) | 411 | | [monoooki/obsidian-hydra-pressure-theme](https://github.com/monoooki/obsidian-hydra-pressure-theme) | ![Hydra Pressure](https://raw.githubusercontent.com/monoooki/obsidian-hydra-pressure-theme/master/assets/screenshot.png) | 412 | | [monoooki/obsidian-neo-sploosh-theme](https://github.com/monoooki/obsidian-neo-sploosh-theme) | ![Neo Sploosh](https://raw.githubusercontent.com/monoooki/obsidian-neo-sploosh-theme/master/assets/screenshot.png) | 413 | | [monoooki/obsidian-planetz-roller-theme](https://github.com/monoooki/obsidian-planetz-roller-theme) | ![Planetz Roller](https://raw.githubusercontent.com/monoooki/obsidian-planetz-roller-theme/master/assets/screenshot.png) | 414 | | [AstroAir/obsidian-night-owl](https://github.com/AstroAir/obsidian-night-owl) | ![Night Owl](https://raw.githubusercontent.com/AstroAir/obsidian-night-owl/master/owl-icon.png) | 415 | | [flowing-abyss/obsidian-base16-default-dark](https://github.com/flowing-abyss/obsidian-base16-default-dark) | ![Base16 Default Dark](https://raw.githubusercontent.com/flowing-abyss/obsidian-base16-default-dark/master/assets/theme.png) | 416 | | [volodinroman/obsidian-tech001-theme](https://github.com/volodinroman/obsidian-tech001-theme) | ![Tech001](https://raw.githubusercontent.com/volodinroman/obsidian-tech001-theme/master/screenshot.png) | 417 | --------------------------------------------------------------------------------