<?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: Lakshit Somani</title>
    <description>The latest articles on DEV Community by Lakshit Somani (@lakshitsomani).</description>
    <link>https://dev.to/lakshitsomani</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%2F895545%2F9199e682-08f8-468b-a0e6-01941622f90c.png</url>
      <title>DEV Community: Lakshit Somani</title>
      <link>https://dev.to/lakshitsomani</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lakshitsomani"/>
    <language>en</language>
    <item>
      <title>VSCode extensions are not removed from file system even after uninstalling, I created a solution !</title>
      <dc:creator>Lakshit Somani</dc:creator>
      <pubDate>Wed, 25 Sep 2024 15:34:24 +0000</pubDate>
      <link>https://dev.to/lakshitsomani/vscode-extensions-not-removed-from-file-system-even-after-uninstalling-i-created-a-solution--26fm</link>
      <guid>https://dev.to/lakshitsomani/vscode-extensions-not-removed-from-file-system-even-after-uninstalling-i-created-a-solution--26fm</guid>
      <description>&lt;p&gt;So this is a problem with vscode based editors. Even after you uninstall a extension, it will stay in file system and overtime clog your system. I created a simple solution. Running this python script will delete extensions which are not installed on your vscode. &lt;/p&gt;

&lt;p&gt;It runs for VS Code, VS Code Insiders, and also for VSCodium!&lt;/p&gt;




&lt;h1&gt;
  
  
  Here is the link: &lt;a href="https://gist.github.com/lakshits11/236bd5d475fdd50072b3e6803e7342dd" rel="noopener noreferrer"&gt;https://gist.github.com/lakshits11/236bd5d475fdd50072b3e6803e7342dd&lt;/a&gt;
&lt;/h1&gt;




&lt;p&gt;Please give it a star.&lt;/p&gt;

&lt;p&gt;(Image credit: &lt;a href="https://www.codewithtomi.com/2022/07/if-you-use-django-you-need-this-vs-code.html" rel="noopener noreferrer"&gt;https://www.codewithtomi.com/2022/07/if-you-use-django-you-need-this-vs-code.html&lt;/a&gt;)&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>python</category>
      <category>productivity</category>
      <category>hack</category>
    </item>
    <item>
      <title>Debugging Your Finances: Open Source Future Wealth Calculator for your investments</title>
      <dc:creator>Lakshit Somani</dc:creator>
      <pubDate>Sun, 08 Sep 2024 17:00:05 +0000</pubDate>
      <link>https://dev.to/lakshitsomani/debugging-your-finances-open-source-future-wealth-calculator-for-your-investments-59a3</link>
      <guid>https://dev.to/lakshitsomani/debugging-your-finances-open-source-future-wealth-calculator-for-your-investments-59a3</guid>
      <description>&lt;p&gt;Hey there, fellow devs! 👋 Lakshit here, and I'm excited to share a project I've been working on. I've built a Future Value Calculator, and I thought I'd walk you through the process, highlighting some key features and the tech behind it.&lt;/p&gt;

&lt;p&gt;The Future Value Calculator I built isn't your typical financial planning tool. Sure, it has all the standard features you'd expect - the ability to input your initial capital, monthly contributions, interest rate, and time horizon. But what sets this calculator apart are two key features:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Inflation Adjustments&lt;/strong&gt;: Most calculators give you the raw future value number, but fail to account for the eroding effects of inflation. This tool lets you input an inflation rate, so you can see the real purchasing power of your future savings.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Investment Growth Adjustments&lt;/strong&gt;: Rather than assuming a static investment amount, this calculator allows you to factor in an annual investment growth rate. This means you have option to increase your investments every year and see how it potentially increases your future wealth.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;🚀 Performance First&lt;/strong&gt;&lt;br&gt;
It is blazingly fast as it is built upon a single HTML file.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;💡 Comprehensive Algorithm&lt;/strong&gt;&lt;br&gt;
The calculator takes into account:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Initial capital&lt;/li&gt;
&lt;li&gt;Monthly deposits&lt;/li&gt;
&lt;li&gt;Annual interest rate&lt;/li&gt;
&lt;li&gt;Inflation rate&lt;/li&gt;
&lt;li&gt;Investment growth rate&lt;/li&gt;
&lt;li&gt;Time horizon&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;It then computes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Future value without inflation&lt;/li&gt;
&lt;li&gt;Future value with inflation (real purchasing power)&lt;/li&gt;
&lt;li&gt;Total amount invested&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  The Code (Because We're All Here for That, Right?)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The Tech Stack&lt;/strong&gt;&lt;br&gt;
Frontend: HTML5, CSS3, and vanilla JavaScript (because sometimes, less is more)&lt;/p&gt;
&lt;h3&gt;
  
  
  HTML Structure:
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;1. Basic Setup and Metadata:&lt;/strong&gt; We begin with the standard &lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/code&gt; declaration and opening &lt;code&gt;&amp;lt;html&amp;gt;&lt;/code&gt; tag with a specified lang attribute. Within the &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; section, we define character encoding, viewport settings for responsive design, the title of the document, and links to external resources like Bootstrap for CSS styling and custom fonts from Google.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Form Creation:&lt;/strong&gt; Within the &lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt;, centered using Bootstrap's grid system, we introduce a card-style layout (&lt;code&gt;&amp;lt;div class="card"&amp;gt;&lt;/code&gt;) that contains all other elements. The card header (&lt;code&gt;&amp;lt;div class="card-header text-white"&amp;gt;&lt;/code&gt;) announces the tool's purpose. The body of the card (&lt;code&gt;&amp;lt;div class="card-body"&amp;gt;&lt;/code&gt;) houses the user input form (&lt;code&gt;&amp;lt;form id="investmentForm"&amp;gt;&lt;/code&gt;). This form includes several input fields for users to enter details such as initial capital, monthly deposits, and rates. Each input is wrapped in a &lt;code&gt;&amp;lt;div class="form-group"&amp;gt;&lt;/code&gt; for proper spacing and labeling.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Results Display:&lt;/strong&gt; Below the form, we prepare placeholders for displaying the calculation results. These are initially hidden and are shown dynamically when the calculations are made.&lt;/p&gt;
&lt;h3&gt;
  
  
  CSS Styling:
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;1. Layout and Design:&lt;/strong&gt; We utilize modern CSS properties to enhance the visual appeal and user experience. This includes custom fonts, background colors, padding, and transitions for smooth visual effects. The use of CSS Grid and Flexbox ensures that the layout is responsive and elements are well-organized.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Form Aesthetics:&lt;/strong&gt; Input fields and buttons are styled with rounded borders and transition effects to provide feedback when interacted with. The overall form design is clean and minimalistic, focusing user attention on the task at hand.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Animations:&lt;/strong&gt; Subtle animations such as 'fadeIn' are defined to make the appearance of results more engaging.&lt;/p&gt;
&lt;h3&gt;
  
  
  JavaScript Functionality:
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;1. Form Handling:&lt;/strong&gt; The JavaScript included at the bottom of the HTML document is crucial for the dynamic aspects of the calculator. It prevents the default form submission to handle calculations directly within the page. It also validates the input fields, ensuring that all necessary data is entered before proceeding.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Calculation Logic:&lt;/strong&gt; The script houses the logic for calculating the future value of investments based on user-provided data. It dynamically updates the DOM with the results, showing what the investments will look like with and without considering inflation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Event Listeners:&lt;/strong&gt; Listeners for 'submit' and 'keydown' events are set up to enhance the form's interactivity, allowing users to either click the calculate button or press 'Enter' to trigger the calculation.&lt;/p&gt;

&lt;p&gt;Below is the complete code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="cp"&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;html&lt;/span&gt; &lt;span class="na"&gt;lang=&lt;/span&gt;&lt;span class="s"&gt;"en"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;

&lt;span class="nt"&gt;&amp;lt;head&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;charset=&lt;/span&gt;&lt;span class="s"&gt;"UTF-8"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;meta&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"viewport"&lt;/span&gt; &lt;span class="na"&gt;content=&lt;/span&gt;&lt;span class="s"&gt;"width=device-width, initial-scale=1.0"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;title&amp;gt;&lt;/span&gt;Future Value Calculator&lt;span class="nt"&gt;&amp;lt;/title&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;link&lt;/span&gt; &lt;span class="na"&gt;rel=&lt;/span&gt;&lt;span class="s"&gt;"shortcut icon"&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"image/jpg"&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"favicon.jpg"&lt;/span&gt;&lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;link&lt;/span&gt; &lt;span class="na"&gt;rel=&lt;/span&gt;&lt;span class="s"&gt;"stylesheet"&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;style&amp;gt;&lt;/span&gt;
        &lt;span class="k"&gt;@import&lt;/span&gt; &lt;span class="sx"&gt;url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&amp;amp;display=swap')&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

        &lt;span class="nt"&gt;body&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="nl"&gt;font-family&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;Rubik&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nb"&gt;sans-serif&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;background&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;#f0f2f5&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;padding&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;20px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;transition&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;background&lt;/span&gt; &lt;span class="m"&gt;0.5s&lt;/span&gt; &lt;span class="n"&gt;ease-in-out&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="c"&gt;/* overflow: hidden; */&lt;/span&gt;
            &lt;span class="nl"&gt;overflow-y&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;scroll&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="c"&gt;/* Enable vertical scrolling */&lt;/span&gt;
            &lt;span class="nl"&gt;overflow-x&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;hidden&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="c"&gt;/* Hide horizontal scrollbar */&lt;/span&gt;
            &lt;span class="py"&gt;scrollbar-width&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;none&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="c"&gt;/* For Firefox */&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;

        &lt;span class="nc"&gt;.container&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="nl"&gt;margin-top&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;50px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;transition&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;margin-top&lt;/span&gt; &lt;span class="m"&gt;0.5s&lt;/span&gt; &lt;span class="n"&gt;ease-in-out&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;overflow&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;auto&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;padding-right&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;15px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;

        &lt;span class="nc"&gt;.alert&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt;
        &lt;span class="nc"&gt;.warning&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="nl"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;none&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;animation&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;fadeIn&lt;/span&gt; &lt;span class="m"&gt;0.75s&lt;/span&gt; &lt;span class="n"&gt;ease-in-out&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;

        &lt;span class="nc"&gt;.card&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="nl"&gt;border-radius&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;15px&lt;/span&gt; &lt;span class="cp"&gt;!important&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;border&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;none&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;transition&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;transform&lt;/span&gt; &lt;span class="m"&gt;0.5s&lt;/span&gt; &lt;span class="n"&gt;ease-in-out&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;box-shadow&lt;/span&gt; &lt;span class="m"&gt;0.5s&lt;/span&gt; &lt;span class="n"&gt;ease-in-out&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;

        &lt;span class="nc"&gt;.card&lt;/span&gt;&lt;span class="nd"&gt;:hover&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="c"&gt;/* transform: scale(1.02); */&lt;/span&gt;
            &lt;span class="nl"&gt;box-shadow&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt; &lt;span class="m"&gt;8px&lt;/span&gt; &lt;span class="m"&gt;16px&lt;/span&gt; &lt;span class="n"&gt;rgba&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;0.1&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;

        &lt;span class="nc"&gt;.card-header&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="nl"&gt;background&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;rgb&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
            &lt;span class="nl"&gt;border-top-left-radius&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;15px&lt;/span&gt; &lt;span class="cp"&gt;!important&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;border-top-right-radius&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;15px&lt;/span&gt; &lt;span class="cp"&gt;!important&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;transition&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;background&lt;/span&gt; &lt;span class="m"&gt;0.5s&lt;/span&gt; &lt;span class="n"&gt;ease-in-out&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;

        &lt;span class="nc"&gt;.form-control&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="nl"&gt;border-radius&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;10px&lt;/span&gt; &lt;span class="cp"&gt;!important&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;transition&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;border-color&lt;/span&gt; &lt;span class="m"&gt;0.5s&lt;/span&gt; &lt;span class="n"&gt;ease-in-out&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;

        &lt;span class="nc"&gt;.btn&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="nl"&gt;border-radius&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;10px&lt;/span&gt; &lt;span class="cp"&gt;!important&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;background&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;#000000&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;transition&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;background-color&lt;/span&gt; &lt;span class="m"&gt;0.5s&lt;/span&gt; &lt;span class="n"&gt;ease-in-out&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;transform&lt;/span&gt; &lt;span class="m"&gt;0.5s&lt;/span&gt; &lt;span class="n"&gt;ease-in-out&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;
        &lt;span class="nc"&gt;.alert&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="nl"&gt;border-radius&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;10px&lt;/span&gt; &lt;span class="cp"&gt;!important&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nl"&gt;animation&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;fadeIn&lt;/span&gt; &lt;span class="m"&gt;0.5s&lt;/span&gt; &lt;span class="n"&gt;ease-in-out&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;


        &lt;span class="k"&gt;@keyframes&lt;/span&gt; &lt;span class="n"&gt;fadeIn&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="nt"&gt;from&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                &lt;span class="nl"&gt;opacity&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="p"&gt;}&lt;/span&gt;

            &lt;span class="nt"&gt;to&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                &lt;span class="nl"&gt;opacity&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="p"&gt;}&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;/style&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;

