| Kislay Theme Changer - VS Code ExtensionA simple VS Code extension that allows you to toggle between light and dark themes with a single command. Features
Quick Theme Toggle: Switch between light and dark themes instantlyCustom Themes: Includes custom light and dark themes optimized for VS CodeSimple Command: Use the command palette or keyboard shortcut to toggle themesVS Code Integration: Seamlessly integrates with VS Code's theme system InstallationFrom VSIX Package
Download the .vsixfile from the releasesIn VS Code, go to Extensions (Ctrl+Shift+X)Click the "..." menu and select "Install from VSIX..."Choose the downloaded .vsixfile From Source
Clone this repositoryInstall dependencies:
npm install
Package the extension:
npm run package
Install the generated .vsixfile in VS Code UsageCommand Palette
Open the Command Palette (Ctrl+Shift+P)Type "Toggle Light/Dark Theme"Press Enter to switch themes Keyboard ShortcutYou can add a custom keyboard shortcut by: 
Open Keyboard Shortcuts (Ctrl+K Ctrl+S)Search for "Toggle Light/Dark Theme"Click the + icon to add your preferred shortcut Themes IncludedLight Theme
Clean white backgroundDark text for excellent readabilityBlue keywords, green strings, gray commentsLight gray UI elements Dark Theme
Classic dark editor background (#1E1E1E)White text for contrastBlue keywords, orange strings, green commentsDark gray UI elements DevelopmentPrerequisites
Node.js (version 14 or higher)VS Code Extension Development Host Setup
Install dependencies: npm install
Open the project in VS CodePress F5 to launch the Extension Development HostIn the new VS Code window, use Ctrl+Shift+P and search for "Toggle Light/Dark Theme" BuildingTo create a distributable package: npm run package
 This will create a .vsixfile that can be installed in VS Code. File Structuretheme-changer-extension/
├── package.json          # VS Code extension manifest
├── extension.js          # Extension activation and command logic
├── themes/              # Theme definitions
│   ├── light-theme.json # Light theme configuration
│   └── dark-theme.json  # Dark theme configuration
└── README.md            # This file
 Extension ConfigurationThe extension contributes: 
Two themes: Light Theme and Dark ThemeOne command: themeChanger.toggleTheme- Toggle Light/Dark Theme Contributing
Fork the repositoryCreate a feature branchMake your changesTest the extensionSubmit a pull request LicenseMIT License - feel free to use and modify this extension. PublisherPublished by kislay Version History
0.0.1: Initial release with basic theme toggle functionality |  |