<?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: eotter-beep</title>
    <description>The latest articles on DEV Community by eotter-beep (@eotterbeep).</description>
    <link>https://dev.to/eotterbeep</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%2F3602738%2F1e7bfbf7-160d-4733-9d21-ddd57ba89114.png</url>
      <title>DEV Community: eotter-beep</title>
      <link>https://dev.to/eotterbeep</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/eotterbeep"/>
    <language>en</language>
    <item>
      <title>TelUI leaves prototype purpose, now for making UIs!</title>
      <dc:creator>eotter-beep</dc:creator>
      <pubDate>Sun, 09 Nov 2025 01:12:18 +0000</pubDate>
      <link>https://dev.to/eotterbeep/telui-leaves-prototype-purpose-now-for-making-uis-24k6</link>
      <guid>https://dev.to/eotterbeep/telui-leaves-prototype-purpose-now-for-making-uis-24k6</guid>
      <description>&lt;h1&gt;
  
  
  TelUI
&lt;/h1&gt;

&lt;p&gt;TelUI is a Electron-based UI framework that packages a handful of reusable front-end primitives—color utilities, typography helpers, and basic structural styles—so you can make simple desktop UI ideas with minimal setup.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;Bundled Electron runner (&lt;code&gt;npm start&lt;/code&gt;) that serves &lt;code&gt;index.html&lt;/code&gt; for instant desktop previews.&lt;/li&gt;
&lt;li&gt;Tokenized styling layers: &lt;code&gt;color.css&lt;/code&gt;, &lt;code&gt;font.css&lt;/code&gt;, &lt;code&gt;header.css&lt;/code&gt;, and &lt;code&gt;align.css&lt;/code&gt; keep presentation rules isolated and easy to remix.&lt;/li&gt;
&lt;li&gt;Micro-interaction helpers in &lt;code&gt;animation.css&lt;/code&gt; (e.g., &lt;code&gt;.hover-fade&lt;/code&gt;, &lt;code&gt;light&lt;/code&gt;) for subtle hover states or accent passes.&lt;/li&gt;
&lt;li&gt;Google Fonts integration (Funnel Display) plus opt-in utility classes like &lt;code&gt;.arial&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Drop-in icon assets under &lt;code&gt;icons/&lt;/code&gt; to help illustrate loading and status states.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Quick start
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm init telui
npm run start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The app launches an 800×600 Electron window that loads &lt;code&gt;index.html&lt;/code&gt;. Modify any CSS or HTML file and restart (or reload) to see the changes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Project layout
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;index.js       # Electron bootstrapper
index.html     # Demo canvas that consumes TelUI styles
font.css       # Typography utilities and Google Fonts import
color.css      # Color tokens (e.g., gentleblue, brightblue, gray/grey, green)
animation.css  # Hover fade helper and light filter effects
header.css     # Structural tweaks for header containers
align.css      # `&amp;lt;center&amp;gt;` helper to horizontally center any block
icons/         # Shared bitmap / gif assets (e.g., loading.gif)
package.json   # Dependencies and npm scripts
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Using the utilities
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Reference the styles you need in your HTML entry point:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&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;"font.css"&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;"color.css"&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;"header.css"&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;"animation.css"&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;"align.css"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Apply the provided classes or custom element tags:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;gentleblue&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;header&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;TelUI&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/header&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;"arial"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Prototype copy goes here.&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/gentleblue&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;code&gt;font.css&lt;/code&gt; exposes &lt;code&gt;.funneldisplay&lt;/code&gt; and &lt;code&gt;.arial&lt;/code&gt;. The color tokens (&lt;code&gt;gentleblue&lt;/code&gt;, &lt;code&gt;brightblue&lt;/code&gt;, &lt;code&gt;gray&lt;/code&gt;, &lt;code&gt;grey&lt;/code&gt;, &lt;code&gt;green&lt;/code&gt;) can be used either as element selectors or converted into classes if you prefer &lt;code&gt;.gentleblue&lt;/code&gt; syntax.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Add animation helpers where needed:&lt;br&gt;
&lt;/p&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;class=&lt;/span&gt;&lt;span class="s"&gt;"hover-fade funneldisplay"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Hover me&lt;span class="nt"&gt;&amp;lt;/button&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;light&amp;gt;&lt;/span&gt;Accent block&lt;span class="nt"&gt;&amp;lt;/light&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;code&gt;.hover-fade&lt;/code&gt; applies the shared opacity/scale transition; the &lt;code&gt;light&lt;/code&gt; tag gives you a filtered highlight wrapper without touching inline styles.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Center blocks with the dedicated tag:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;center&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;button&amp;gt;&lt;/span&gt;CTA&lt;span class="nt"&gt;&amp;lt;/button&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/center&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The &lt;code&gt;align.css&lt;/code&gt; stylesheet constrains &lt;code&gt;&amp;lt;center&amp;gt;&lt;/code&gt; to &lt;code&gt;max-width: fit-content&lt;/code&gt; and uses auto horizontal margins so any nested elements stay centered without extra wrappers.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Reuse icons by pointing to the assets directory:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&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;"icons/loading.gif"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"Loading indicator"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Extending TelUI
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Add new color tokens or typography helpers by updating the corresponding CSS file; keep selectors declarative and organized by category.&lt;/li&gt;
&lt;li&gt;For additional Electron behaviors (menus, preload scripts, IPC), expand &lt;code&gt;index.js&lt;/code&gt; while leaving the UI-focused files framework‑agnostic.&lt;/li&gt;
&lt;li&gt;When shipping as a distributable app, configure &lt;code&gt;electron-builder&lt;/code&gt; or your favorite packager; the current setup is intentionally minimal.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  License
&lt;/h2&gt;

