https://github.com/psparwez/vscode-customization
a simple VS Code theme customization settings.
https://github.com/psparwez/vscode-customization
Last synced: 7 months ago
JSON representation
a simple VS Code theme customization settings.
- Host: GitHub
- URL: https://github.com/psparwez/vscode-customization
- Owner: psparwez
- Created: 2024-10-15T19:16:09.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-10-15T19:40:47.000Z (12 months ago)
- Last Synced: 2025-01-05T10:12:45.171Z (9 months ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vscode-customization
a simple VS Code theme customization settings.```json
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#ffdd000e",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#def6ff47",
"activityBarBadge.background": "#fdb345",
"commandCenter.border": "#dfecff47",
"sash.hoverBorder": "#1f6fd0",
"statusBarItem.hoverBackground": "#b9d8ff36",
"statusBarItem.remoteBackground": "#3c6ace8e",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeForeground": "#d6e1ff8e",
}
}
```
## Setting Up In Your ProjectFirst, open Visual Studio Code and create a folder named `.vscode`.
To create the folder:
1. **Open Visual Studio Code**.
2. **Create a New Workspace** or open an existing folder.
3. **Open the Integrated Terminal** by selecting `View > Terminal` or pressing `` Ctrl + ` ``.
4. **Create the `.vscode` Folder** using the following command:```bash
mkdir .vscode
```
Inside **`.vscode` Folder** create a **new File `settings.json`**
5. Then last **Copy** The `json` code and paste inside `settings.json` file & save it .
6. **Theme recomanded -** Best Themes - Ayu darkvenom## Now you have a well-structured VS Code customization!