<?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: shadcncraft</title>
    <description>The latest articles on DEV Community by shadcncraft (@shadcncraft).</description>
    <link>https://dev.to/shadcncraft</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%2F3410218%2Fee9ad771-a149-4e33-a576-1ea4ca1c54ca.png</url>
      <title>DEV Community: shadcncraft</title>
      <link>https://dev.to/shadcncraft</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shadcncraft"/>
    <language>en</language>
    <item>
      <title>Create and preview your own design system with shadcncraft create</title>
      <dc:creator>shadcncraft</dc:creator>
      <pubDate>Thu, 30 Apr 2026 00:52:25 +0000</pubDate>
      <link>https://dev.to/shadcncraft/create-and-preview-your-own-design-system-with-shadcncraft-create-4iip</link>
      <guid>https://dev.to/shadcncraft/create-and-preview-your-own-design-system-with-shadcncraft-create-4iip</guid>
      <description>&lt;p&gt;shadcncraft create mirrors shadcn create, with the same styles, bases, icon libraries, themes, fonts, and preset workflow, plus live previews of shadcncraft pro blocks.&lt;/p&gt;

&lt;p&gt;shadcncraft now has its own create experience.&lt;/p&gt;

&lt;p&gt;It mirrors &lt;a href="https://ui.shadcn.com/create" rel="noopener noreferrer"&gt;shadcn create&lt;/a&gt;: same styles, same bases, same icon libraries, same themes, same fonts, same radius, same preset codes.&lt;/p&gt;

&lt;p&gt;The difference is the preview. On &lt;a href="https://shadcncraft.com/create" rel="noopener noreferrer"&gt;shadcncraft create&lt;/a&gt;, you can test those combinations directly on shadcncraft pro blocks before installing anything.&lt;/p&gt;

&lt;p&gt;If you already have a shadcn project, you can also resolve its current preset with the shadcn CLI, import it into shadcncraft create, and preview your existing design system on real pro blocks.&lt;/p&gt;

&lt;h2&gt;
  
  
  The workflow
&lt;/h2&gt;

&lt;p&gt;If you already have a shadcn project:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Resolve your current preset.&lt;/li&gt;
&lt;li&gt;Import the preset into shadcncraft create.&lt;/li&gt;
&lt;li&gt;Preview it on pro blocks.&lt;/li&gt;
&lt;li&gt;Adjust the config if needed.&lt;/li&gt;
&lt;li&gt;Use the new preset with &lt;code&gt;init&lt;/code&gt; or &lt;code&gt;apply&lt;/code&gt;.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If you are starting fresh, skip the first step and build a preset directly in &lt;a href="https://shadcncraft.com/create" rel="noopener noreferrer"&gt;shadcncraft create&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Resolve your current preset
&lt;/h2&gt;

&lt;p&gt;From your existing shadcn project, run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx shadcn@latest preset resolve
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can also use the alias:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx shadcn@latest preset info
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The CLI reads your current shadcn config and returns the matching preset code.&lt;/p&gt;

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

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Preset
  code         b5Kc6P0Vc
  version      b
  style        luma
  baseColor    olive
  theme        lime
  chartColor   sky
  iconLibrary  hugeicons
  font         geist
  fontHeading  inherit
  radius       default
  menuAccent   subtle
  menuColor    default
  url          https://ui.shadcn.com/create?preset=b5Kc6P0Vc
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The important part is the code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;b5Kc6P0Vc
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That code contains the visual setup: style, theme, colors, fonts, radius, icons, and other preset settings.&lt;/p&gt;

&lt;p&gt;For monorepos, point the command at the app:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx shadcn@latest preset resolve &lt;span class="nt"&gt;-c&lt;/span&gt; apps/web
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For machine-readable output:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx shadcn@latest preset resolve &lt;span class="nt"&gt;--json&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Import it into shadcncraft create
&lt;/h2&gt;

&lt;p&gt;Presets are fully compatible between shadcn create and shadcncraft create.&lt;/p&gt;

&lt;p&gt;If you made a preset on &lt;code&gt;ui.shadcn.com/create&lt;/code&gt;, you can import it into shadcncraft create. If you resolved one from an existing project, import that too.&lt;/p&gt;