&lt;p&gt;Unless stated otherwise in individual files, TelUI is distributed under the MIT License. Please include the license text when redistributing TelUI or derivative works,&lt;/p&gt;

&lt;p&gt;URL:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/eotter-beep/telui" rel="noopener noreferrer"&gt;https://github.com/eotter-beep/telui&lt;/a&gt;&lt;/p&gt;

</description>
      <category>tooling</category>
      <category>ui</category>
      <category>javascript</category>
      <category>css</category>
    </item>
    <item>
      <title>TelUI 1.2: TelUI with fun alignments!</title>
      <dc:creator>eotter-beep</dc:creator>
      <pubDate>Sun, 09 Nov 2025 00:39:42 +0000</pubDate>
      <link>https://dev.to/eotterbeep/telui-12-telui-with-fun-alignments-oo1</link>
      <guid>https://dev.to/eotterbeep/telui-12-telui-with-fun-alignments-oo1</guid>
      <description>&lt;h1&gt;
  
  
  TelUI
&lt;/h1&gt;

&lt;p&gt;TelUI is a Electron-based UI framework that packages a handful of reusable front-end primitives—color utilities, typography helpers, and basic structural styles—so you can prototype simple desktop UI ideas with minimal setup.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;Bundled Electron runner (&lt;code&gt;npm start&lt;/code&gt;) that serves &lt;code&gt;index.html&lt;/code&gt; for instant desktop previews.&lt;/li&gt;
&lt;li&gt;Tokenized styling layers: &lt;code&gt;color.css&lt;/code&gt;, &lt;code&gt;font.css&lt;/code&gt;, &lt;code&gt;header.css&lt;/code&gt;, and &lt;code&gt;align.css&lt;/code&gt; keep presentation rules isolated and easy to remix.&lt;/li&gt;
&lt;li&gt;Micro-interaction helpers in &lt;code&gt;animation.css&lt;/code&gt; (e.g., &lt;code&gt;.hover-fade&lt;/code&gt;, &lt;code&gt;light&lt;/code&gt;) for subtle hover states or accent passes.&lt;/li&gt;
&lt;li&gt;Google Fonts integration (Funnel Display) plus opt-in utility classes like &lt;code&gt;.arial&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Drop-in icon assets under &lt;code&gt;icons/&lt;/code&gt; to help illustrate loading and status states.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Quick start
&lt;/h2&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;npm run start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The app launches an 800×600 Electron window that loads &lt;code&gt;index.html&lt;/code&gt;. Modify any CSS or HTML file and restart (or reload) to see the changes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Project layout
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;index.js       # Electron bootstrapper
index.html     # Demo canvas that consumes TelUI styles
font.css       # Typography utilities and Google Fonts import
color.css      # Color tokens (e.g., gentleblue, brightblue, gray/grey, green)
animation.css  # Hover fade helper and light filter effects
header.css     # Structural tweaks for header containers
align.css      # `&amp;lt;center&amp;gt;` helper to horizontally center any block
icons/         # Shared bitmap / gif assets (e.g., loading.gif)
package.json   # Dependencies and npm scripts
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Using the utilities
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Reference the styles you need in your HTML entry point:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&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;"font.css"&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;"color.css"&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;"header.css"&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;"animation.css"&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;"align.css"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Apply the provided classes or custom element tags:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;gentleblue&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;header&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;TelUI&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/header&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;"arial"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Prototype copy goes here.&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/gentleblue&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;code&gt;font.css&lt;/code&gt; exposes &lt;code&gt;.funneldisplay&lt;/code&gt; and &lt;code&gt;.arial&lt;/code&gt;. The color tokens (&lt;code&gt;gentleblue&lt;/code&gt;, &lt;code&gt;brightblue&lt;/code&gt;, &lt;code&gt;gray&lt;/code&gt;, &lt;code&gt;grey&lt;/code&gt;, &lt;code&gt;green&lt;/code&gt;) can be used either as element selectors or converted into classes if you prefer &lt;code&gt;.gentleblue&lt;/code&gt; syntax.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Add animation helpers where needed:&lt;br&gt;
&lt;/p&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;class=&lt;/span&gt;&lt;span class="s"&gt;"hover-fade funneldisplay"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Hover me&lt;span class="nt"&gt;&amp;lt;/button&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;light&amp;gt;&lt;/span&gt;Accent block&lt;span class="nt"&gt;&amp;lt;/light&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;code&gt;.hover-fade&lt;/code&gt; applies the shared opacity/scale transition; the &lt;code&gt;light&lt;/code&gt; tag gives you a filtered highlight wrapper without touching inline styles.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Center blocks with the dedicated tag:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;center&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;button&amp;gt;&lt;/span&gt;CTA&lt;span class="nt"&gt;&amp;lt;/button&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/center&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The &lt;code&gt;align.css&lt;/code&gt; stylesheet constrains &lt;code&gt;&amp;lt;center&amp;gt;&lt;/code&gt; to &lt;code&gt;max-width: fit-content&lt;/code&gt; and uses auto horizontal margins so any nested elements stay centered without extra wrappers.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Reuse icons by pointing to the assets directory:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&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;"icons/loading.gif"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"Loading indicator"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Extending TelUI
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Add new color tokens or typography helpers by updating the corresponding CSS file; keep selectors declarative and organized by category.&lt;/li&gt;
&lt;li&gt;For additional Electron behaviors (menus, preload scripts, IPC), expand &lt;code&gt;index.js&lt;/code&gt; while leaving the UI-focused files framework‑agnostic.&lt;/li&gt;
&lt;li&gt;When shipping as a distributable app, configure &lt;code&gt;electron-builder&lt;/code&gt; or your favorite packager; the current setup is intentionally minimal.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  License
&lt;/h2&gt;

