@@ -8,7 +8,7 @@ This document provides a comprehensive overview of the Sprinkles VSCode theme pr
88
99### Key Features
1010
11- - Dark and light theme variants
11+ - Dark, light and cream theme variants
1212- Comprehensive syntax highlighting for multiple languages
1313- Carefully designed UI colors for VSCode interface elements
1414- Terminal color customization
@@ -23,11 +23,13 @@ sprinkles-vscode/
2323├── src/ # Source code
2424│ ├── colors/ # Color palette definitions
2525│ │ ├── index.ts # Color loader/selector
26+ │ │ ├── cream.ts # Cream theme color palette
2627│ │ ├── dark.ts # Dark theme color palette
2728│ │ └── light.ts # Light theme color palette
2829│ ├── theme.ts # Theme generator (main logic)
2930│ └── index.ts # Build script entry point
3031├── themes/ # Generated theme JSON files (output)
32+ │ ├── sprinkles-cream.json
3133│ ├── sprinkles-dark.json
3234│ └── sprinkles-light.json
3335├── images/ # Extension assets (icon)
@@ -65,7 +67,7 @@ sprinkles-vscode/
6567
6668- Entry point for theme generation
6769- Creates ` themes/ ` directory if it doesn't exist
68- - Generates both dark and light theme JSON files
70+ - Generates dark, light and cream theme JSON files
6971- Writes formatted JSON output with proper error handling
7072
7173#### 2. ** src/theme.ts**
@@ -84,6 +86,7 @@ sprinkles-vscode/
8486- ` index.ts ` : Exports color getter function based on variant
8587- ` dark.ts ` : Dark theme color definitions
8688- ` light.ts ` : Light theme color definitions
89+ - ` cream.ts ` : Cream theme color definitions
8790- Color structure includes:
8891 - Canvas colors (UI elements)
8992 - Editor colors (code editor specific)
@@ -143,8 +146,6 @@ Uses nodemon to watch `src/` directory and rebuild on changes.
143146
144147### Testing the Theme
145148
146- #### Method 1: Debug Mode
147-
1481491 . Open project in VSCode
1491502 . Press ` F5 ` or go to Run & Debug panel
1501513 . Select "Extension" configuration
@@ -154,13 +155,6 @@ Uses nodemon to watch `src/` directory and rebuild on changes.
1541557 . Select "Preferences: Color Theme"
1551568 . Choose "Sprinkles Dark" or "Sprinkles Light"
156157
157- #### Method 2: Local Installation
158-
159- ``` bash
160- npm run publish:vsce -- --no-publish
161- code --install-extension sprinkles-vscode-* .vsix
162- ```
163-
164158### Code Quality
165159
166160``` bash
@@ -218,6 +212,7 @@ npx prettier --write .
2182121 . Edit color palettes:
219213 - Dark: ` src/colors/dark.ts `
220214 - Light: ` src/colors/light.ts `
215+ - Cream: ` src/colors/cream.ts `
221216
2222172 . Rebuild:
223218
0 commit comments