&lt;p&gt;The importer accepts:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A bare preset code&lt;/li&gt;
&lt;li&gt;A &lt;code&gt;--preset &amp;lt;code&amp;gt;&lt;/code&gt; flag&lt;/li&gt;
&lt;li&gt;A full &lt;code&gt;shadcn init --preset &amp;lt;code&amp;gt;&lt;/code&gt; command&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Open &lt;a href="https://shadcncraft.com/create" rel="noopener noreferrer"&gt;shadcncraft create&lt;/a&gt;, choose the open preset option, and paste any of these:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;b5Kc6P0Vc
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;--preset b5Kc6P0Vc
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx shadcn@latest init &lt;span class="nt"&gt;--preset&lt;/span&gt; b5Kc6P0Vc
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;shadcncraft create extracts the preset code and applies the same config to the customizer.&lt;/p&gt;

&lt;p&gt;Now your existing shadcn setup is loaded into the preview.&lt;/p&gt;

&lt;h2&gt;
  
  
  Preview real pro blocks
&lt;/h2&gt;

&lt;p&gt;The point of shadcncraft create is the block preview.&lt;/p&gt;

&lt;p&gt;Preview your preset across real shadcncraft pro blocks: marketing, application, and ecommerce. Small component previews help, but blocks expose the full system.&lt;/p&gt;

&lt;p&gt;You can keep adjusting:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Base: Radix UI or Base UI&lt;/li&gt;
&lt;li&gt;Style: Vega, Nova, Maia, Lyra, Mira, Luma, or Sera&lt;/li&gt;
&lt;li&gt;Icon library: Lucide, Tabler Icons, Hugeicons, Phosphor Icons, or Remix Icon&lt;/li&gt;
&lt;li&gt;Theme, base color and chart color&lt;/li&gt;
&lt;li&gt;Font and heading font&lt;/li&gt;
&lt;li&gt;Radius&lt;/li&gt;
&lt;li&gt;Menu accent and menu color&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Create a new project
&lt;/h2&gt;

&lt;p&gt;Once the preview feels right, use the preset with &lt;code&gt;init&lt;/code&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx shadcn@latest init &lt;span class="nt"&gt;--preset&lt;/span&gt; b5Kc6P0Vc
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This creates a new project with the selected style, theme, fonts, radius, icons, and preset settings from the start.&lt;/p&gt;

&lt;p&gt;You can also include a template:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx shadcn@latest init &lt;span class="nt"&gt;--template&lt;/span&gt; next &lt;span class="nt"&gt;--preset&lt;/span&gt; b5Kc6P0Vc
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Same shadcn CLI. Same preset resolver. shadcncraft create just gives you a better way to choose before running the command.&lt;/p&gt;

&lt;h2&gt;
  
  
  Apply it to an existing project
&lt;/h2&gt;

&lt;p&gt;Presets are not only for new projects.&lt;/p&gt;

&lt;p&gt;To update an existing shadcn project, apply the preset:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx shadcn@latest apply b5Kc6P0Vc
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This updates the project to match the preset, including theme, colors, CSS variables, fonts, icons, and detected UI components.&lt;/p&gt;

&lt;p&gt;You can also apply only the parts you want:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx shadcn@latest apply b5Kc6P0Vc &lt;span class="nt"&gt;--only&lt;/span&gt; theme
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx shadcn@latest apply b5Kc6P0Vc &lt;span class="nt"&gt;--only&lt;/span&gt; font
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx shadcn@latest apply b5Kc6P0Vc &lt;span class="nt"&gt;--only&lt;/span&gt; theme,font
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That makes it easy to test a new visual direction without rebuilding the project.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this matters
&lt;/h2&gt;

&lt;p&gt;The new shadcn preset commands make your current project portable.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;preset resolve&lt;/code&gt; and &lt;code&gt;preset info&lt;/code&gt; turn an existing project into a preset code.&lt;/p&gt;

&lt;p&gt;shadcncraft create can import that code and apply the same config to the live customizer.&lt;/p&gt;

&lt;p&gt;Then you can preview your existing design system against shadcncraft pro blocks before changing anything in your app.&lt;/p&gt;

&lt;p&gt;Resolve the preset. Open it in shadcncraft create. Preview real pro blocks. Then create, apply, or share the setup.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;Open &lt;a href="https://shadcncraft.com/create" rel="noopener noreferrer"&gt;shadcncraft create&lt;/a&gt;, pick a pro block, and start switching styles, bases, icons, themes, fonts, and radius.&lt;/p&gt;

&lt;p&gt;When the preview looks right, copy the preset.&lt;/p&gt;

&lt;p&gt;Create a new project with it, apply it to an existing one, or import it back into shadcn create.&lt;/p&gt;