&lt;p&gt;Unless stated otherwise in individual files, TelUI is distributed under the MIT License. Please include the license text when redistributing TelUI or derivative works,&lt;/p&gt;

&lt;p&gt;URL:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/eotter-beep/telui" rel="noopener noreferrer"&gt;https://github.com/eotter-beep/telui&lt;/a&gt;&lt;/p&gt;

</description>
      <category>tooling</category>
      <category>ui</category>
      <category>javascript</category>
      <category>css</category>
    </item>
    <item>
      <title>TelUI 1.1: New TelUI version! Complete with tools you need to develop good software.</title>
      <dc:creator>eotter-beep</dc:creator>
      <pubDate>Sat, 08 Nov 2025 23:57:22 +0000</pubDate>
      <link>https://dev.to/eotterbeep/telui-11-new-telui-version-complete-with-tools-you-need-to-develop-good-software-16dg</link>
      <guid>https://dev.to/eotterbeep/telui-11-new-telui-version-complete-with-tools-you-need-to-develop-good-software-16dg</guid>
      <description>&lt;h1&gt;
  
  
  TelUI
&lt;/h1&gt;

&lt;p&gt;TelUI is a Electron-based UI framework that packages a handful of reusable front-end primitives—color utilities, typography helpers, and basic structural styles—so you can prototype simple desktop UI ideas with minimal setup.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;Bundled Electron runner (&lt;code&gt;npm start&lt;/code&gt;) that serves &lt;code&gt;index.html&lt;/code&gt; for instant desktop previews.&lt;/li&gt;
&lt;li&gt;Tokenized styling layers: &lt;code&gt;color.css&lt;/code&gt;, &lt;code&gt;font.css&lt;/code&gt;, and &lt;code&gt;header.css&lt;/code&gt; keep presentation rules isolated and easy to remix.&lt;/li&gt;
&lt;li&gt;Micro-interaction helpers in &lt;code&gt;animation.css&lt;/code&gt; (e.g., &lt;code&gt;.hover-fade&lt;/code&gt;, &lt;code&gt;light&lt;/code&gt;) for subtle hover states or accent passes.&lt;/li&gt;
&lt;li&gt;Google Fonts integration (Funnel Display) plus opt-in utility classes like &lt;code&gt;.arial&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Drop-in icon assets under &lt;code&gt;icons/&lt;/code&gt; to help illustrate loading and status states.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Quick start
&lt;/h2&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;npm start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The app launches an 800×600 Electron window that loads &lt;code&gt;index.html&lt;/code&gt;. Modify any CSS or HTML file and restart (or reload) to see the changes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Project layout
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;index.js       # Electron bootstrapper
index.html     # Demo canvas that consumes TelUI styles
font.css       # Typography utilities and Google Fonts import
color.css      # Color tokens (e.g., gentleblue, brightblue, gray/grey, green)
animation.css  # Hover fade helper and light filter effects
header.css     # Structural tweaks for header containers
icons/         # Shared bitmap / gif assets (e.g., loading.gif)
package.json   # Dependencies and npm scripts
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Using the utilities
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Reference the styles you need in your HTML entry point:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&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;"font.css"&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;"color.css"&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;"header.css"&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;"animation.css"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Apply the provided classes or custom element tags:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;gentleblue&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;header&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;TelUI&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/header&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;"arial"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Prototype copy goes here.&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/gentleblue&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;code&gt;font.css&lt;/code&gt; exposes &lt;code&gt;.funneldisplay&lt;/code&gt; and &lt;code&gt;.arial&lt;/code&gt;. The color tokens (&lt;code&gt;gentleblue&lt;/code&gt;, &lt;code&gt;brightblue&lt;/code&gt;, &lt;code&gt;gray&lt;/code&gt;, &lt;code&gt;grey&lt;/code&gt;, &lt;code&gt;green&lt;/code&gt;) can be used either as element selectors or converted into classes if you prefer &lt;code&gt;.gentleblue&lt;/code&gt; syntax.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Add animation helpers where needed:&lt;br&gt;
&lt;/p&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;class=&lt;/span&gt;&lt;span class="s"&gt;"hover-fade funneldisplay"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Hover me&lt;span class="nt"&gt;&amp;lt;/button&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;light&amp;gt;&lt;/span&gt;Accent block&lt;span class="nt"&gt;&amp;lt;/light&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;code&gt;.hover-fade&lt;/code&gt; applies the shared opacity/scale transition; the &lt;code&gt;light&lt;/code&gt; tag gives you a filtered highlight wrapper without touching inline styles.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Reuse icons by pointing to the assets directory:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&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;"icons/loading.gif"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"Loading indicator"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Extending TelUI
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Add new color tokens or typography helpers by updating the corresponding CSS file; keep selectors declarative and organized by category.&lt;/li&gt;
&lt;li&gt;For additional Electron behaviors (menus, preload scripts, IPC), expand &lt;code&gt;index.js&lt;/code&gt; while leaving the UI-focused files framework‑agnostic.&lt;/li&gt;
&lt;li&gt;When shipping as a distributable app, configure &lt;code&gt;electron-builder&lt;/code&gt; or your favorite packager; the current setup is intentionally minimal.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  License
&lt;/h2&gt;

