<?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: Julian</title>
    <description>The latest articles on DEV Community by Julian (@gamekohl).</description>
    <link>https://dev.to/gamekohl</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%2F3981698%2Fb5cfc1fa-1cf5-452b-8e71-fc29e89109bb.png</url>
      <title>DEV Community: Julian</title>
      <link>https://dev.to/gamekohl</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/gamekohl"/>
    <language>en</language>
    <item>
      <title>Building FrameUI: an Angular component library with a technical default style</title>
      <dc:creator>Julian</dc:creator>
      <pubDate>Fri, 12 Jun 2026 17:39:13 +0000</pubDate>
      <link>https://dev.to/gamekohl/building-frameui-an-angular-component-library-with-a-technical-default-style-2k7i</link>
      <guid>https://dev.to/gamekohl/building-frameui-an-angular-component-library-with-a-technical-default-style-2k7i</guid>
      <description>&lt;p&gt;I recently published a beta version of FrameUI, an Angular component library.&lt;/p&gt;

&lt;p&gt;The goal was straightforward: build reusable Angular UI primitives with a themeable styling system, clear APIs, and documentation that shows real usage.&lt;/p&gt;

&lt;p&gt;After sharing the first version publicly, I got useful feedback. Some people liked the project, but there was also a fair point:&lt;/p&gt;

&lt;p&gt;It looked like another shadcn-inspired UI library. And honestly, that was true.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem was not shadcn
&lt;/h2&gt;

&lt;p&gt;shadcn has influenced a lot of UI work in the frontend space. The approach is practical, the components are clean, and many developers like having code they can own and adapt.&lt;/p&gt;

&lt;p&gt;But because the style became so recognizable, many new libraries now end up looking very similar.&lt;/p&gt;

&lt;p&gt;That is not always a problem. If someone wants that exact style in Angular, there are already good projects for it, like ZardUI and Spartan.&lt;/p&gt;

&lt;p&gt;But for FrameUI, I wanted a clearer reason to exist.&lt;/p&gt;

&lt;p&gt;Not only in the API, but also in the default visual direction.&lt;/p&gt;

&lt;h2&gt;
  
  
  Changing the default style
&lt;/h2&gt;

&lt;p&gt;After the feedback, I redesigned the default theme.&lt;/p&gt;

&lt;p&gt;FrameUI now uses a more technical, blueprint-like style:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;sharper edges by default&lt;/li&gt;
&lt;li&gt;fewer shadows&lt;/li&gt;
&lt;li&gt;clear borders&lt;/li&gt;
&lt;li&gt;restrained red accents&lt;/li&gt;
&lt;li&gt;visible structure&lt;/li&gt;
&lt;li&gt;small corner details on sharp surfaces&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is to provide a default style that feels better suited for application UIs: dashboards, internal tools, editors, admin screens, and developer-facing products.&lt;/p&gt;

&lt;h2&gt;
  
  
  The component model
&lt;/h2&gt;

&lt;p&gt;FrameUI is split into two packages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;@frame-ui-ng/foundation - contains shared styles, tokens, and providers.&lt;/li&gt;
&lt;li&gt;@frame-ui-ng/components - contains the UI primitives.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The components use Angular selectors directly. Some are element-based, others are attribute-based. For example:&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="nt"&gt;&amp;lt;button&lt;/span&gt; &lt;span class="na"&gt;frButton&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"button"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
  Save changes