&lt;p&gt;Same shadcn foundation. Same preset workflow. Now with shadcncraft pro blocks in the preview.&lt;/p&gt;

</description>
      <category>shadcn</category>
      <category>react</category>
      <category>radix</category>
      <category>baseui</category>
    </item>
    <item>
      <title>Pick your shadcn base, your style, your icons</title>
      <dc:creator>shadcncraft</dc:creator>
      <pubDate>Tue, 28 Apr 2026 02:48:39 +0000</pubDate>
      <link>https://dev.to/shadcncraft/pick-your-shadcn-base-your-style-your-icons-23dm</link>
      <guid>https://dev.to/shadcncraft/pick-your-shadcn-base-your-style-your-icons-23dm</guid>
      <description>&lt;p&gt;shadcncraft now supports Base UI, all seven shadcn styles, multiple icon libraries, and a new customizer for previewing combinations before install.&lt;/p&gt;

&lt;p&gt;shadcncraft now adapts to your setup.&lt;/p&gt;

&lt;p&gt;Choose your base, style, and icon library, and everything follows. A new customizer lets you preview combinations live.&lt;/p&gt;

&lt;p&gt;Until now, every component shipped with fixed defaults: Radix UI, the standard shadcn look, and Lucide icons. If your project used something else, you had to adjust it after install.&lt;/p&gt;

&lt;p&gt;That is no longer the case. shadcncraft now respects your project config from the start.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/kBTgpTq3U-A"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Your project defines the defaults
&lt;/h2&gt;

&lt;p&gt;Your setup is the source of truth. The registry reads what you've chosen and installs components to match:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Base&lt;/strong&gt; — Radix UI and Base UI, both fully supported.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Style&lt;/strong&gt; — all seven shadcn presets.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Icons&lt;/strong&gt; — Lucide, Tabler Icons, Hugeicons, Phosphor Icons, and Remix Icon.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Tokens, fonts, radius, and themes remain unchanged. Nothing gets overridden.&lt;/p&gt;

&lt;h2&gt;
  
  
  Built on shadcn styles
&lt;/h2&gt;

&lt;p&gt;These styles come directly from shadcn. Same presets, same output.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Vega&lt;/strong&gt; — classic shadcn look.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Nova&lt;/strong&gt; — tighter spacing, more compact.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Maia&lt;/strong&gt; — softer and more rounded.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Lyra&lt;/strong&gt; — sharp and structured.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mira&lt;/strong&gt; — dense and product-focused.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Luma&lt;/strong&gt; — softer and more fluid.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sera&lt;/strong&gt; — editorial and typographic.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If your project already uses one of these, shadcncraft follows it. If not, you can try them across the library.&lt;/p&gt;

&lt;p&gt;Custom styles from shadcn create also work.&lt;/p&gt;

&lt;h2&gt;
  
  
  Preview every combination
&lt;/h2&gt;

&lt;p&gt;Each component and block page now includes a live customizer.&lt;/p&gt;

&lt;p&gt;You can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Switch between Radix and Base UI&lt;/li&gt;
&lt;li&gt;Change styles&lt;/li&gt;
&lt;li&gt;Swap icon libraries&lt;/li&gt;
&lt;li&gt;Adjust fonts and radius&lt;/li&gt;
&lt;li&gt;Apply shadcn or &lt;a href="https://tweakcn.com" rel="noopener noreferrer"&gt;tweakcn&lt;/a&gt; themes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is the same model as &lt;a href="https://ui.shadcn.com/create" rel="noopener noreferrer"&gt;shadcn create&lt;/a&gt;, applied to every component and block.&lt;/p&gt;

&lt;p&gt;You can see exactly what you'll get before installing anything.&lt;/p&gt;

&lt;h2&gt;
  
  
  Works across the library
&lt;/h2&gt;

&lt;p&gt;Support is library-wide. Components and blocks are built to follow your config.&lt;/p&gt;

&lt;p&gt;Some older blocks may not support every option yet. We're updating those over time and will surface support more clearly on each component and block page.&lt;/p&gt;

&lt;h2&gt;
  
  
  One-line migration
&lt;/h2&gt;

&lt;p&gt;Nothing breaks if you're already using shadcncraft.&lt;/p&gt;

