This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* A Dark Mode Markdown Preview stylesheet for vscode markdown previews | |
| Created via Claude chat | |
| - Download and add this file in each vscode workspace root that you want to use it. | |
| - In your workspace settings, ./.vscode/settings.json, add a reference to this. | |
| { | |
| "markdown.styles": [ | |
| "md_preview_dark_theme.css" | |
| ] | |
| } | |
| - Now, whenever you open a markdown file as a preview (Markdown: Open Preview to the side), you will get colors for all the markup - headings, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>AI Apps Explorer</title> | |
| <style> | |
| *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } | |
| :root { |
OlderNewer