&lt;span class="nt"&gt;&amp;lt;body&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"container mt-5"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"row justify-content-center"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
            &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"col-md-8 col-lg-6"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"card"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                    &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"card-header text-white"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                        &lt;span class="nt"&gt;&amp;lt;h3&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"text-center"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Future Value Calculator&lt;span class="nt"&gt;&amp;lt;/h3&amp;gt;&lt;/span&gt;
                    &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
                    &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"card-body"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                        &lt;span class="nt"&gt;&amp;lt;form&lt;/span&gt; &lt;span class="na"&gt;id=&lt;/span&gt;&lt;span class="s"&gt;"investmentForm"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"form-group"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                                &lt;span class="nt"&gt;&amp;lt;label&lt;/span&gt; &lt;span class="na"&gt;for=&lt;/span&gt;&lt;span class="s"&gt;"initialCapital"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Initial Capital&lt;span class="nt"&gt;&amp;lt;/label&amp;gt;&lt;/span&gt;
                                &lt;span class="nt"&gt;&amp;lt;input&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"number"&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"form-control"&lt;/span&gt; &lt;span class="na"&gt;id=&lt;/span&gt;&lt;span class="s"&gt;"initialCapital"&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"initialCapital"&lt;/span&gt;
                                    &lt;span class="na"&gt;required&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"form-group"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                                &lt;span class="nt"&gt;&amp;lt;label&lt;/span&gt; &lt;span class="na"&gt;for=&lt;/span&gt;&lt;span class="s"&gt;"monthlyDeposit"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Monthly Deposit&lt;span class="nt"&gt;&amp;lt;/label&amp;gt;&lt;/span&gt;
                                &lt;span class="nt"&gt;&amp;lt;input&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"number"&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"form-control"&lt;/span&gt; &lt;span class="na"&gt;id=&lt;/span&gt;&lt;span class="s"&gt;"monthlyDeposit"&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"monthlyDeposit"&lt;/span&gt;
                                    &lt;span class="na"&gt;required&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"form-group"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                                &lt;span class="nt"&gt;&amp;lt;label&lt;/span&gt; &lt;span class="na"&gt;for=&lt;/span&gt;&lt;span class="s"&gt;"rateOfReturn"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Annual Interest Rate&lt;span class="nt"&gt;&amp;lt;/label&amp;gt;&lt;/span&gt;
                                &lt;span class="nt"&gt;&amp;lt;input&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"number"&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"form-control"&lt;/span&gt; &lt;span class="na"&gt;id=&lt;/span&gt;&lt;span class="s"&gt;"rateOfReturn"&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"rateOfReturn"&lt;/span&gt;
                                    &lt;span class="na"&gt;required&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"form-group"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                                &lt;span class="nt"&gt;&amp;lt;label&lt;/span&gt; &lt;span class="na"&gt;for=&lt;/span&gt;&lt;span class="s"&gt;"inflationRate"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Annual Inflation Rate&lt;span class="nt"&gt;&amp;lt;/label&amp;gt;&lt;/span&gt;
                                &lt;span class="nt"&gt;&amp;lt;input&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"number"&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"form-control"&lt;/span&gt; &lt;span class="na"&gt;id=&lt;/span&gt;&lt;span class="s"&gt;"inflationRate"&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"inflationRate"&lt;/span&gt;
                                    &lt;span class="na"&gt;required&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"form-group"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                                &lt;span class="nt"&gt;&amp;lt;label&lt;/span&gt; &lt;span class="na"&gt;for=&lt;/span&gt;&lt;span class="s"&gt;"increaseRate"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Annual Increase Rate of Investments&lt;span class="nt"&gt;&amp;lt;/label&amp;gt;&lt;/span&gt;
                                &lt;span class="nt"&gt;&amp;lt;input&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"number"&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"form-control"&lt;/span&gt; &lt;span class="na"&gt;id=&lt;/span&gt;&lt;span class="s"&gt;"increaseRate"&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"increaseRate"&lt;/span&gt;
                                    &lt;span class="na"&gt;required&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"form-group"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                                &lt;span class="nt"&gt;&amp;lt;label&lt;/span&gt; &lt;span class="na"&gt;for=&lt;/span&gt;&lt;span class="s"&gt;"years"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Number of Years&lt;span class="nt"&gt;&amp;lt;/label&amp;gt;&lt;/span&gt;
                                &lt;span class="nt"&gt;&amp;lt;input&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"number"&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"form-control"&lt;/span&gt; &lt;span class="na"&gt;id=&lt;/span&gt;&lt;span class="s"&gt;"years"&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"years"&lt;/span&gt; &lt;span class="na"&gt;required&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;button&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"button"&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"btn btn-primary btn-block"&lt;/span&gt;
                                &lt;span class="na"&gt;onclick=&lt;/span&gt;&lt;span class="s"&gt;"checkFieldsAndCalculate()"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Calculate&lt;span class="nt"&gt;&amp;lt;/button&amp;gt;&lt;/span&gt;
                        &lt;span class="nt"&gt;&amp;lt;/form&amp;gt;&lt;/span&gt;

                        &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;id=&lt;/span&gt;&lt;span class="s"&gt;"results"&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"mt-3"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;p&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"alert alert-info"&lt;/span&gt; &lt;span class="na"&gt;id=&lt;/span&gt;&lt;span class="s"&gt;"resultWithoutInflation"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;p&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"alert alert-success"&lt;/span&gt; &lt;span class="na"&gt;id=&lt;/span&gt;&lt;span class="s"&gt;"resultWithInflation"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
                            &lt;span class="nt"&gt;&amp;lt;p&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"alert alert-warning"&lt;/span&gt; &lt;span class="na"&gt;id=&lt;/span&gt;&lt;span class="s"&gt;"totalInvested"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
                        &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;

                    &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
                &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
                &lt;span class="nt"&gt;&amp;lt;footer&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"text-center mt-5"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                    &lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;With ❤️ by &lt;span class="nt"&gt;&amp;lt;b&amp;gt;&lt;/span&gt;Lakshit Somani&lt;span class="nt"&gt;&amp;lt;/b&amp;gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
                    &lt;span class="nt"&gt;&amp;lt;a&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"https://www.linkedin.com/in/lakshit-somani"&lt;/span&gt; &lt;span class="na"&gt;target=&lt;/span&gt;&lt;span class="s"&gt;"_blank"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                        &lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://cdn-icons-png.flaticon.com/512/174/174857.png"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"LinkedIn"&lt;/span&gt;
                            &lt;span class="na"&gt;style=&lt;/span&gt;&lt;span class="s"&gt;"width: 30px; margin: 0 10px;"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                    &lt;span class="nt"&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;
                    &lt;span class="nt"&gt;&amp;lt;a&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"https://github.com/lakshits11"&lt;/span&gt; &lt;span class="na"&gt;target=&lt;/span&gt;&lt;span class="s"&gt;"_blank"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                        &lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://cdn-icons-png.flaticon.com/512/25/25231.png"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"GitHub"&lt;/span&gt;
                            &lt;span class="na"&gt;style=&lt;/span&gt;&lt;span class="s"&gt;"width: 30px; margin: 0 10px;"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                    &lt;span class="nt"&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;
                &lt;span class="nt"&gt;&amp;lt;/footer&amp;gt;&lt;/span&gt;
            &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;

    &lt;span class="nt"&gt;&amp;lt;script&amp;gt;&lt;/span&gt;
        &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;investmentForm&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;addEventListener&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;submit&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nf"&gt;function &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;event&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="nx"&gt;event&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;preventDefault&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt; &lt;span class="c1"&gt;// Prevent the form from submitting&lt;/span&gt;
            &lt;span class="nf"&gt;checkFieldsAndCalculate&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
        &lt;span class="p"&gt;});&lt;/span&gt;

        &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;checkFieldsAndCalculate&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;form&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;investmentForm&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
            &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;inputs&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;form&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;querySelectorAll&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;input&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
            &lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;allFieldsFilled&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

            &lt;span class="c1"&gt;// Check if all fields are filled and highlight empty fields&lt;/span&gt;
            &lt;span class="nx"&gt;inputs&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;forEach&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;input&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                &lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="nx"&gt;input&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                    &lt;span class="nx"&gt;input&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;borderColor&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;red&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; 
                    &lt;span class="nx"&gt;input&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;borderWidth&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;1.5px&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
                    &lt;span class="nx"&gt;allFieldsFilled&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
                &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;else&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                    &lt;span class="nx"&gt;input&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;borderColor&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;''&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="c1"&gt;// Reset the border color if filled&lt;/span&gt;
                &lt;span class="p"&gt;}&lt;/span&gt;
            &lt;span class="p"&gt;});&lt;/span&gt;

            &lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;allFieldsFilled&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                &lt;span class="nf"&gt;calculateFutureValue&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
            &lt;span class="p"&gt;}&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;

        &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;calculateFutureValue&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;P&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;parseFloat&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;initialCapital&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
            &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;parseFloat&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;monthlyDeposit&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
            &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;r&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;parseFloat&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;rateOfReturn&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="mi"&gt;100&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;parseFloat&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;inflationRate&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="mi"&gt;100&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;z&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;parseFloat&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;increaseRate&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="mi"&gt;100&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;t&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;parseFloat&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;years&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

            &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;monthlyRate&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;r&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="mi"&gt;12&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;totalMonths&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;t&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mi"&gt;12&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

            &lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;futureValueWithoutInflation&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;P&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;pow&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;monthlyRate&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;totalMonths&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
            &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;effectiveMonthlyRate&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;r&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="mi"&gt;12&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="mi"&gt;12&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;futureValueWithInflation&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;P&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;pow&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;effectiveMonthlyRate&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;totalMonths&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
            &lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;totalInvested&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;P&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

            &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;year&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;year&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;=&lt;/span&gt; &lt;span class="nx"&gt;t&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;year&lt;/span&gt;&lt;span class="o"&gt;++&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;month&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;month&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;=&lt;/span&gt; &lt;span class="mi"&gt;12&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;month&lt;/span&gt;&lt;span class="o"&gt;++&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                    &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;n&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;year&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mi"&gt;12&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;month&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
                    &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;adjustedDeposit&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;x&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;pow&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;z&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;year&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
                    &lt;span class="nx"&gt;totalInvested&lt;/span&gt; &lt;span class="o"&gt;+=&lt;/span&gt; &lt;span class="nx"&gt;adjustedDeposit&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
                    &lt;span class="nx"&gt;futureValueWithoutInflation&lt;/span&gt; &lt;span class="o"&gt;+=&lt;/span&gt; &lt;span class="nx"&gt;adjustedDeposit&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;pow&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;monthlyRate&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;totalMonths&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="nx"&gt;n&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
                    &lt;span class="nx"&gt;futureValueWithInflation&lt;/span&gt; &lt;span class="o"&gt;+=&lt;/span&gt; &lt;span class="nx"&gt;adjustedDeposit&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;pow&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;effectiveMonthlyRate&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;totalMonths&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="nx"&gt;n&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
                &lt;span class="p"&gt;}&lt;/span&gt;
            &lt;span class="p"&gt;}&lt;/span&gt;

            &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;returnWithoutInflation&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;((&lt;/span&gt;&lt;span class="nx"&gt;futureValueWithoutInflation&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="nx"&gt;totalInvested&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="nx"&gt;totalInvested&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mi"&gt;100&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;returnWithInflation&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;((&lt;/span&gt;&lt;span class="nx"&gt;futureValueWithInflation&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="nx"&gt;totalInvested&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="nx"&gt;totalInvested&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mi"&gt;100&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

            &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;resultWithoutInflation&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;innerText&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;`Future Value without Inflation: &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;futureValueWithoutInflation&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;toFixed&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;)}&lt;/span&gt;&lt;span class="s2"&gt; (&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;returnWithoutInflation&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;toFixed&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;)}&lt;/span&gt;&lt;span class="s2"&gt;%)`&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;resultWithInflation&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;innerText&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;`Future Value with Inflation: &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;futureValueWithInflation&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;toFixed&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;)}&lt;/span&gt;&lt;span class="s2"&gt; (&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;returnWithInflation&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;toFixed&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;)}&lt;/span&gt;&lt;span class="s2"&gt;%)`&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;totalInvested&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;innerText&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;`Total Amount Invested: &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;totalInvested&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;toFixed&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;)}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

            &lt;span class="c1"&gt;// Show results&lt;/span&gt;
            &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;querySelectorAll&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;.alert&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;forEach&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;alert&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                &lt;span class="nx"&gt;alert&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;display&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;block&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
                &lt;span class="nx"&gt;alert&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;animation&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;fadeIn 0.5s ease-in-out&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
            &lt;span class="p"&gt;});&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;

        &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;investmentForm&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;addEventListener&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;keydown&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nf"&gt;function &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;event&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;event&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;key&lt;/span&gt; &lt;span class="o"&gt;===&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Enter&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                &lt;span class="nx"&gt;event&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;preventDefault&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
                &lt;span class="nf"&gt;checkFieldsAndCalculate&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
            &lt;span class="p"&gt;}&lt;/span&gt;
        &lt;span class="p"&gt;});&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;

    &lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;defer&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"/_vercel/insights/script.js"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://code.jquery.com/jquery-3.5.1.slim.min.js"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://cdn.jsdelivr.net/npm/@popperjs/core@2.7.0/dist/umd/popper.min.js"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/body&amp;gt;&lt;/span&gt;

&lt;span class="nt"&gt;&amp;lt;/html&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Try It Out for Yourself!
&lt;/h2&gt;

&lt;p&gt;Ready to start planning your financial future? Head over to the &lt;a href="https://futurevaluecalculator.vercel.app/" rel="noopener noreferrer"&gt;live demo&lt;/a&gt; and give the Future Value Calculator a try. Whether you're saving for retirement, a big purchase, or just curious about your investment potential, this tool will give you the insights you need to make informed decisions.&lt;/p&gt;

&lt;p&gt;Happy Coding and Investing :)&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Supercharge your Coding Motivation: A Complete Guide to modify VS Code looks ! 🚀🔥</title>
      <dc:creator>Lakshit Somani</dc:creator>
      <pubDate>Fri, 10 Nov 2023 16:05:19 +0000</pubDate>
      <link>https://dev.to/lakshitsomani/supercharge-your-productivity-a-complete-guide-to-modify-vs-code-looks--1bhj</link>
      <guid>https://dev.to/lakshitsomani/supercharge-your-productivity-a-complete-guide-to-modify-vs-code-looks--1bhj</guid>
      <description>&lt;p&gt;&lt;a href="https://media.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%2Flxxyawrfahy0rfd7qi2p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Flxxyawrfahy0rfd7qi2p.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;[Note: Trust me this blog has new things you have never even heard of)&lt;/p&gt;

&lt;p&gt;Does your editor also looks like above? Bored up of your regular VS Code themes? Using those same fonts since starting? Want to level up your VS Code environment to make it look THE BEST ??&lt;/p&gt;

&lt;p&gt;Save this post cause today I am gonna show you exactly that!&lt;br&gt;
I will be showing you how to transform your regular old boring vscode to a completely new looking editor!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 1: Pre Requisites&lt;/strong&gt;&lt;br&gt;
The first and foremost thing you need is VS Code 😂. Okay I know that you had that :) Anyways we are going to download some things.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 2: Nerd Fonts and Inter Font&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Nerd fonts are fonts which support ligatures and have hundreds of different glyph icons which are not present in your OS fonts.&lt;/p&gt;

&lt;p&gt;Go to &lt;a href="https://www.nerdfonts.com/font-downloads" rel="noopener noreferrer"&gt;this website&lt;/a&gt; and download some monospaced nerd fonts. For the sake of this tutorial, I am gonna advise you to download Fira Code, Jetbrains Mono, Victor Mono for this tutorial. Also install the above downloaded fonts.&lt;/p&gt;

&lt;p&gt;Download and install the nerd fonts on your respective OS.&lt;/p&gt;

&lt;p&gt;Now go to your VS Code. Open settings by pressing &lt;code&gt;Ctrl/Cmd + ,&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;In the &lt;code&gt;Editor: Font Family&lt;/code&gt; section, change font name to &lt;code&gt;JetbrainsMono Nerd Font&lt;/code&gt;. See below image for reference.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fzx13r8ccm4lffmv5fzzr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fzx13r8ccm4lffmv5fzzr.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So now our editor looks a little bit nice, ain't it?&lt;/p&gt;

&lt;p&gt;Now you also need to download and install 'Inter' font.&lt;br&gt;
Go here: &lt;a href="https://rsms.me/inter/" rel="noopener noreferrer"&gt;https://rsms.me/inter/&lt;/a&gt;&lt;br&gt;
And download it, install it. We will use it later.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fzs6npywd9payamdwbe19.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fzs6npywd9payamdwbe19.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step3: Install Themes&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Now we are gonna be installing some themes. Go to VS Code and search for this theme: &lt;code&gt;Best Themes Redefined&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fo0lgx3owjsymq19y000h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fo0lgx3owjsymq19y000h.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hit that install button and BOOM 💥 .&lt;/p&gt;

&lt;p&gt;SO MANY DIFFERENT THEMES !! ALL UNDER ONE! SELECT THE ONE WHICH SUITS BEST TO YOU.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 4: (ONLY FOR WINDOWS, NOT NEEDED ON MACOS) Install Mactype&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Mactype is an application used to improve font rendering on Windows. Install Mactype from here: &lt;a href="https://github.com/snowie2000/mactype/releases/download/v1.2023.5.31/mactype-20230531.zip" rel="noopener noreferrer"&gt;https://github.com/snowie2000/mactype/releases/download/v1.2023.5.31/mactype-20230531.zip&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And install it. Now open Mactray, select run as windows service. Click Next. On next screen, select default profile. Click finish. You are good to go!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 5: Customizing VS Code UI&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Dowload Custom CSS and JS Loader.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.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%2Flb0ihf2q0if1yo5akfr7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Flb0ihf2q0if1yo5akfr7.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now you need to create a css file at a location of your choice in your os. Since I am using Windows here for this tutorial, I am creating it at &lt;code&gt;C:/Users/Username/.local/customcss.css&lt;/code&gt;. Now remember this location.&lt;/p&gt;

&lt;p&gt;Open VS Code, press &lt;code&gt;Ctrl/Cmd+Shift+P&lt;/code&gt;, type open user settings json.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.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%2Febdm1w8z1daed595rizt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Febdm1w8z1daed595rizt.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Add following line to it:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="nl"&gt;"vscode_custom_css.imports"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;

 &lt;/span&gt;&lt;span class="s2"&gt;"file:///C:/Users/username/.local/customcssforvscode.css"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="err"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media.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%2F0l22nea9jo4wrmdlalli.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2F0l22nea9jo4wrmdlalli.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Path name will differ for different OS and users.&lt;/p&gt;

&lt;p&gt;Now open the css file you created and add following lines to it. &lt;code&gt;.windows&lt;/code&gt; class is only for windows. Use &lt;code&gt;.linux&lt;/code&gt; OR &lt;code&gt;.mac&lt;/code&gt; for your OS respectively.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nc"&gt;.windows&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;font-family&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;"Inter"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;-webkit-text-stroke-width&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;0.2px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="c"&gt;/* not needed on macos */&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="nc"&gt;.mtki&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;font-family&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;VictorMono&lt;/span&gt; &lt;span class="n"&gt;Nerd&lt;/span&gt; &lt;span class="n"&gt;Font&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;em&gt;What does it do?&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
Giving stroke width improves font display on Windows and Linux. We are also changing font family of the UI to Inter.&lt;/p&gt;

&lt;p&gt;Modifying properties in mtki class control the italic font behaviours in VS Code. We changed italic font family to our desired font.&lt;/p&gt;

&lt;p&gt;You can modify these as much as you want.&lt;/p&gt;

&lt;p&gt;And save it.&lt;/p&gt;

&lt;p&gt;Now press &lt;code&gt;Ctrl/Cmd+Shift+P&lt;/code&gt;, type enable custom css and js, and press enter. Restart VS Code as instructed&lt;/p&gt;

&lt;p&gt;Voila!! A complete different and new looking VS Code.&lt;/p&gt;

&lt;p&gt;You will notice all italic fonts are now looking very very good.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fmfrajl5iw3wffkcftmf3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fmfrajl5iw3wffkcftmf3.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is how it will look after doing above customisations.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 6: Customising Title Bar&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Press &lt;code&gt;Ctrl/Cmd + ,&lt;/code&gt;, type &lt;code&gt;window.title&lt;/code&gt;. You will get a input box like below.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.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%2F5fxpii2xm46k32bhbmk1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2F5fxpii2xm46k32bhbmk1.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now type whatever you think is right for you. I just type file name and my name. You can do as you like.&lt;/p&gt;

&lt;p&gt;Also change title bar style to custom.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fz52m1izsk89x9yf0jq0h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fz52m1izsk89x9yf0jq0h.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;///////////////////////////////////&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Everything is complete. Now you have a completely new looking VS Code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;///////////////////////////////////&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;More customisations include messing with settings in View Menu. You can enable different modes such as zen mode etc to get a more focused editor environment.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;///////////////////////////////////&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Hope you liked my blog. LIKE AND SHARE IT!&lt;/p&gt;

</description>
      <category>programming</category>
      <category>tutorial</category>
      <category>beginners</category>
      <category>vscode</category>
    </item>
    <item>
      <title>The last extension you need in VSCode : The Perfect, Ultimate Theme Extension</title>
      <dc:creator>Lakshit Somani</dc:creator>
      <pubDate>Wed, 01 Nov 2023 12:54:02 +0000</pubDate>
      <link>https://dev.to/lakshitsomani/the-last-extension-you-need-in-vscode-the-perfect-ultimate-theme-extension-592l</link>
      <guid>https://dev.to/lakshitsomani/the-last-extension-you-need-in-vscode-the-perfect-ultimate-theme-extension-592l</guid>
      <description>&lt;p&gt;Yes, you read that right. For all the developer community out there, I tried to make the ultimate VS Code themes extension plugin to help you out there. Now you don't have to spend hours searching for the &lt;strong&gt;&lt;em&gt;Perfect Theme&lt;/em&gt;&lt;/strong&gt; suitable to your needs because I have done so. ✨&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ynt41tcH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://lakshits11.gallerycdn.vsassets.io/extensions/lakshits11/best-themes-redefined/0.4.0/1698478867336/Microsoft.VisualStudio.Services.Icons.Default" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ynt41tcH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://lakshits11.gallerycdn.vsassets.io/extensions/lakshits11/best-themes-redefined/0.4.0/1698478867336/Microsoft.VisualStudio.Services.Icons.Default" alt="Logo of Best Themes Redefined" width="128" height="128"&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;🎨🚀 Best Themes Redefined is a collection like no other, featuring 53 hand-crafted themes that you won't find anywhere else on the internet. I've taken the best themes out there and customized them just for you. 💥&lt;/p&gt;

&lt;h4&gt;
  
  
  I've also added some unique themes that I've personally created. So not only will you discover the most sought-after themes, but you'll also find hidden gems you won't want to miss. It's time to take your coding experience to a whole new level with Best Themes Redefined! 💎
&lt;/h4&gt;

&lt;p&gt;Try them today itself for &lt;strong&gt;ABSOLUTELY FREE !!&lt;/strong&gt; ✨&lt;/p&gt;

&lt;h2&gt;
  
  
  Theme List
&lt;/h2&gt;

&lt;p&gt;Here's a full list of the themes included in the Best Themes Redefined extension:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Best Themes - Ayu Darkvenom&lt;/li&gt;
&lt;li&gt;Best Themes - Blueberry Banana&lt;/li&gt;
&lt;li&gt;Best Themes - Brogrammer&lt;/li&gt;
&lt;li&gt;Best Themes - Calm Darkvenom&lt;/li&gt;
&lt;li&gt;Best Themes - Catppuccin&lt;/li&gt;
&lt;li&gt;Best Themes - Darcula&lt;/li&gt;
&lt;li&gt;Best Themes - Darcula Darker&lt;/li&gt;
&lt;li&gt;Best Themes - Dark Phoenix&lt;/li&gt;
&lt;li&gt;Best Themes - Darwin&lt;/li&gt;
&lt;li&gt;Best Themes - Dracula Redefined No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Dracula Redefined&lt;/li&gt;
&lt;li&gt;Best Themes - Gruvbox Dark&lt;/li&gt;
&lt;li&gt;Best Themes - Gruvbox Material Dark&lt;/li&gt;
&lt;li&gt;Best Themes - Gruvbox Concoctis Dark&lt;/li&gt;
&lt;li&gt;Best Themes - Gruvbox NvChad&lt;/li&gt;
&lt;li&gt;Best Themes - Horizon&lt;/li&gt;
&lt;li&gt;Best Themes - Karma&lt;/li&gt;
&lt;li&gt;Best Themes - Laserwave&lt;/li&gt;
&lt;li&gt;Best Themes - Laserwave Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Material Black No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Material Black Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Material High Contrast No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Material High Contrast Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Material Ocean No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Material Ocean Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Awesome&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Black&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Night Time Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Night Time No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Pirokai Arctic Frost&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Pirokai Beach Sunset&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Winter Night&lt;/li&gt;
&lt;li&gt;Best Themes - Mystic Cyan&lt;/li&gt;
&lt;li&gt;Best Themes - Neon City Darkvenom&lt;/li&gt;
&lt;li&gt;Best Themes - Night Owl&lt;/li&gt;
&lt;li&gt;Best Themes - Night Owl No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Nord Cold&lt;/li&gt;
&lt;li&gt;Best Themes - Nord Dark&lt;/li&gt;
&lt;li&gt;Best Themes - Ocean Night&lt;/li&gt;
&lt;li&gt;Best Themes - One Dark Pro&lt;/li&gt;
&lt;li&gt;Best Themes - One Dark Pro No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - One Monokai&lt;/li&gt;
&lt;li&gt;Best Themes - One Monokai Darker&lt;/li&gt;
&lt;li&gt;Best Themes - Outrun Space&lt;/li&gt;
&lt;li&gt;Best Themes - Panda Syntax&lt;/li&gt;
&lt;li&gt;Best Themes - Pink Panther&lt;/li&gt;
&lt;li&gt;Best Themes - Sia Synthwave&lt;/li&gt;
&lt;li&gt;Best Themes - Slime&lt;/li&gt;
&lt;li&gt;Best Themes - Snazzy&lt;/li&gt;
&lt;li&gt;Best Themes - Synthwave Black(No Neon)&lt;/li&gt;
&lt;li&gt;Best Themes - Xcode Catalina&lt;/li&gt;
&lt;li&gt;Best Themes - Xcode Catalina Bold&lt;/li&gt;
&lt;li&gt;Best Themes - Xcode Fusion&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;MIND BLOWN ??&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Installation Guide 📥💻
&lt;/h3&gt;

&lt;p&gt;Follow these simple steps to install Best Themes Redefined and elevate your coding environment:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Method 1: Directly Inside VS Code&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Launch Visual Studio Code. 🚀&lt;/li&gt;
&lt;li&gt;Go to the Extensions view by clicking on the square icon in the sidebar or pressing Ctrl+Shift+X (Cmd+Shift+X on macOS). 💡&lt;/li&gt;
&lt;li&gt;Search for "Best Themes Redefined" in the extensions marketplace. 🔍🌐&lt;/li&gt;
&lt;li&gt;Click Install to add the extension to your workspace. ⚙️✅&lt;/li&gt;
&lt;li&gt;Once installed, click on the gear icon in the lower left corner to open the settings menu. ⚙️🔧
Select Color Theme and choose your desired theme from the extensive list provided by Best Themes Redefined. 🌈🎨&lt;/li&gt;
&lt;li&gt;Voila! Your code editor is now adorned with the beauty of your chosen theme. 🎉✨&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Method 2: VS Code Extension Marketplace&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=lakshits11.best-themes-redefined"&gt;&lt;strong&gt;CLICK ME, I WANT BEST THEMES REDEFINED FOR FREE&lt;/strong&gt;&lt;/a&gt;" 🌟&lt;/p&gt;

&lt;p&gt;Do give me a review !&lt;/p&gt;

</description>
      <category>programming</category>
      <category>vscode</category>
      <category>themes</category>
      <category>productivity</category>
    </item>
    <item>
      <title>You will not need another VSCode theme extension ever again after this 👉</title>
      <dc:creator>Lakshit Somani</dc:creator>
      <pubDate>Sun, 21 May 2023 18:42:22 +0000</pubDate>
      <link>https://dev.to/lakshitsomani/you-will-not-need-another-vscode-theme-extension-ever-again-after-this-383a</link>
      <guid>https://dev.to/lakshitsomani/you-will-not-need-another-vscode-theme-extension-ever-again-after-this-383a</guid>
      <description>&lt;p&gt;Unleash the power of Best Themes Redefined and bid farewell to the endless pursuit of the perfect VSCode/VSCodium theme. Brace yourself for a coding revolution unlike any other. Say goodbye to the never-ending cycle of theme hopping and embrace the one-stop solution that will redefine your coding journey for eternity. With Best Themes Redefined, your quest for the ultimate theme ends here. Immerse yourself in a world of breathtaking designs, vibrant hues, and unparalleled customization options. Elevate your coding experience to new heights and experience a level of productivity and inspiration you never thought possible. Get ready to say, "I have found the holy grail of VSCode themes!" 🎨💥✨&lt;/p&gt;

&lt;h2&gt;
  
  
  Best Themes Redefined 🎨✨
&lt;/h2&gt;

&lt;p&gt;🎨🚀 A distinguished collection of 51 meticulously crafted themes that strike the perfect balance between aesthetics and functionality. 💻&lt;/p&gt;

&lt;h2&gt;
  
  
  Immerse Yourself in Beauty and Creativity 🌈
&lt;/h2&gt;

&lt;p&gt;Unleash your imagination and surround yourself with a stunning array of vibrant, visually captivating themes. Best Themes Redefined offers an extensive collection of &lt;strong&gt;51 meticulously crafted themes&lt;/strong&gt;, each crafted to bring out the best in your code. Immerse yourself in a world of vibrant colors, stunning contrasts, and carefully selected palettes, meticulously designed to enhance your productivity and bring your code to life. Let your creativity soar as you explore the diverse range of themes offered in this extension. Each theme is thoughtfully curated, with its own unique personality, to cater to every coder's taste and preference.&lt;/p&gt;

&lt;h2&gt;
  
  
  Theme List
&lt;/h2&gt;

&lt;p&gt;Here's a full list of the 51 themes included in the Best Themes Redefined extension:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Best Themes - Blueberry Banana&lt;/li&gt;
&lt;li&gt;Best Themes - Brogrammer&lt;/li&gt;
&lt;li&gt;Best Themes - Darcula Darker&lt;/li&gt;
&lt;li&gt;Best Themes - Darcula&lt;/li&gt;
&lt;li&gt;Best Themes - Dark Phoenix&lt;/li&gt;
&lt;li&gt;Best Themes - Darwin&lt;/li&gt;
&lt;li&gt;Best Themes - Default Dark Plus Black&lt;/li&gt;
&lt;li&gt;Best Themes - Dracula Redefined No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Dracula Redefined&lt;/li&gt;
&lt;li&gt;Best Themes - Electron 2&lt;/li&gt;
&lt;li&gt;Best Themes - Electron&lt;/li&gt;
&lt;li&gt;Best Themes - Gruvbox Concoctis Dark&lt;/li&gt;
&lt;li&gt;Best Themes - Gruvbox Dark&lt;/li&gt;
&lt;li&gt;Best Themes - Gruvbox Material Dark&lt;/li&gt;
&lt;li&gt;Best Themes - Gruvbox NvChad&lt;/li&gt;
&lt;li&gt;Best Themes - Horizon&lt;/li&gt;
&lt;li&gt;Best Themes - Karma&lt;/li&gt;
&lt;li&gt;Best Themes - Laserwave Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Laserwave&lt;/li&gt;
&lt;li&gt;Best Themes - Material Black Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Material Black No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Material High Contrast Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Material High Contrast No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Material Ocean Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Material Ocean No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Awesome&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Black&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Night Time Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Night Time No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Pirokai Arctic Frost&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Pirokai Beach Sunset&lt;/li&gt;
&lt;li&gt;Best Themes - Monokai Winter Night&lt;/li&gt;
&lt;li&gt;Best Themes - Mystic Cyan&lt;/li&gt;
&lt;li&gt;Best Themes - Neon City&lt;/li&gt;
&lt;li&gt;Best Themes - Night Owl No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - Night Owl&lt;/li&gt;
&lt;li&gt;Best Themes - Nord Cold&lt;/li&gt;
&lt;li&gt;Best Themes - Nord Dark&lt;/li&gt;
&lt;li&gt;Best Themes - Ocean Night&lt;/li&gt;
&lt;li&gt;Best Themes - One Dark Pro No Italic&lt;/li&gt;
&lt;li&gt;Best Themes - One Dark Pro&lt;/li&gt;
&lt;li&gt;Best Themes - One Monokai Darker&lt;/li&gt;
&lt;li&gt;Best Themes - One Monokai&lt;/li&gt;
&lt;li&gt;Best Themes - Outrun Space&lt;/li&gt;
&lt;li&gt;Best Themes - Panda Syntax&lt;/li&gt;
&lt;li&gt;Best Themes - Pink Panther&lt;/li&gt;
&lt;li&gt;Best Themes - Sia Synthwave&lt;/li&gt;
&lt;li&gt;Best Themes - Synthwave Black(No Neon)&lt;/li&gt;
&lt;li&gt;Best Themes - Xcode Catalina Bold&lt;/li&gt;
&lt;li&gt;Best Themes - Xcode Catalina&lt;/li&gt;
&lt;li&gt;Best Themes - Xcode Fusion&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Installation Guide 📥💻
&lt;/h2&gt;

&lt;p&gt;Download using this link : &lt;a href="https://marketplace.visualstudio.com/items?itemName=lakshits11.best-themes-redefined"&gt;https://marketplace.visualstudio.com/items?itemName=lakshits11.best-themes-redefined&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;OR&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Follow these simple steps to install Best Themes Redefined and elevate your coding environment in editor itself:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Launch Visual Studio Code.&lt;/strong&gt; 🚀&lt;/li&gt;
&lt;li&gt;Go to the &lt;strong&gt;Extensions&lt;/strong&gt; view by clicking on the square icon in the sidebar or pressing &lt;code&gt;Ctrl+Shift+X&lt;/code&gt; (&lt;code&gt;Cmd+Shift+X&lt;/code&gt; on macOS). 💡&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Search for "Best Themes Redefined"&lt;/strong&gt; in the extensions marketplace. 🔍🌐&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;Install&lt;/strong&gt; to add the extension to your workspace. ⚙️✅&lt;/li&gt;
&lt;li&gt;Once installed, click on the gear icon in the lower left corner to open the settings menu. ⚙️🔧&lt;/li&gt;
&lt;li&gt;Select &lt;strong&gt;Color Theme&lt;/strong&gt; and choose your desired theme from the extensive list provided by Best Themes Redefined. 🌈🎨&lt;/li&gt;
&lt;li&gt;Voila! Your code editor is now adorned with the beauty of your chosen theme. 🎉✨&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Recommended Settings for the Best Experience 🔧💡⚙️
&lt;/h2&gt;

&lt;p&gt;To make the most of Best Themes Redefined, we recommend configuring the following settings:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Use Nerd Font&lt;/strong&gt; ✒️: Best Themes Redefined truly shines when paired with a Nerd Font. Install a Nerd Font of your choice, such as Fira Code Nerd Font or JetBrains Mono Nerd Font, and set it as your editor's font family to unlock the full visual potential of the themes. 💪🔤&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Enable Ligatures&lt;/strong&gt;: Ligatures are a typographic feature that combine two or more characters into a single glyph. We recommend enabling ligatures for an enhanced coding experience.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To further enhance your productivity and coding experience, we recommend these additional VS Code settings:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.fontFamily"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"'JetbrainsMono Nerd Font', 'FiraCode Nerd Font', 'Hack Nerd Font', 'monospace'"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.smoothScrolling"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"terminal.integrated.fontFamily"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"'JetbrainsMono Nerd Font', 'FiraCode Nerd Font', 'Hack Nerd Font', 'monospace'"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"terminal.integrated.lineHeight"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mf"&gt;1.5&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.fontLigatures"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.lineHeight"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mf"&gt;1.5&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.minimap.enabled"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.tabSize"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"workbench.iconTheme"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"material-icon-theme"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.semanticTokenColorCustomizations"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"enabled"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.semanticHighlighting.enabled"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;These settings will harmonize seamlessly with Best Themes Redefined, ensuring a visually cohesive and productive coding environment. 💼💻&lt;/p&gt;

&lt;h2&gt;
  
  
  About the Developer ✨👩‍💻
&lt;/h2&gt;

&lt;p&gt;Hey there! 👋 Best Themes Redefined is developed and maintained by me  [&lt;a href="https://www.github.com/lakshits11"&gt;https://www.github.com/lakshits11&lt;/a&gt;].&lt;/p&gt;

&lt;p&gt;As a passionate software engineer, I thrive on innovative ideas and customizations that elevate the coding experience. With an artistic flair and technical expertise, I craft visually stunning themes that push the boundaries of creativity. Collaborating with developers worldwide, I continuously refine and enhance the collection to inspire productivity and ignite imagination. Join me on this exciting journey as we redefine coding aesthetics, making every line of code a work of art. Together, let's shape the future of development and unlock new realms of possibility. 💡🎨💻&lt;/p&gt;

&lt;h2&gt;
  
  
  Get Started with Best Themes Redefined Today! 🚀🎉
&lt;/h2&gt;

&lt;p&gt;Get ready to embark on a coding journey like no other with Best Themes Redefined. Let your creativity soar as you dive into the depths of these captivating themes, invigorating your coding experience with every keystroke. 💪🚀&lt;/p&gt;

&lt;p&gt;Install the extension, choose your favorite theme, and let the beauty and creativity unfold before your eyes. Elevate your productivity, enjoy coding like never before, and watch your imagination take flight. Happy coding! 🌈💻✨&lt;/p&gt;

&lt;h2&gt;
  
  
  Share Your Feedback and Spread the Word 🗣️🌟
&lt;/h2&gt;

&lt;p&gt;We value your feedback and would love to hear your thoughts on Best Themes Redefined. If you have any suggestions, feature requests, or just want to share your experience, don't hesitate to reach out to us. Your feedback helps us improve and create even better themes for you. 📣🤝&lt;/p&gt;

&lt;p&gt;If you find Best Themes Redefined to be a productivity-boosting addition to your coding arsenal, we encourage you to share it with your fellow developers and friends. Let them experience the beauty and creativity that Best Themes Redefined brings to their coding environment. Together, we can create a community of inspired coders using the best themes out there! 🌟💻&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Github Repo: &lt;a href="https://github.com/lakshits11/best-themes-redefined"&gt;here&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>[Part 2] 🚀: I bet you have never used this VS Code theme. Ever. ⚡(Maybe ?)</title>
      <dc:creator>Lakshit Somani</dc:creator>
      <pubDate>Thu, 18 May 2023 08:23:56 +0000</pubDate>
      <link>https://dev.to/lakshitsomani/part-2-i-bet-you-have-never-used-this-vs-code-theme-ever-c99</link>
      <guid>https://dev.to/lakshitsomani/part-2-i-bet-you-have-never-used-this-vs-code-theme-ever-c99</guid>
      <description>&lt;p&gt;So here we are again 😁. For viewers not knowing the title backstory, click here to know it: &lt;a href="https://dev.to/lakshitsomani/i-bet-you-have-never-used-this-theme-ever-mg6"&gt;I bet you have never used this theme. Ever.&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Part 1:&lt;/em&gt;&lt;/strong&gt; Click here to check a new theme: &lt;a href="https://marketplace.visualstudio.com/items?itemName=lakshits11.neon-city"&gt;Neon City&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Part 2:&lt;/em&gt;&lt;/strong&gt; So here, I am back again to introduce you to a brand new theme I created:&lt;/p&gt;

&lt;h2&gt;
  
  
  Monokai Pirokai 🎨🔥
&lt;/h2&gt;

&lt;p&gt;Elevate your coding experience with Monokai Pirokai - the ultimate VS Code theme that combines the vibrant colors of Monokai Pro 🔴💚🔵 with a sleek, dark background for maximum style and functionality. With two variants - Arctic Frost 🌬️ and Beach Sunset 🌅 - Monokai Pirokai is the perfect choice for developers who demand both style and substance.&lt;/p&gt;

&lt;h2&gt;
  
  
  Features 🚀
&lt;/h2&gt;

&lt;p&gt;Monokai Pirokai is designed to make your coding environment both stylish and productive. Its vibrant colors and sleek design make it easy on the eyes 👀, while its syntax highlighting and clear contrast between different elements make coding faster and more accurate than ever before.&lt;/p&gt;

&lt;p&gt;Monokai Pirokai also includes the following features:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🌟 Two variants - Arctic Frost and Beach Sunset - to suit any coding style.&lt;/li&gt;
&lt;li&gt;🌟 Easy-to-read syntax highlighting for maximum productivity.&lt;/li&gt;
&lt;li&gt;🌟 Clear contrast between different elements for faster and more accurate coding.&lt;/li&gt;
&lt;li&gt;🌟 Sleek and modern design that looks great on any screen.&lt;/li&gt;
&lt;li&gt;🌟 Compatible with a wide range of popular VS Code extensions.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Installation 💻
&lt;/h2&gt;

&lt;p&gt;One way is to &lt;code&gt;Install&lt;/code&gt; directly from Visual Studio Code Marketplace : &lt;a href="https://marketplace.visualstudio.com/items?itemName=lakshits11.monokai-pirokai"&gt;Monokai Pirokai 🚀 at VS Code Marketplace&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To install Monokai Pirokai, follow these easy steps:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open the Extensions view in VS Code by clicking on the Extensions button in the Activity Bar on the side of the VS Code window (or press &lt;code&gt;Ctrl+Shift+X&lt;/code&gt;).&lt;/li&gt;
&lt;li&gt;Search for "Monokai Pirokai" in the search bar.&lt;/li&gt;
&lt;li&gt;Click the "Install" button to install the theme.&lt;/li&gt;
&lt;li&gt;Once installation is complete, click the "Reload" button to activate the new theme.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Recommended VS Code Settings ⚙️
&lt;/h2&gt;

&lt;p&gt;💻 To get the most out of Monokai Pirokai, we recommend the following settings:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Use a Nerd Font&lt;/strong&gt; : Nerd Fonts are a collection of fonts that add additional glyphs to your editor, such as icons for programming languages and tools. We recommend installing a Nerd Font and using it with Neon City for an enhanced coding experience. See &lt;a href="https://github.com/ryanoasis/nerd-fonts"&gt;this nerd font repo&lt;/a&gt; for a list of Nerd Fonts.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Enable Ligatures&lt;/strong&gt; : Ligatures are a typographic feature that combine two or more characters into a single glyph. We recommend enabling ligatures for an enhanced coding experience.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;💡 In addition to these settings, we recommend the following VS Code settings:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"workbench.colorTheme"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Monokai Pirokai - Arctic Frost"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.fontFamily"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"'Fira Code Nerd Font', 'Jetbrains Mono Nerd Font', 'Hack Nerd Font', 'monospace'"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.lineHeight"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mf"&gt;1.5&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.smoothScrolling"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.fontLigatures"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.minimap.enabled"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"editor.tabSize"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"terminal.integrated.fontFamily"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"'Fira Code Nerd Font', 'Jetbrains Mono Nerd Font', 'Hack Nerd Font', 'monospace'"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"terminal.integrated.lineHeight"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mf"&gt;1.5&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"workbench.iconTheme"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"material-icon-theme"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Snapshot 📸
&lt;/h2&gt;

&lt;p&gt;Below are snapshots for Monokai Pirokai - Beach Sunset 🌊🌄&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--LVmYqzD9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/nz0zd1pwj0vhw1knhjl2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--LVmYqzD9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/nz0zd1pwj0vhw1knhjl2.png" alt="A jsx preview of Monokai Pirokai theme" width="800" height="398"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Zabjzxn2--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/dwl8vhytx1zmhyzaiy2s.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Zabjzxn2--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/dwl8vhytx1zmhyzaiy2s.png" alt="A jsx preview of Monokai Pirokai theme" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Github
&lt;/h2&gt;

&lt;p&gt;Wait, there's more! If you want to take your Monokai Pirokai experience to the next level, or become more cool, be sure to check out our GitHub repository. Here you'll find all the latest updates and improvements, as well as a community of developers just like you who are passionate about creating the best possible coding environment. Join us on GitHub and start collaborating with other developers, sharing your ideas, and making Monokai Pirokai even better! 💻🤝&lt;/p&gt;

&lt;h2&gt;
  
  
  Updates
&lt;/h2&gt;

&lt;p&gt;More updates, styles and colors will be coming soon &lt;br&gt;
!! 🎉🎁&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion 🎉
&lt;/h2&gt;

&lt;p&gt;Try Monokai Pirokai for your coding environment. We believe that this theme is the perfect combination of style and functionality, and we are confident that it will help you code faster and more accurately than ever before. So why wait? Install Monokai Pirokai today and experience the excitement and energy of a truly cutting-edge VS Code theme! 💻💥&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>productivity</category>
      <category>extension</category>
      <category>opensource</category>
    </item>
    <item>
      <title>The Mind-Blowing Potential of Quantum Computing: Could it Revolutionize Drug Discovery and Put an End to Online Hackers?</title>
      <dc:creator>Lakshit Somani</dc:creator>
      <pubDate>Sat, 29 Apr 2023 17:22:26 +0000</pubDate>
      <link>https://dev.to/lakshitsomani/the-mind-blowing-potential-of-quantum-computing-could-it-revolutionize-drug-discovery-and-put-an-end-to-online-hackers-13ll</link>
      <guid>https://dev.to/lakshitsomani/the-mind-blowing-potential-of-quantum-computing-could-it-revolutionize-drug-discovery-and-put-an-end-to-online-hackers-13ll</guid>
      <description>&lt;p&gt;Are you ready for a glimpse into the future? The world of quantum computing is nothing short of mind-blowing, and the potential it holds for revolutionizing our lives is nothing short of amazing. From drug discovery to cybersecurity, quantum computing has the potential to solve problems that once seemed impossible to tackle.&lt;/p&gt;

&lt;p&gt;Imagine being able to discover new drugs in a matter of months, rather than years. This breakthrough could save countless lives and improve healthcare outcomes. Quantum computing enables us to simulate the behavior of molecules much faster than traditional computers, which would significantly speed up the drug discovery process and help us find the most promising drug candidates. With quantum computing, we could be on the cusp of a medical revolution.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--rXE1V4fA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cfyco3iwk26s0pbdw5sc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--rXE1V4fA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cfyco3iwk26s0pbdw5sc.png" alt="Drug Discovery" width="800" height="560"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;But the potential of quantum computing extends beyond healthcare. In a world where cybercrime is rampant and personal information is constantly at risk of being hacked, quantum cryptography offers a new level of protection. By using the principles of quantum mechanics, we can ensure secure communication that's practically unbreakable. It's a game-changer that could put an end to online hackers and keep our information safe.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--P_iRAndT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/njqpjtkpp0f4drphqzmi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P_iRAndT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/njqpjtkpp0f4drphqzmi.png" alt="Cybersecurity" width="800" height="444"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Of course, quantum computing isn't without its challenges. Scientists are still working on scaling up quantum computers to handle complex simulations and making them more reliable. But with continued research and development, we could see a world where quantum computing is the norm and problems that once seemed insurmountable can be solved faster than ever before.&lt;/p&gt;

&lt;p&gt;As young people who will be inheriting the future, it's exciting to think about how quantum computing could change our world for the better. The possibilities are endless, and the future is brighter than ever before. So, are you ready to be a part of this technological revolution? Keep your eyes on the horizon, because quantum computing is just the beginning.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;All images used belong to their respective owners.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>quantumcomputing</category>
      <category>news</category>
      <category>mindblowing</category>
      <category>exciting</category>
    </item>
    <item>
      <title>I bet you have never used this theme. Ever.</title>
      <dc:creator>Lakshit Somani</dc:creator>
      <pubDate>Tue, 25 Apr 2023 14:43:21 +0000</pubDate>
      <link>https://dev.to/lakshitsomani/i-bet-you-have-never-used-this-theme-ever-mg6</link>
      <guid>https://dev.to/lakshitsomani/i-bet-you-have-never-used-this-theme-ever-mg6</guid>
      <description>&lt;p&gt;So that was a hell of a title, wasn't it?&lt;br&gt;
I wanted to share with all of you my new VS Code theme crafted very carefully for programmers. Introducing the all new &lt;strong&gt;Neon City Theme for VS Code ⚡⚡&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Neon City: A Premium, Classy Theme for VS Code ⚡
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=lakshits11.neon-city"&gt;🚀 Download from here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🌃 Welcome to Neon City, the ultimate theme for your VS Code editor! With its stunning purple hues and sleek design, Neon City is the perfect choice for those looking for a premium and classy look for their coding environment.&lt;/p&gt;
&lt;h2&gt;
  
  
  Beauty and Elegance
&lt;/h2&gt;

&lt;p&gt;🌆 The beauty of Neon City lies in its simplicity and elegance. The theme is designed to provide a comfortable and efficient coding experience, with carefully chosen color combinations that enhance the readability of your code. The purple background with contrasting shades of pink and blue ensures that your code stands out and is easy on the eyes.&lt;/p&gt;

&lt;p&gt;🌃 The theme comes with carefully designed intuitive syntax highlighting that make it easy to navigate your codebase. With Neon City, you'll find yourself more productive and focused than ever before.&lt;/p&gt;
&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;p&gt;🚀 Installing Neon City is a breeze! Simply follow these steps:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open the Extensions panel in VS Code by clicking on the Extensions icon in the left-hand sidebar, or by using the shortcut &lt;code&gt;Ctrl+Shift+X&lt;/code&gt; (Windows/Linux) or &lt;code&gt;Cmd+Shift+X&lt;/code&gt; (macOS).&lt;/li&gt;
&lt;li&gt;Search for "Neon City" in the search bar.&lt;/li&gt;
&lt;li&gt;Click on the "Install" button.&lt;/li&gt;
&lt;li&gt;Once installed, click on the "Reload" button to apply the theme.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Alternative Way:&lt;/strong&gt; &lt;a href="https://marketplace.visualstudio.com/items?itemName=lakshits11.neon-city"&gt;🚀 Download from here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🌠 And that's it! You're now ready to enjoy the beauty and productivity boost that Neon City provides.&lt;/p&gt;
&lt;h2&gt;
  
  
  Recommended Settings
&lt;/h2&gt;

&lt;p&gt;💻 To get the most out of Neon City, we recommend the following settings:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Use a Nerd Font&lt;/strong&gt;: Nerd Fonts are a collection of fonts that add additional glyphs to your editor, such as icons for programming languages and tools. We recommend installing a Nerd Font and using it with Neon City for an enhanced coding experience. See &lt;a href="https://www.nerdfonts.com/font-downloads"&gt;this guide&lt;/a&gt; for a list of Nerd Fonts.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Enable Ligatures&lt;/strong&gt;: Ligatures are a typographic feature that combine two or more characters into a single glyph. We recommend enabling ligatures for an enhanced coding experience.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;💡 In addition to these settings, we recommend the following VS Code settings:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"workbench.colorTheme": "Neon City",
"editor.fontFamily": "'Hack Nerd Font', 'Fira Code Nerd Font', 'Jetbrains Mono Nerd Font', 'monospace'",
"editor.smoothScrolling": true,
"terminal.integrated.fontFamily": "'Hack Nerd Font', 'Fira Code Nerd Font', 'Jetbrains Mono Nerd Font', 'monospace'",
"terminal.integrated.lineHeight": 1.5,
"editor.fontLigatures": true,
"editor.lineHeight": 1.5,
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"workbench.iconTheme": "material-icon-theme",
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Looks ✨
&lt;/h2&gt;

&lt;h3&gt;
  
  
  JavaScript
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--WJ_dwyEO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://raw.githubusercontent.com/lakshits11/neon-city/main/javascript.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WJ_dwyEO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://raw.githubusercontent.com/lakshits11/neon-city/main/javascript.png" alt="Neon City JavaScript Code Example" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Python
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--_vDH_tYP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://raw.githubusercontent.com/lakshits11/neon-city/main/python.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--_vDH_tYP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://raw.githubusercontent.com/lakshits11/neon-city/main/python.png" alt="Neon City Python Code Example" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  HTML
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--H8SHMpgm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://raw.githubusercontent.com/lakshits11/neon-city/main/html.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--H8SHMpgm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://raw.githubusercontent.com/lakshits11/neon-city/main/html.png" alt="Neon City HTML Code Example" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🎉 You're now all set to enjoy the stunning beauty and productivity boost that Neon City brings to your coding environment. Happy coding!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Github Repo Link:&lt;/em&gt;&lt;/strong&gt;  &lt;a href="https://github.com/lakshits11/neon-city"&gt;lakshits11/neon-city&lt;/a&gt;&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>productivity</category>
      <category>extension</category>
      <category>opensource</category>
    </item>
    <item>
      <title>I published a new VS Codium Theme Extension</title>
      <dc:creator>Lakshit Somani</dc:creator>
      <pubDate>Thu, 21 Jul 2022 09:34:12 +0000</pubDate>
      <link>https://dev.to/lakshitsomani/i-published-a-new-vs-codium-theme-extension-2bcm</link>
      <guid>https://dev.to/lakshitsomani/i-published-a-new-vs-codium-theme-extension-2bcm</guid>
      <description>&lt;p&gt;This is a short post :)&lt;br&gt;
This is my first post here. First and foremost, if you dont know about VS Codium, I recommend you to read this article first.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/0xdonut/why-and-how-you-should-to-migrate-from-visual-studio-code-to-vscodium-j7d"&gt;Why and How to migrate to VS Codium&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This will tell you about VS Codium and also give you reasons to migrate to VS Codium from VS Code.&lt;/p&gt;

&lt;p&gt;So now that you are convinced to use VS Codium (I guess :) ), here is a theme extension for you!&lt;/p&gt;

&lt;p&gt;🔥🔥 &lt;a href="https://open-vsx.org/extension/lakshitsomani/best-themes-redefined" rel="noopener noreferrer"&gt;Best Themes by Lakshit Somani&lt;/a&gt; 🔥🔥&lt;/p&gt;

&lt;p&gt;Screenshot: &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fiyzt8mpn927gu66h7k89.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fiyzt8mpn927gu66h7k89.png" alt="Best Themes Redefined"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;PS: If you want same extension in VS Code, here is the link:&lt;/p&gt;

&lt;p&gt;🔥🔥 &lt;a href="https://marketplace.visualstudio.com/items?itemName=lakshits11.best-themes-redefined" rel="noopener noreferrer"&gt;Best Themes by Lakshit Somani&lt;/a&gt; 🔥🔥&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>programming</category>
      <category>vscodium</category>
    </item>
  </channel>
</rss>