&lt;p&gt;To enable style-aware install, change one line in &lt;code&gt;components.json&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight diff"&gt;&lt;code&gt;{
  "registries": {
    "@shadcncraft": {
&lt;span class="gd"&gt;-     "url": "https://shadcncraft.com/r/{name}",
&lt;/span&gt;&lt;span class="gi"&gt;+     "url": "https://shadcncraft.com/r/{style}/{name}",
&lt;/span&gt;      "headers": {
        // ... your existing headers ...
      }
    }
  }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;Try the customizer on a &lt;a href="https://shadcncraft.com/blocks/pro-marketing/pricing/pricing-1" rel="noopener noreferrer"&gt;live pro block&lt;/a&gt;. You can test different bases, styles, icons, and themes in our pro &lt;a href="https://shadcncraft.com/components" rel="noopener noreferrer"&gt;components&lt;/a&gt; and &lt;a href="https://shadcncraft.com/blocks" rel="noopener noreferrer"&gt;blocks&lt;/a&gt; before installing.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where this is going
&lt;/h2&gt;

&lt;p&gt;This brings shadcncraft closer to how &lt;a href="https://ui.shadcn.com/create" rel="noopener noreferrer"&gt;shadcn create&lt;/a&gt; works.&lt;/p&gt;

&lt;p&gt;Same styles. Same structure. Same expectations.&lt;/p&gt;

&lt;p&gt;The goal is simple: your design system behaves the same in Figma and in code.&lt;/p&gt;

&lt;p&gt;More updates coming soon.&lt;/p&gt;

</description>
      <category>shadcn</category>
      <category>baseui</category>
      <category>radix</category>
      <category>react</category>
    </item>
    <item>
      <title>Introducing shadcncraft</title>
      <dc:creator>shadcncraft</dc:creator>
      <pubDate>Wed, 08 Apr 2026 06:37:08 +0000</pubDate>
      <link>https://dev.to/shadcncraft/introducing-shadcncraft-2i37</link>
      <guid>https://dev.to/shadcncraft/introducing-shadcncraft-2i37</guid>
      <description>&lt;h2&gt;
  
  
  New name, new &lt;a href="https://shadcncraft.com" rel="noopener noreferrer"&gt;website&lt;/a&gt;, bigger vision
&lt;/h2&gt;

&lt;p&gt;Today we’re launching a new name, a new brand, and a completely rebuilt website.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Shadcraft is now shadcncraft.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This change reflects what the product has become and where it is going next.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why the rename
&lt;/h2&gt;

&lt;p&gt;From the beginning, the goal was simple: build the best design system built on top of &lt;strong&gt;shadcn/ui&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Over time the product grew beyond a simple Figma UI kit. It became a full ecosystem built around the shadcn stack, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A &lt;strong&gt;React component library&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;matching Figma design system&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Hundreds of production ready UI blocks&lt;/li&gt;
&lt;li&gt;A plugin for importing and exporting themes&lt;/li&gt;
&lt;li&gt;Tools designed to work naturally with modern AI coding workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The new name makes that connection clear.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;shadcncraft&lt;/strong&gt; reflects what the product actually is: carefully crafted design system tools built specifically for the shadcn ecosystem.&lt;/p&gt;

&lt;h2&gt;
  
  
  A completely new website
&lt;/h2&gt;

&lt;p&gt;Alongside the rename, we’ve rebuilt the entire website from scratch.&lt;/p&gt;

&lt;p&gt;The old site did not reflect the scope of the product anymore. It focused heavily on the Figma kit and did not show the full design system.&lt;/p&gt;

&lt;p&gt;The new site fixes that.&lt;/p&gt;

&lt;p&gt;It clearly shows what shadcncraft provides:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;React components ready for production&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Matching Figma design files&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Hundreds of blocks across marketing, application, and ecommerce&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Full sites and templates&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Design tokens and theming tools&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everything is now easier to explore, preview, and understand.&lt;/p&gt;

&lt;p&gt;The new structure also makes it much easier to browse blocks, pages, and full site templates.&lt;/p&gt;

&lt;h2&gt;
  
  
  Built for modern workflows
&lt;/h2&gt;

&lt;p&gt;Frontend development is changing quickly.&lt;/p&gt;

&lt;p&gt;Tools like Cursor, Claude Code, v0, and Figma Make are reshaping how developers and designers work together.&lt;/p&gt;

&lt;p&gt;Design systems now need to support both humans and AI.&lt;/p&gt;

&lt;p&gt;shadcncraft is designed for that new workflow.&lt;/p&gt;

&lt;p&gt;The system is built around:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Clean React components&lt;/li&gt;
&lt;li&gt;Structured design tokens&lt;/li&gt;
&lt;li&gt;Predictable theming&lt;/li&gt;
&lt;li&gt;Consistent naming and patterns&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This makes it easier for developers, designers, and AI tools to generate high quality UI.&lt;/p&gt;

