<?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>Forem: innostes</title>
    <description>The latest articles on Forem by innostes (@innostes).</description>
    <link>https://forem.com/innostes</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%2F3852145%2F2d20e437-c967-4d2a-81ce-85debf9b1650.png</url>
      <title>Forem: innostes</title>
      <link>https://forem.com/innostes</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/innostes"/>
    <language>en</language>
    <item>
      <title>Stop Styling React Components Manually in 2026</title>
      <dc:creator>innostes</dc:creator>
      <pubDate>Mon, 30 Mar 2026 19:12:12 +0000</pubDate>
      <link>https://forem.com/innostes/stop-styling-react-components-manually-in-2026-396b</link>
      <guid>https://forem.com/innostes/stop-styling-react-components-manually-in-2026-396b</guid>
      <description>&lt;p&gt;Rebrand Your Entire React App in One Line&lt;/p&gt;

&lt;p&gt;Most React apps start clean.&lt;/p&gt;

&lt;p&gt;But as the app grows, &lt;strong&gt;UI consistency slowly breaks&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You start seeing things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Buttons with different border radius&lt;/li&gt;
&lt;li&gt;Slight color differences across pages&lt;/li&gt;
&lt;li&gt;Spacing inconsistencies&lt;/li&gt;
&lt;li&gt;Updating brand styles requires touching many components&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Maintaining UI consistency becomes painful.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Usual Approach
&lt;/h2&gt;

&lt;p&gt;Most UI libraries rely on &lt;strong&gt;component-level styling&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;:&lt;/p&gt;



&lt;p&gt;This spreads design decisions across components.&lt;/p&gt;

&lt;p&gt;Over time it leads to:&lt;/p&gt;

&lt;p&gt;• repeated props&lt;br&gt;
• scattered styles&lt;br&gt;
• inconsistent UI&lt;/p&gt;
&lt;h2&gt;
  
  
  A Different Approach
&lt;/h2&gt;

&lt;p&gt;Instead of styling components manually, LuxisUI generates a design system from configuration.&lt;/p&gt;

&lt;p&gt;Define your brand color:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;ThemeProvider&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;Button&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;@luxis-ui/react&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;App&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;return &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="c1"&gt;// One prop configures your entire application&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;ThemeProvider&lt;/span&gt;
      &lt;span class="na"&gt;theme&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="na"&gt;colors&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;primary&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;#2563EB&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="p"&gt;},&lt;/span&gt;
        &lt;span class="na"&gt;global&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;radius&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;0.5rem&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="si"&gt;}&lt;/span&gt;
    &lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
      &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;Button&lt;/span&gt; &lt;span class="na"&gt;variant&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"primary"&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;Design System Ready&lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nc"&gt;Button&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nc"&gt;ThemeProvider&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&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;LuxisUI automatically generates the full palette:&lt;/p&gt;

&lt;p&gt;primary-50&lt;br&gt;
primary-100&lt;br&gt;
.....&lt;br&gt;
primary-900&lt;/p&gt;

&lt;p&gt;Now every component follows the same design system.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Buttons&lt;/li&gt;
&lt;li&gt;Inputs&lt;/li&gt;
&lt;li&gt;Tables&lt;/li&gt;
&lt;li&gt;Modals&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everything stays consistent automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Matters
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;No repetitive props.&lt;/li&gt;
&lt;li&gt;No scattered styles.&lt;/li&gt;
&lt;li&gt;No UI drift.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;LuxisUI is an open-source React Design System Engine that helps teams build scalable interfaces.&lt;/p&gt;

&lt;p&gt;Define the system once.&lt;br&gt;
Let the UI follow automatically.&lt;/p&gt;

&lt;p&gt;Explore LuxisUI&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://luxisui.com" rel="noopener noreferrer"&gt;https://luxisui.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://github.com/luxis-ui/react" rel="noopener noreferrer"&gt;https://github.com/luxis-ui/react&lt;/a&gt;&lt;/p&gt;

</description>
      <category>react</category>
      <category>frontend</category>
      <category>designsystem</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
