<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Deependra Singh</title>
    <description>The latest articles on DEV Community by Deependra Singh (@trdxlucifer).</description>
    <link>https://dev.to/trdxlucifer</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F869595%2Ffb4edbf0-02ec-4579-9eba-619889a2829e.jpeg</url>
      <title>DEV Community: Deependra Singh</title>
      <link>https://dev.to/trdxlucifer</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/trdxlucifer"/>
    <language>en</language>
    <item>
      <title>Let's Get Started with SharePoint Framework (SPFx) + React 🚀</title>
      <dc:creator>Deependra Singh</dc:creator>
      <pubDate>Mon, 08 Sep 2025 13:33:44 +0000</pubDate>
      <link>https://dev.to/trdxlucifer/lets-get-started-with-sharepoint-framework-spfx-react-229</link>
      <guid>https://dev.to/trdxlucifer/lets-get-started-with-sharepoint-framework-spfx-react-229</guid>
      <description>&lt;p&gt;👩‍💻 Goal: Build your first Hello World web part in SPFx with React.&lt;br&gt;
⚡ Time: ~15 mins&lt;br&gt;
🔧 Tools: Node.js • Yeoman • Gulp • VS Code&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6emhnqwbrvlg48x3k4qq.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6emhnqwbrvlg48x3k4qq.gif" alt=" " width="498" height="466"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🛠 1. Environment Setup&lt;/p&gt;

&lt;p&gt;📌 SPFx requires the right Node.js LTS (currently Node 18 for SPFx 1.18.2).&lt;br&gt;
👉 If you install the wrong version, you’ll see scary gulp errors ❌.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzozbqlb76j5d2y42vg8i.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzozbqlb76j5d2y42vg8i.gif" alt=" " width="498" height="373"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
**npm install -g yo gulp @microsoft/generator-sharepoint**
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;📂 2. Scaffold a New Project&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;mkdir spfx-helloworld
cd spfx-helloworld
yo @microsoft/sharepoint
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;👀 You’ll get a wizard:&lt;/p&gt;

&lt;p&gt;📦 Solution Name → spfx-helloworld&lt;br&gt;
🌐 Target → SharePoint Online only&lt;br&gt;
🧩 Component type → WebPart&lt;br&gt;
⚛️ Framework → React&lt;br&gt;
🏷 WebPart Name → HelloWorld&lt;/p&gt;

&lt;p&gt;▶️ 3. Run the Project&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;**gulp serve**
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;👋 4. Hello World in React&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;src/webparts/helloWorld/components/HelloWorld.tsx

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import * as React from "react";