&lt;h2&gt;
  
  
  React and Figma working together
&lt;/h2&gt;

&lt;p&gt;One of the biggest goals for shadcncraft is tight alignment between &lt;strong&gt;design and code&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Every block and component exists in both places:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;React code ready to install&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Matching Figma components&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Designers can work in Figma while developers install the exact same blocks into their projects using the CLI.&lt;/p&gt;

&lt;p&gt;No guesswork. No rebuilding UI from scratch.&lt;/p&gt;

&lt;h2&gt;
  
  
  What stays the same
&lt;/h2&gt;

&lt;p&gt;Even with the new name and brand, the core philosophy remains the same.&lt;/p&gt;

&lt;p&gt;shadcncraft is still focused on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Clean, production ready UI&lt;/li&gt;
&lt;li&gt;No unnecessary abstraction&lt;/li&gt;
&lt;li&gt;Simple installation via the shadcn CLI&lt;/li&gt;
&lt;li&gt;Full ownership of the code you install&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You get real components you can ship to production, not locked templates or proprietary frameworks.&lt;/p&gt;

&lt;h2&gt;
  
  
  What’s coming next
&lt;/h2&gt;

&lt;p&gt;The rebrand and website launch are just the beginning.&lt;/p&gt;

&lt;p&gt;There is a lot more coming:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;More blocks across all categories&lt;/li&gt;
&lt;li&gt;More full site templates&lt;/li&gt;
&lt;li&gt;Deeper theming support&lt;/li&gt;
&lt;li&gt;Improvements to the plugin&lt;/li&gt;
&lt;li&gt;Tighter integration with modern AI coding tools&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal remains simple: make it dramatically faster to design and ship high quality interfaces with shadcn.&lt;/p&gt;

&lt;h2&gt;
  
  
  Thank you
&lt;/h2&gt;

&lt;p&gt;A huge thank you to everyone who has supported the project so far.&lt;/p&gt;

&lt;p&gt;Thousands of designers and developers have already used the kit, shared feedback, and helped shape what shadcncraft is becoming.&lt;/p&gt;

&lt;p&gt;If you have not explored the new site yet, &lt;a href="https://shadcncraft.com" rel="noopener noreferrer"&gt;take a look&lt;/a&gt; and see what is new.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/6kKGhTohG8Y"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>shadcn</category>
      <category>figma</category>
      <category>react</category>
    </item>
    <item>
      <title>New way to bring your tweakcn themes into Figma (works with shadcn/ui)</title>
      <dc:creator>shadcncraft</dc:creator>
      <pubDate>Sun, 03 Aug 2025 21:22:47 +0000</pubDate>
      <link>https://dev.to/shadcncraft/new-way-to-bring-your-tweakcn-themes-into-figma-works-with-shadcnui-1km0</link>
      <guid>https://dev.to/shadcncraft/new-way-to-bring-your-tweakcn-themes-into-figma-works-with-shadcnui-1km0</guid>
      <description>&lt;p&gt;Hey folks 👋🏻&lt;/p&gt;

&lt;p&gt;If you’ve been using &lt;a href="http://tweakcn.com" rel="noopener noreferrer"&gt;tweakcn&lt;/a&gt; to customise your shadcn/ui theme in the browser, you can now bring those themes straight into Figma via a new integration with &lt;a href="https://shadcraft.com" rel="noopener noreferrer"&gt;Shadcraft&lt;/a&gt; and the tweakcn plugin.&lt;/p&gt;

&lt;p&gt;Here’s how it works:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;🎨 tweakcn is a super handy in-browser theming tool for shadcn/ui (great for quickly testing out colour, radius, shadow, etc.)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;🔌 With the plugin, you can now apply your custom theme to a Figma UI kit built specifically for Tailwind and shadcn-based projects&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;⚡ It’s all powered by Figma variables, so you can instantly switch between themes or update styles without tedious overrides&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s been a smoother handoff experience for us working across dev/design — especially when devs pick the theme in tweakcn and designers apply it in Figma.&lt;/p&gt;

&lt;p&gt;You can try it out at tweakcn.com — happy to answer questions or share how we’ve been using it in side projects too.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fupnq8pnnmxjbelwqkb2f.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fupnq8pnnmxjbelwqkb2f.png" alt=" " width="800" height="431"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
    </item>
  </channel>
</rss>