&lt;span class="nt"&gt;&amp;lt;/button&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3u9kq3hxdvoywz8r64vg.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%2F3u9kq3hxdvoywz8r64vg.png" alt="Example Button"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A more composed example:&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="nt"&gt;&amp;lt;section&lt;/span&gt; &lt;span class="na"&gt;frCommand&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;input&lt;/span&gt; &lt;span class="na"&gt;frCommandInput&lt;/span&gt; &lt;span class="na"&gt;placeholder=&lt;/span&gt;&lt;span class="s"&gt;"Type a command or search..."&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;frCommandList&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;frCommandGroup&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;frCommandGroupHeading&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Suggested&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;

      &lt;span class="nt"&gt;&amp;lt;button&lt;/span&gt; &lt;span class="na"&gt;frCommandItem&lt;/span&gt; &lt;span class="na"&gt;value=&lt;/span&gt;&lt;span class="s"&gt;"file"&lt;/span&gt; &lt;span class="na"&gt;label=&lt;/span&gt;&lt;span class="s"&gt;"Go to File"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&lt;/span&gt;Go to File&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;span&lt;/span&gt; &lt;span class="na"&gt;frCommandShortcut&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;⌘ P&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
      &lt;span class="nt"&gt;&amp;lt;/button&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&lt;/span&gt; &lt;span class="na"&gt;frCommandFooter&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&amp;lt;kbd&amp;gt;&lt;/span&gt;↑↓&lt;span class="nt"&gt;&amp;lt;/kbd&amp;gt;&lt;/span&gt; to navigate&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&amp;lt;kbd&amp;gt;&lt;/span&gt;↵&lt;span class="nt"&gt;&amp;lt;/kbd&amp;gt;&lt;/span&gt; to select&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&amp;lt;kbd&amp;gt;&lt;/span&gt;esc&lt;span class="nt"&gt;&amp;lt;/kbd&amp;gt;&lt;/span&gt; to close&lt;span class="nt"&gt;&amp;lt;/span&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;/section&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuhn9wfho9mbdfs8ajccx.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%2Fuhn9wfho9mbdfs8ajccx.png" alt="Example Command"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The template stays explicit. You can see the structure instead of hiding everything behind a single configuration object.&lt;/p&gt;

&lt;h2&gt;
  
  
  Styling through tokens
&lt;/h2&gt;

&lt;p&gt;The default theme has an opinion, but it should not lock users in.&lt;br&gt;
FrameUI uses CSS variables for component styling. That makes it possible to change things like spacing, radius, color, density, and component-specific details without replacing the component logic.&lt;br&gt;
For example, the default theme uses sharp corners. But users can still opt into radius where it makes sense.&lt;br&gt;
The same applies to component details like command item height, button spacing, input borders, or overlay surfaces.&lt;/p&gt;
&lt;h2&gt;
  
  
  What changed after feedback
&lt;/h2&gt;

&lt;p&gt;The feedback helped clarify what FrameUI should not be.&lt;br&gt;
It should not try to be another Angular version of an existing visual style.&lt;br&gt;
It should be an Angular component library with its own default direction.&lt;/p&gt;
&lt;h2&gt;
  
  
  Current state
&lt;/h2&gt;

&lt;p&gt;FrameUI is still in beta. There are components that need more polish. Some APIs may still change. Accessibility needs continuous testing. More real examples are needed.&lt;/p&gt;

&lt;p&gt;The current focus is:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;improve component coverage&lt;/li&gt;
&lt;li&gt;refine accessibility behavior&lt;/li&gt;
&lt;li&gt;keep the token system consistent&lt;/li&gt;
&lt;li&gt;improve the docs&lt;/li&gt;
&lt;li&gt;test the components in real application layouts&lt;/li&gt;
&lt;li&gt;collect feedback from Angular developers&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;p&gt;Docs: &lt;a href="https://frame-ui.com" rel="noopener noreferrer"&gt;https://frame-ui.com&lt;/a&gt;&lt;br&gt;
GitHub: &lt;a href="https://github.com/gamekohl/frame-ui" rel="noopener noreferrer"&gt;https://github.com/gamekohl/frame-ui&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; @frame-ui-ng/foundation @frame-ui-ng/components
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you try it, I would be interested in practical feedback:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Does the API feel natural in Angular?&lt;/li&gt;
&lt;li&gt;Are the primitives flexible enough?&lt;/li&gt;
&lt;li&gt;Is the default style useful or too specific?&lt;/li&gt;
&lt;li&gt;What components are missing?&lt;/li&gt;
&lt;li&gt;What would block you from using it in a real app?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That kind of feedback is the most helpful at this stage.&lt;/p&gt;

</description>
      <category>angular</category>
      <category>webdev</category>
      <category>opensource</category>
      <category>design</category>
    </item>
  </channel>
</rss>
