seekthemes docs
Atom

Customization

Configure Atom for CraftingStore

Customization

All settings are in base.html. Go to Design → Templates → Edit.

base.html
atom = {
    server: {
        ip: 'mc.hypixel.net',
        port: '25565',
    },
    nav_icons: {
        'ranks': 'https://example.com/ranks-icon.png',
        'crates': 'https://example.com/crates-icon.png',
    },
}

Server Status

base.html
server: {
    ip: 'mc.hypixel.net',
    port: '25565',
},

base.html
nav_icons: {
    'ranks': 'https://example.com/ranks-icon.png',
    'crates': 'https://example.com/crates-icon.png',
},

Add a line with your category slug and icon URL.


Colors

Edit the CSS variables in style.css:

style.css
:root {
  --background: rgb(28, 36, 44);
  --background-transparent: rgba(28, 36, 44, 0.85);
  --footer: #141820;
  --transparent: rgba(255, 255, 255, 0.15);
  --panel: #25323E;
  --border: #2C3A47;
}

Patrons Page

Create a new page and add this in code view:

<div class="category-title">$1000+</div>
<div class="patrons">
  <div class="patron">
    <div class="patron__name">PlayerName</div>
    <div class="patron__skin">
      <img src="https://mc-heads.net/body/PlayerName/left" alt="PlayerName" width="180" height="432" />
    </div>
  </div>
</div>

Replace PlayerName with actual usernames. Duplicate the patron div for more players.