export default function HelloWorld(): JSX.Element {
  return (
    &amp;lt;div style={{ padding: 20, fontSize: 20 }}&amp;gt;
      👋 Hello, SPFx + React World!
    &amp;lt;/div&amp;gt;
  );
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1sxdzdq4n1jshnyrsrec.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1sxdzdq4n1jshnyrsrec.gif" alt=" " width="320" height="320"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🎨 5. Add Some Style&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm install @fluentui/react

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import { PrimaryButton } from "@fluentui/react";

export default function HelloWorld() {
  return (
    &amp;lt;div&amp;gt;
      &amp;lt;h2&amp;gt;Welcome to SPFx + Fluent UI&amp;lt;/h2&amp;gt;
      &amp;lt;PrimaryButton text="Click Me 🚀" /&amp;gt;
    &amp;lt;/div&amp;gt;
  );
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8lxxhs5qcai5dj35didw.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8lxxhs5qcai5dj35didw.gif" alt=" " width="498" height="277"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Congrats 🎊 you’ve just unlocked the power of SPFx. Keep experimenting and building.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>spfx</category>
      <category>sharepointframework</category>
      <category>programming</category>
    </item>
    <item>
      <title>Boost Your Productivity in VS Code with the Best Themes: A Developer's Guide 🚀</title>
      <dc:creator>Deependra Singh</dc:creator>
      <pubDate>Thu, 12 Oct 2023 05:40:13 +0000</pubDate>
      <link>https://dev.to/trdxlucifer/boost-your-productivity-in-vs-code-with-the-best-themes-a-developers-guide-aka</link>
      <guid>https://dev.to/trdxlucifer/boost-your-productivity-in-vs-code-with-the-best-themes-a-developers-guide-aka</guid>
      <description>&lt;h2&gt;
  
  
  10 Best VSCode Themes in 2023 | How To Personalize VS Code
&lt;/h2&gt;

&lt;p&gt;Visual Studio Code (VS Code) is a free and open-source code editor developed by Microsoft. It has quickly become the most popular text editor among developers due to its versatility and ease of use.&lt;/p&gt;

&lt;p&gt;One of the cool features of VS Code is the ability to change its appearance with themes, with thousands of VSCode themes available to choose from. And while many choices are great, finding the perfect theme to suit your style can take time and effort.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9xtyt0lax0r8xdc8ywvf.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9xtyt0lax0r8xdc8ywvf.gif" alt="Coding Gif" width="498" height="466"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Best VS Code Theme Packages in 2023
&lt;/h2&gt;

&lt;p&gt;1.&lt;a href="https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme" rel="noopener noreferrer"&gt;Github Theme&lt;/a&gt;&lt;br&gt;
 &lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4ewxi7blni63c6w44d6s.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4ewxi7blni63c6w44d6s.png" alt="Github theme" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Main feature&lt;/strong&gt;: Mimics the look and feel of GitHub’s UI&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Number of installs&lt;/strong&gt;: 8.1M+&lt;/p&gt;

&lt;p&gt;2.&lt;a href="https://marketplace.visualstudio.com/items?itemName=johnpapa.winteriscoming" rel="noopener noreferrer"&gt;Winter is coming&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F82kexdyr6tu93w6oalko.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F82kexdyr6tu93w6oalko.png" alt="winter is coming" width="800" height="472"&gt;&lt;/a&gt;&lt;br&gt;
 &lt;strong&gt;Main feature&lt;/strong&gt;: Inspired by the Game of Thrones TV show&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Number of installs&lt;/strong&gt;: 2.1M+&lt;/p&gt;

&lt;p&gt;3.&lt;a href="https://marketplace.visualstudio.com/items?itemName=sdras.night-owl" rel="noopener noreferrer"&gt;Night Owl/Light Owl&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flqyx5xugj92jrxeugrtd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flqyx5xugj92jrxeugrtd.png" alt="night owl" width="800" height="556"&gt;&lt;/a&gt;&lt;br&gt;
 &lt;strong&gt;Main feature&lt;/strong&gt;: Dark and light options with distinctive designs.&lt;br&gt;
 **&lt;br&gt;
 Number of installs**: 1.8M+&lt;/p&gt;

&lt;p&gt;4.&lt;a href="https://marketplace.visualstudio.com/items?itemName=teabyii.ayu" rel="noopener noreferrer"&gt;Ayu&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdb6fzkagdzmismtrognl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdb6fzkagdzmismtrognl.png" alt="Ayu" width="800" height="592"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Main feature&lt;/strong&gt;: Comes in 3 variations and is customizable&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Number of installs&lt;/strong&gt;: 1.7M+&lt;/p&gt;

&lt;p&gt;5.&lt;a href="https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" rel="noopener noreferrer"&gt;Noctis&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgtrzyy74hibepm0pc4il.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgtrzyy74hibepm0pc4il.png" alt="Noctis" width="800" height="595"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Main feature&lt;/strong&gt;: Comes in nine different variations&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Number of installs&lt;/strong&gt;: 780K+&lt;br&gt;
 6.&lt;a href="https://marketplace.visualstudio.com/items?itemName=zhuangtongfa.Material-theme" rel="noopener noreferrer"&gt;One Dark Pro&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4o1wa49lpi58ev8wjmfo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4o1wa49lpi58ev8wjmfo.png" alt="one dark pro" width="800" height="672"&gt;&lt;/a&gt;&lt;br&gt;
 &lt;strong&gt;Main feature&lt;/strong&gt;: Colorful syntax highlighting&lt;br&gt;
 &lt;strong&gt;Number of installs&lt;/strong&gt;: 7M+&lt;/p&gt;

&lt;p&gt;7.&lt;a href="https://marketplace.visualstudio.com/items?itemName=dracula-theme.theme-dracula" rel="noopener noreferrer"&gt;Dracula offical&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq5ghaxyg41u4g0qkgwep.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq5ghaxyg41u4g0qkgwep.png" alt="Dracula" width="800" height="618"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Main feature&lt;/strong&gt;: Available for other code editors as well as VS Code&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Number of installs&lt;/strong&gt;: 5M+&lt;/p&gt;

&lt;p&gt;8.&lt;a href="https://marketplace.visualstudio.com/items?itemName=monokai.theme-monokai-pro-vscode" rel="noopener noreferrer"&gt;Monkai Pro&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6tbbdl1b5k67qfuvvwn0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6tbbdl1b5k67qfuvvwn0.png" alt="Monkai Pro" width="800" height="651"&gt;&lt;/a&gt;&lt;br&gt;
 &lt;strong&gt;Main feature&lt;/strong&gt;: Comes with unique file and folder icons&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Number of installs&lt;/strong&gt;: 2M+&lt;/p&gt;

&lt;p&gt;9.&lt;a href="https://marketplace.visualstudio.com/items?itemName=wesbos.theme-cobalt2" rel="noopener noreferrer"&gt;Cobalt2&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgol83tvk473mdrii0a0h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgol83tvk473mdrii0a0h.png" alt="cobalt2" width="800" height="569"&gt;&lt;/a&gt;&lt;br&gt;
 &lt;strong&gt;Main feature&lt;/strong&gt;: Bright colors and customizable&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Number of installs&lt;/strong&gt;: 1.1M+&lt;/p&gt;

&lt;p&gt;10.&lt;a href="https://marketplace.visualstudio.com/items?itemName=ahmadawais.shades-of-purple" rel="noopener noreferrer"&gt;Shades of Purple&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3ph6evewf956imyei7vc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3ph6evewf956imyei7vc.png" alt="shades of purple" width="800" height="607"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Main feature&lt;/strong&gt;: Uses different shades of purple&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Number of installs&lt;/strong&gt;: 1.4M+&lt;/p&gt;

&lt;h2&gt;
  
  
  Best Practices for Using VS Code Themes 💻
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8x84jiyyvm02kl0miusz.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8x84jiyyvm02kl0miusz.gif" alt="gif coding skils" width="498" height="280"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;When it comes to using VS Code themes, let’s take a look at some best practices to consider.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Use themes from the official marketplace&lt;/strong&gt;: VS Code has a built-in marketplace to download your favorite themes. It’s also easier and safer to use themes from the marketplace.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Check the number of downloads&lt;/strong&gt;: Before downloading a theme, check the number of installs and reviews to see what other users think. Themes with higher installs and ratings are more likely to be well-designed.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;-** Consider your environment**: If you're working in a dimly lit room, a darker theme may be easier on the eyes. And if you're working outside or in a bright environment, a lighter theme may make your code more visible.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Customize to your liking&lt;/strong&gt;: Many themes have customization options, allowing you to adjust the colors, fonts, and more to your liking. Experiment with settings to find the perfect balance between visual appeal and functionality.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How to Install Themes in Visual Studio Code 🧑‍💻🧑‍💻
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Launch Visual Studio Code&lt;/strong&gt;: Open VS Code if it's not already running.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;2.&lt;strong&gt;Open Extensions&lt;/strong&gt;: There are a few ways to access the Extensions view:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Click on the square icon on the sidebar (or use the keyboard shortcut Ctrl+Shift+X or Cmd+Shift+X on macOS).
You can also click on View in the top menu and select Extensions.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Search for Themes&lt;/strong&gt;: In the Extensions view, there is a search bar. You can search for themes by typing the name of the theme you want, or you can simply type "theme" to see a list of available themes.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;5.&lt;strong&gt;Install a Theme&lt;/strong&gt;: When you find a theme you like, click the "Install" button next to the theme's name. If you're not sure which theme to choose, you can install multiple themes and switch between them later.&lt;/p&gt;

&lt;p&gt;6.&lt;strong&gt;Apply the Theme&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;After installing a theme, you might see a notification that prompts you to apply it. Click "Reload" to activate the theme immediately.&lt;br&gt;
If you don't see a notification, you can manually change the theme by clicking the gear icon in the bottom left corner of VS Code to open the Settings menu, then select "Color Theme" from the dropdown menu and choose your installed theme from the list.&lt;br&gt;
That's it! You've successfully installed and applied a theme in Visual Studio Code. You can switch between different themes as often as you like to find the one that suits your coding style and preferences.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq47c8pbdlh57qd01f6g2.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq47c8pbdlh57qd01f6g2.gif" alt="thanks" width="480" height="480"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Introducing My Journey as a Front-End Developer 🚀</title>
      <dc:creator>Deependra Singh</dc:creator>
      <pubDate>Fri, 29 Sep 2023 06:01:40 +0000</pubDate>
      <link>https://dev.to/trdxlucifer/introducing-my-journey-as-a-front-end-developer-51l2</link>
      <guid>https://dev.to/trdxlucifer/introducing-my-journey-as-a-front-end-developer-51l2</guid>
      <description>&lt;h2&gt;
  
  
  About me 🧑‍🦱
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpiflgkqcjfxq11cltid4.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpiflgkqcjfxq11cltid4.gif" alt="About me gif" width="400" height="225"&gt;&lt;/a&gt;&lt;br&gt;
My name is Deependra Singh, and I'm a front-end developer based in India. I've always been fascinated by the power of the web to connect people and provide delightful user experiences. I may be relatively new to this field, but my enthusiasm for web development knows no bounds.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Love for Front-End Development ❤️
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjt1k2atnda869vpdphe7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjt1k2atnda869vpdphe7.gif" alt="coding meme gif" width="350" height="210"&gt;&lt;/a&gt;&lt;br&gt;
It was a humble start, and I vividly remember the excitement of seeing my first lines of HTML and CSS come together to create a basic webpage. Since then, I've been on a continuous quest to explore and learn more about this dynamic field.&lt;/p&gt;

&lt;p&gt;I want to emphasize that I'm still very much a learner in this ever-evolving domain. With each day, I discover new challenges and exciting opportunities to expand my skills. My journey is one of exploration, trial, and error. I'm not here as an expert but as a fellow learner eager to share my progress, experiences, and the lessons I pick up along the way.&lt;/p&gt;

&lt;h2&gt;
  
  
  Let's Learn and Grow Together 💫
&lt;/h2&gt;

&lt;p&gt;I'm genuinely excited to be part of the Dev.to community, and I look forward to connecting with fellow learners and experienced developers alike. Your insights, feedback, and shared knowledge are invaluable as I continue to sharpen my skills.&lt;/p&gt;

&lt;p&gt;Thank you for welcoming me into this fantastic community of learners and creators. Here's to our collective growth and exploration in the world of front-end development! 🌟&lt;/p&gt;

&lt;p&gt;&lt;a href="//github.com/trdxlucifer"&gt;Github&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>programming</category>
      <category>discuss</category>
    </item>
  </channel>
</rss>
