@@ -155,17 +155,24 @@ VSCode themes are static JSON - no real glow effects possible. For actual glowin
155155``` css
156156/* Functions with glow effect */
157157.token.function {
158- text-shadow : 0 0 5px #80ffea , 0 0 10px #80ffea , 0 0 15px #80ffea ;
158+ text-shadow :
159+ 0 0 5px #80ffea ,
160+ 0 0 10px #80ffea ,
161+ 0 0 15px #80ffea ;
159162}
160163
161164/* Keywords with purple glow */
162165.token.keyword {
163- text-shadow : 0 0 5px #e135ff , 0 0 10px #e135ff ;
166+ text-shadow :
167+ 0 0 5px #e135ff ,
168+ 0 0 10px #e135ff ;
164169}
165170
166171/* Strings with pink glow */
167172.token.string {
168- text-shadow : 0 0 5px #ff99ff , 0 0 10px #ff99ff ;
173+ text-shadow :
174+ 0 0 5px #ff99ff ,
175+ 0 0 10px #ff99ff ;
169176}
170177```
171178
@@ -183,27 +190,27 @@ For full control, create a VSCode extension that:
183190
184191<div align =" center " >
185192
186- | Color | Hex | Preview | Usage |
187- | -------| -----| ---------| -------|
188- | Background | ` #0a0a0f ` | ![ #0a0a0f] ( https://placehold.co/20x20/0a0a0f/0a0a0f.png ) | Editor background |
189- | Foreground | ` #e0e0e0 ` | ![ #e0e0e0] ( https://placehold.co/20x20/e0e0e0/e0e0e0.png ) | Default text |
190- | Purple | ` #e135ff ` | ![ #e135ff] ( https://placehold.co/20x20/e135ff/e135ff.png ) | Keywords, types |
191- | Pink | ` #ff79c6 ` | ![ #ff79c6] ( https://placehold.co/20x20/ff79c6/ff79c6.png ) | Strings, attributes |
192- | Cyan | ` #80ffea ` | ![ #80ffea] ( https://placehold.co/20x20/80ffea/80ffea.png ) | Functions, methods |
193- | Green | ` #50fa7b ` | ![ #50fa7b] ( https://placehold.co/20x20/50fa7b/50fa7b.png ) | Success, valid |
194- | Yellow | ` #f1fa8c ` | ![ #f1fa8c] ( https://placehold.co/20x20/f1fa8c/f1fa8c.png ) | Variables, warnings |
195- | Orange | ` #ffb86c ` | ![ #ffb86c] ( https://placehold.co/20x20/ffb86c/ffb86c.png ) | Numbers, constants |
193+ | Color | Hex | Preview | Usage |
194+ | ---------- | --------- | -------------------------------------------------------- | ------------------- |
195+ | Background | ` #0a0a0f ` | ![ #0a0a0f] ( https://placehold.co/20x20/0a0a0f/0a0a0f.png ) | Editor background |
196+ | Foreground | ` #e0e0e0 ` | ![ #e0e0e0] ( https://placehold.co/20x20/e0e0e0/e0e0e0.png ) | Default text |
197+ | Purple | ` #e135ff ` | ![ #e135ff] ( https://placehold.co/20x20/e135ff/e135ff.png ) | Keywords, types |
198+ | Pink | ` #ff79c6 ` | ![ #ff79c6] ( https://placehold.co/20x20/ff79c6/ff79c6.png ) | Strings, attributes |
199+ | Cyan | ` #80ffea ` | ![ #80ffea] ( https://placehold.co/20x20/80ffea/80ffea.png ) | Functions, methods |
200+ | Green | ` #50fa7b ` | ![ #50fa7b] ( https://placehold.co/20x20/50fa7b/50fa7b.png ) | Success, valid |
201+ | Yellow | ` #f1fa8c ` | ![ #f1fa8c] ( https://placehold.co/20x20/f1fa8c/f1fa8c.png ) | Variables, warnings |
202+ | Orange | ` #ffb86c ` | ![ #ffb86c] ( https://placehold.co/20x20/ffb86c/ffb86c.png ) | Numbers, constants |
196203
197204</div >
198205
199206### 🎛️ Variant Intensity
200207
201- | Element | Neon | Vibrant | Soft | Glow |
202- | ---------| ------| ---------| ------| ------|
203- | Keywords | ` #e135ff ` | ` #bc4dd9 ` | ` #a766b3 ` | ` #ec69ff ` |
204- | Strings | ` #ff99ff ` | ` #d9b3d9 ` | ` #c199b3 ` | ` #ffb3ff ` |
208+ | Element | Neon | Vibrant | Soft | Glow |
209+ | --------- | --------- | --------- | --------- | --------- |
210+ | Keywords | ` #e135ff ` | ` #bc4dd9 ` | ` #a766b3 ` | ` #ec69ff ` |
211+ | Strings | ` #ff99ff ` | ` #d9b3d9 ` | ` #c199b3 ` | ` #ffb3ff ` |
205212| Functions | ` #80ffea ` | ` #80d9c7 ` | ` #80b3a1 ` | ` #9dffed ` |
206- | Comments | ` #9580ff ` | ` #9180d9 ` | ` #8d80b3 ` | ` #a999ff ` |
213+ | Comments | ` #9580ff ` | ` #9180d9 ` | ` #8d80b3 ` | ` #a999ff ` |
207214
208215## 📝 Technical Notes
209216
0 commit comments