<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Customization on Ananke Documentation</title><link>https://gohugo-ananke.github.io/documentation/customisation/</link><description>Recent content in Customization on Ananke Documentation</description><generator>Hugo</generator><language>en-gb</language><lastBuildDate>Sat, 06 Jun 2026 08:00:00 +0700</lastBuildDate><atom:link href="https://gohugo-ananke.github.io/documentation/customisation/index.xml" rel="self" type="application/rss+xml"/><item><title>Custom CSS</title><link>https://gohugo-ananke.github.io/documentation/customisation/custom-css/</link><pubDate>Sat, 06 Jun 2026 08:00:00 +0700</pubDate><guid>https://gohugo-ananke.github.io/documentation/customisation/custom-css/</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="#where-custom-css-goes"&gt;Where custom CSS goes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#register-your-css"&gt;Register your CSS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#static-files-and-external-stylesheets"&gt;Static files and external stylesheets&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#asset-pipeline-limitations"&gt;Asset pipeline limitations&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#troubleshooting-checklist"&gt;Troubleshooting checklist&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can add your own CSS on top of the theme&amp;rsquo;s styles without editing the theme.
This page covers the common path; for the full stylesheet pipeline (build order,
social hover colours, source maps) see &lt;a href="https://gohugo-ananke.github.io/documentation/customisation/styles/"&gt;Styles&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id="where-custom-css-goes"&gt;Where custom CSS goes
 &lt;a class="heading-anchor" href="#where-custom-css-goes" aria-label="Link to this section"&gt;#&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;Put your CSS files in your project&amp;rsquo;s &lt;code&gt;assets/ananke/css/&lt;/code&gt; directory:&lt;/p&gt;</description></item><item><title>Overriding Partials</title><link>https://gohugo-ananke.github.io/documentation/customisation/overriding-partials/</link><pubDate>Sat, 06 Jun 2026 08:00:00 +0700</pubDate><guid>https://gohugo-ananke.github.io/documentation/customisation/overriding-partials/</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="#how-hugo-lookup-order-works"&gt;How Hugo lookup order works&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#the-safe-override-pattern"&gt;The safe override pattern&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#a-full-example"&gt;A full example&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#keep-overrides-small"&gt;Keep overrides small&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#update-risks"&gt;Update risks&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Ananke is built from many small template files called partials. You can change
any of them without editing the theme, by placing a file with the same path in
your own project.&lt;/p&gt;
&lt;h2 id="how-hugo-lookup-order-works"&gt;How Hugo lookup order works
 &lt;a class="heading-anchor" href="#how-hugo-lookup-order-works" aria-label="Link to this section"&gt;#&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;When Hugo needs a partial, it looks in your project first and the theme second.
If a file exists at the same path in both places, &lt;strong&gt;your&lt;/strong&gt; copy wins. This is
what makes safe customisation possible: you never touch the theme, you just
shadow the file you want to change.&lt;/p&gt;</description></item><item><title>Colours</title><link>https://gohugo-ananke.github.io/documentation/customisation/colours/</link><pubDate>Fri, 16 Jan 2026 08:00:00 +0700</pubDate><guid>https://gohugo-ananke.github.io/documentation/customisation/colours/</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="#how-the-theme-uses-classes"&gt;How the theme uses classes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#background-colour"&gt;Background colour&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#body-and-font-classes"&gt;Body and font classes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#content-text-colour"&gt;Content text colour&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#post-content-typeface"&gt;Post content typeface&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#header-and-hero-classes"&gt;Header and hero classes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#accessibility-and-contrast"&gt;Accessibility and contrast&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Ananke styles colours and typography with &lt;a href="https://tachyons.io/"&gt;Tachyons&lt;/a&gt;
utility classes. You choose a class name (for example &lt;code&gt;bg-blue&lt;/code&gt; or &lt;code&gt;near-black&lt;/code&gt;)
and the theme applies it. This page lists the class-based settings.&lt;/p&gt;
&lt;h2 id="how-the-theme-uses-classes"&gt;How the theme uses classes
 &lt;a class="heading-anchor" href="#how-the-theme-uses-classes" aria-label="Link to this section"&gt;#&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;Each setting below takes a Tachyons class as its value. Background colours use