&lt;p&gt;Unless stated otherwise in individual files, TelUI is distributed under the MIT License. Please include the license text when redistributing TelUI or derivative works,&lt;/p&gt;

&lt;p&gt;URL:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/eotter-beep/telui" rel="noopener noreferrer"&gt;https://github.com/eotter-beep/telui&lt;/a&gt;&lt;/p&gt;

</description>
      <category>appdev</category>
    </item>
    <item>
      <title>TelUI: The best UI framework for easy-to-use applications.</title>
      <dc:creator>eotter-beep</dc:creator>
      <pubDate>Sat, 08 Nov 2025 19:18:14 +0000</pubDate>
      <link>https://dev.to/eotterbeep/telui-the-best-ui-framework-for-easy-to-use-applications-b9m</link>
      <guid>https://dev.to/eotterbeep/telui-the-best-ui-framework-for-easy-to-use-applications-b9m</guid>
      <description>&lt;h1&gt;
  
  
  TelUI
&lt;/h1&gt;

&lt;p&gt;TelUI is a Electron-based UI framework that packages a handful of reusable front-end primitives—color utilities, typography helpers, and basic structural styles—so you can prototype simple desktop UI ideas with minimal setup.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;Bundled Electron runner (&lt;code&gt;npm start&lt;/code&gt;) that serves &lt;code&gt;index.html&lt;/code&gt; for instant desktop previews.&lt;/li&gt;
&lt;li&gt;Tokenized styling layers: &lt;code&gt;color.css&lt;/code&gt;, &lt;code&gt;font.css&lt;/code&gt;, &lt;code&gt;header.css&lt;/code&gt;, and &lt;code&gt;align.css&lt;/code&gt; keep presentation rules isolated and easy to remix.&lt;/li&gt;
&lt;li&gt;Micro-interaction helpers in &lt;code&gt;animation.css&lt;/code&gt; (e.g., &lt;code&gt;.hover-fade&lt;/code&gt;, &lt;code&gt;light&lt;/code&gt;) for subtle hover states or accent passes.&lt;/li&gt;
&lt;li&gt;Google Fonts integration (Funnel Display) plus opt-in utility classes like &lt;code&gt;.arial&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Drop-in icon assets under &lt;code&gt;icons/&lt;/code&gt; to help illustrate loading and status states.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Quick start
&lt;/h2&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;npm run start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The app launches an 800×600 Electron window that loads &lt;code&gt;index.html&lt;/code&gt;. Modify any CSS or HTML file and restart (or reload) to see the changes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Project layout
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;index.js       # Electron bootstrapper
index.html     # Demo canvas that consumes TelUI styles
font.css       # Typography utilities and Google Fonts import
color.css      # Color tokens (e.g., gentleblue, brightblue, gray/grey, green)
animation.css  # Hover fade helper and light filter effects
header.css     # Structural tweaks for header containers
align.css      # `&amp;lt;center&amp;gt;` helper to horizontally center any block
icons/         # Shared bitmap / gif assets (e.g., loading.gif)
package.json   # Dependencies and npm scripts
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Using the utilities
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Reference the styles you need in your HTML entry point:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&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;"font.css"&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;"color.css"&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;"header.css"&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;"animation.css"&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;"align.css"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Apply the provided classes or custom element tags:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;gentleblue&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;header&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;TelUI&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/header&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;"arial"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Prototype copy goes here.&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/gentleblue&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;code&gt;font.css&lt;/code&gt; exposes &lt;code&gt;.funneldisplay&lt;/code&gt; and &lt;code&gt;.arial&lt;/code&gt;. The color tokens (&lt;code&gt;gentleblue&lt;/code&gt;, &lt;code&gt;brightblue&lt;/code&gt;, &lt;code&gt;gray&lt;/code&gt;, &lt;code&gt;grey&lt;/code&gt;, &lt;code&gt;green&lt;/code&gt;) can be used either as element selectors or converted into classes if you prefer &lt;code&gt;.gentleblue&lt;/code&gt; syntax.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Add animation helpers where needed:&lt;br&gt;
&lt;/p&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;class=&lt;/span&gt;&lt;span class="s"&gt;"hover-fade funneldisplay"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Hover me&lt;span class="nt"&gt;&amp;lt;/button&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;light&amp;gt;&lt;/span&gt;Accent block&lt;span class="nt"&gt;&amp;lt;/light&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;code&gt;.hover-fade&lt;/code&gt; applies the shared opacity/scale transition; the &lt;code&gt;light&lt;/code&gt; tag gives you a filtered highlight wrapper without touching inline styles.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Center blocks with the dedicated tag:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;center&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;button&amp;gt;&lt;/span&gt;CTA&lt;span class="nt"&gt;&amp;lt;/button&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/center&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The &lt;code&gt;align.css&lt;/code&gt; stylesheet constrains &lt;code&gt;&amp;lt;center&amp;gt;&lt;/code&gt; to &lt;code&gt;max-width: fit-content&lt;/code&gt; and uses auto horizontal margins so any nested elements stay centered without extra wrappers.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Reuse icons by pointing to the assets directory:&lt;br&gt;
&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&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;"icons/loading.gif"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"Loading indicator"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Extending TelUI
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Add new color tokens or typography helpers by updating the corresponding CSS file; keep selectors declarative and organized by category.&lt;/li&gt;
&lt;li&gt;For additional Electron behaviors (menus, preload scripts, IPC), expand &lt;code&gt;index.js&lt;/code&gt; while leaving the UI-focused files framework‑agnostic.&lt;/li&gt;
&lt;li&gt;When shipping as a distributable app, configure &lt;code&gt;electron-builder&lt;/code&gt; or your favorite packager; the current setup is intentionally minimal.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  License
&lt;/h2&gt;

&lt;p&gt;Unless stated otherwise in individual files, TelUI is distributed under the MIT License. Please include the license text when redistributing TelUI or derivative works,&lt;/p&gt;

&lt;p&gt;URL:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/eotter-beep/telui/blob/main" rel="noopener noreferrer"&gt;https://github.com/eotter-beep/telui/blob/main&lt;/a&gt;&lt;/p&gt;

</description>
      <category>tooling</category>
      <category>ui</category>
      <category>javascript</category>
      <category>css</category>
    </item>
  </channel>
</rss>
