<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="/feed.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" /><updated>2026-04-10T06:31:56+00:00</updated><id>/feed.xml</id><title type="html">Own Your Website</title><subtitle>A simple, modern template for building your own website.</subtitle><entry><title type="html">Customizing Your Design</title><link href="/blog/customizing-your-design/" rel="alternate" type="text/html" title="Customizing Your Design" /><published>2024-02-01T00:00:00+00:00</published><updated>2024-02-01T00:00:00+00:00</updated><id>/blog/customizing-your-design</id><content type="html" xml:base="/blog/customizing-your-design/"><![CDATA[<p>One of the best parts of owning your website is making it uniquely yours. This template uses Tailwind CSS with custom theme variables, making customization straightforward.</p>

<h2 id="the-color-system">The Color System</h2>

<p>All colors are defined in <code class="language-plaintext highlighter-rouge">assets/css/tailwind.css</code> using the OKLCH color format. This modern color space provides more perceptually uniform colors and wider gamut support.</p>

<h3 id="changing-your-primary-color">Changing Your Primary Color</h3>

<p>To change your primary brand color, edit the <code class="language-plaintext highlighter-rouge">@theme</code> block:</p>

<div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="k">@theme</span> <span class="p">{</span>
  <span class="py">--color-primary-500</span><span class="p">:</span> <span class="nf">oklch</span><span class="p">(</span><span class="m">0.58</span> <span class="m">0.22</span> <span class="m">265</span><span class="p">);</span>
  <span class="py">--color-primary-600</span><span class="p">:</span> <span class="nf">oklch</span><span class="p">(</span><span class="m">0.50</span> <span class="m">0.22</span> <span class="m">265</span><span class="p">);</span>
  <span class="c">/* ... */</span>
<span class="p">}</span>
</code></pre></div></div>

<p>The three values represent:</p>
<ul>
  <li><strong>Lightness</strong> (0-1): How light or dark the color is</li>
  <li><strong>Chroma</strong> (0-0.4): Color intensity/saturation</li>
  <li><strong>Hue</strong> (0-360): The color angle (red=0, green=145, blue=265)</li>
</ul>

<h2 id="typography">Typography</h2>

<p>The template uses the Public Sans font family, a clean and modern typeface. You can swap this for any other web font by updating the <code class="language-plaintext highlighter-rouge">@font-face</code> declarations.</p>

<h2 id="components">Components</h2>

<p>Visit the <a href="/design">design system page</a> to see all available components:</p>

<ul>
  <li>Buttons in various styles and sizes</li>
  <li>Cards and containers</li>
  <li>Form elements</li>
  <li>Alerts and notifications</li>
  <li>Spacing and shadow scales</li>
</ul>

<h2 id="building-your-css">Building Your CSS</h2>

<p>After making changes, rebuild the CSS:</p>

<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>npm run build:css
</code></pre></div></div>

<p>This compiles your Tailwind styles and includes only the classes you’re actually using, keeping your CSS file small and fast.</p>

<h2 id="tips-for-good-design">Tips for Good Design</h2>

<ol>
  <li><strong>Stick to your palette</strong> - Use your defined colors consistently</li>
  <li><strong>Maintain hierarchy</strong> - Use size and weight to show importance</li>
  <li><strong>Whitespace matters</strong> - Don’t be afraid of empty space</li>
  <li><strong>Test on mobile</strong> - Most visitors will be on phones</li>
</ol>

<p>Happy customizing!</p>]]></content><author><name>Your Name</name></author><summary type="html"><![CDATA[Learn how to personalize the colors, typography, and components of your website.]]></summary></entry><entry><title type="html">Getting Started With Your Own Website</title><link href="/blog/getting-started-with-your-own-website/" rel="alternate" type="text/html" title="Getting Started With Your Own Website" /><published>2024-01-15T00:00:00+00:00</published><updated>2024-01-15T00:00:00+00:00</updated><id>/blog/getting-started-with-your-own-website</id><content type="html" xml:base="/blog/getting-started-with-your-own-website/"><![CDATA[<p>Taking control of your online presence starts with owning your own website. Unlike social media platforms where algorithms decide who sees your content, your website is truly yours.</p>

<h2 id="why-build-your-own-website">Why Build Your Own Website?</h2>

<p>There are several compelling reasons to manage your own website:</p>

<ol>
  <li><strong>Ownership</strong> - Your content lives on your domain, not someone else’s platform</li>
  <li><strong>No algorithms</strong> - Visitors see exactly what you publish, in the order you choose</li>
  <li><strong>Longevity</strong> - Social platforms come and go, but your domain is yours forever</li>
  <li><strong>Flexibility</strong> - Complete control over design, layout, and functionality</li>
</ol>

<h2 id="getting-started">Getting Started</h2>

<p>This template makes it easy to get started:</p>

<ol>
  <li>Fork the repository on GitHub</li>
  <li>Customize the colors in <code class="language-plaintext highlighter-rouge">assets/css/tailwind.css</code></li>
  <li>Update the content in your pages</li>
  <li>Deploy to GitHub Pages (free!) or your preferred host</li>
</ol>

<h2 id="customizing-your-site">Customizing Your Site</h2>

<p>Check out the <a href="/design">design system</a> to see all the available colors, typography, and components. The theme uses CSS custom properties, making it simple to change the entire color palette by editing a few values.</p>

<h2 id="whats-next">What’s Next?</h2>

<p>Once you have your site running, you can:</p>

<ul>
  <li>Add more pages for different sections</li>
  <li>Write blog posts to share your thoughts</li>
  <li>Connect your custom domain</li>
  <li>Add analytics to understand your visitors</li>
</ul>

<p>The possibilities are endless when you own your platform.</p>]]></content><author><name>Your Name</name></author><summary type="html"><![CDATA[A beginner's guide to setting up and customizing your personal website using this template.]]></summary></entry></feed>