the &lt;code&gt;bg-&lt;/code&gt; prefix (for example &lt;code&gt;bg-navy&lt;/code&gt;); text colours use the colour name
directly (for example &lt;code&gt;near-white&lt;/code&gt;). Browse the available values in the
&lt;a href="https://tachyons.io/docs/themes/skins/"&gt;Tachyons skins reference&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Comments</title><link>https://gohugo-ananke.github.io/documentation/customisation/comments/</link><pubDate>Fri, 16 Jan 2026 08:00:00 +0700</pubDate><guid>https://gohugo-ananke.github.io/documentation/customisation/comments/</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="#disqus"&gt;Disqus&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#commentoio"&gt;Commento.io&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#disabling-comments"&gt;Disabling comments&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#privacy"&gt;Privacy&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Ananke currently supports two commenting systems: Disqus and &lt;a href="https://commento.io/"&gt;Commento&lt;/a&gt;.
Both render below the content on single pages.&lt;/p&gt;
&lt;h2 id="disqus"&gt;Disqus
 &lt;a class="heading-anchor" href="#disqus" aria-label="Link to this section"&gt;#&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;Using &lt;a href="https://disqus.com/"&gt;Disqus&lt;/a&gt; as a comment system for your website is an internal feature of Hugo. For more information see the official &lt;a href="http://gohugo.io/content-management/comments/"&gt;Hugo documentation&lt;/a&gt;.&lt;/p&gt;
&lt;div class="code-block"&gt;
 &lt;button class="code-copy" type="button" aria-label="Copy code to clipboard"&gt;
 &lt;span class="code-copy-label" aria-hidden="true"&gt;Copy&lt;/span&gt;
 &lt;/button&gt;
 &lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-toml" data-lang="toml"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;services&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;disqus&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nx"&gt;shortname&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;&amp;#39;YOURSHORTNAME&amp;#39;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Note that the setup for Disqus is &lt;em&gt;NOT&lt;/em&gt; done inside of the &lt;code&gt;params&lt;/code&gt; section, but with in the &lt;code&gt;services&lt;/code&gt; section of your config file. To turn off Disqus, remove, or comment out the preceding lines.&lt;/p&gt;</description></item><item><title>Hero Section</title><link>https://gohugo-ananke.github.io/documentation/customisation/hero-section/</link><pubDate>Fri, 16 Jan 2026 08:00:00 +0700</pubDate><guid>https://gohugo-ananke.github.io/documentation/customisation/hero-section/</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="#change-the-hero-background"&gt;Change the hero background&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#use-the-images-front-matter-array"&gt;Use the images front matter array&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#featured-image-as-page-resources"&gt;Featured image as Page Resources&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#other-hero-settings"&gt;Other hero settings&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#set-a-background-color-behind-transparent-hero-images"&gt;Set a background color behind transparent hero images&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="change-the-hero-background"&gt;Change the hero background
 &lt;a class="heading-anchor" href="#change-the-hero-background" aria-label="Link to this section"&gt;#&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;For any page or post you can add a featured image by including the local path in front matter (see content in the &lt;code&gt;exampleSite/content/en/_readme&lt;/code&gt; file for examples): &lt;code&gt;featured_image = '/images/gohugo-default-sample-hero-image.jpg'&lt;/code&gt;&lt;/p&gt;
&lt;h2 id="use-the-images-front-matter-array"&gt;Use the images front matter array
 &lt;a class="heading-anchor" href="#use-the-images-front-matter-array" aria-label="Link to this section"&gt;#&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;If &lt;code&gt;featured_image&lt;/code&gt; is not set, Ananke will use the first value from the page&amp;rsquo;s &lt;code&gt;images&lt;/code&gt; front matter array as the featured image.&lt;/p&gt;</description></item><item><title>Styles</title><link>https://gohugo-ananke.github.io/documentation/customisation/styles/</link><pubDate>Fri, 16 Jan 2026 08:00:00 +0700</pubDate><guid>https://gohugo-ananke.github.io/documentation/customisation/styles/</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="#update-font-or-body-classes"&gt;Update font or body classes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#stylesheet-generation"&gt;Stylesheet Generation&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="#custom-css"&gt;Custom CSS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#sassscss-and-other-pre-processors"&gt;SASS/SCSS and other pre-processors&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#built-in-css-order"&gt;Built-in CSS order&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#social-hover-colours"&gt;Social hover colours&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#output"&gt;Output&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="update-font-or-body-classes"&gt;Update font or body classes
 &lt;a class="heading-anchor" href="#update-font-or-body-classes" aria-label="Link to this section"&gt;#&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;The theme is set, by default, to use a near-white background color and the &amp;ldquo;Avenir&amp;rdquo; or serif typeface. You can change these in your config file with the &lt;code&gt;body_classes&lt;/code&gt; parameter, like this:&lt;/p&gt;
&lt;div class="code-block"&gt;
 &lt;button class="code-copy" type="button" aria-label="Copy code to clipboard"&gt;
 &lt;span class="code-copy-label" aria-hidden="true"&gt;Copy&lt;/span&gt;
 &lt;/button&gt;
 &lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-toml" data-lang="toml"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;params&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;body_classes&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;avenir bg-near-white&amp;#34;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;which will give you a body class like this:&lt;/p&gt;</description></item></channel></rss>