From df23314bd22a1a17aa70865e1c4b0cf874fc67c9 Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Thu, 12 Dec 2024 14:37:54 -0800 Subject: [PATCH] add css to useful links --- VOID_USEFUL_LINKS.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/VOID_USEFUL_LINKS.md b/VOID_USEFUL_LINKS.md index ef7cbc16..537fbf2e 100644 --- a/VOID_USEFUL_LINKS.md +++ b/VOID_USEFUL_LINKS.md @@ -10,10 +10,14 @@ The Void team put together this list of links to get up and running with VSCode' ## Contributing -- [How VS Code's sourcecode is organized](https://github.com/microsoft/vscode/wiki/Source-Code-Organization) - this explains where the entry point files are, what `browser/` and `common/` mean, etc. This is the most important read on this whole list! We recommend reading the whole thing. +- [How VSCode's sourcecode is organized](https://github.com/microsoft/vscode/wiki/Source-Code-Organization) - this explains where the entry point files are, what `browser/` and `common/` mean, etc. This is the most important read on this whole list! We recommend reading the whole thing. + +- [Built-in VSCode Styles](https://code.visualstudio.com/api/references/theme-color) - CSS variables that are built into VSCode. Use `var(--vscode-{theme but replacing . with -})`. You can also see the [Webview Theming Guide](https://code.visualstudio.com/api/extension-guides/webview#theming-webview-content). -- [Every command](https://code.visualstudio.com/api/references/commands) built-in to VSCode - sometimes useful to reference. +## Misc + +- [Every command](https://code.visualstudio.com/api/references/commands) built-in to VSCode - not used often, but here for reference. ## VSCode's Extension API