Making It Yours
Your curriculum is deployed and the CMS works. Now it's time to make it feel like yours.
Priority Order
Resist the temptation to start with colors and logos. The most impactful customizations are:
- Content - What you teach matters most
- Messaging - Clear descriptions of what learners gain
- Visual identity - Colors, logos, typography
Work in this order for maximum impact with minimum effort.
Site Settings
The CMS provides a simple interface for core settings:
- Navigate to
/admin/ - Click "Settings" in the sidebar
- Select "Site Settings"
Here you can update:
- Site Title: Appears in browser tabs and search results
- Description: The meta description for SEO
- Author: Attribution shown in the footer
Changes save to content/settings/site.json and trigger a rebuild.
The About Page
Your About page is often the second page visitors read. Make it count.
Good About pages include:
- The problem: What gap does this curriculum fill?
- The approach: How is this different from alternatives?
- The outcome: What will learners be able to do?
- Your credibility: Why should they trust this curriculum?
Edit it through the CMS under "Pages" → "About".
Color Theming
The curriculum uses CSS custom properties for easy theming. To change colors:
- Open
src/app.cssin your code editor - Find the
:rootblock (near the top) - Modify the color variables:
:root {
/* Primary color - used for links, buttons, accents */
--color-primary: #2563eb;
/* Background colors */
--color-background: #ffffff;
--color-surface: #f9fafb;
/* Text colors */
--color-text: #1f2937;
--color-text-muted: #6b7280;
/* Other colors */
--color-border: #e5e7eb;
--color-success: #10b981;
}
Choosing Colors
For academic curricula, consider:
- Muted, professional tones - Blues, greens, warm grays
- High contrast - Ensure text is readable
- Consistency - One primary color, used consistently
Tools for color selection:
- Coolors - Palette generator
- Contrast Checker - Accessibility verification
Dark Mode
The template includes basic dark mode support via prefers-color-scheme. To customize dark mode colors, add:
@media (prefers-color-scheme: dark) {
:root {
--color-background: #1f2937;
--color-surface: #374151;
--color-text: #f9fafb;
/* ... other dark mode colors */
}
}
Typography
To change fonts:
- Add your font (Google Fonts, local files, etc.)
- Update the font variables:
:root {
--font-body: 'Inter', system-ui, sans-serif;
--font-heading: 'Playfair Display', Georgia, serif;
--font-mono: 'JetBrains Mono', monospace;
}
For academic content, consider:
- Serif headings - Traditional, scholarly feel
- Sans-serif body - Clean, readable on screens
- Generous line height - 1.5-1.7 for body text
Adding a Logo
To add a logo:
- Create or obtain your logo (SVG preferred for quality)
- Save it to
static/images/logo.svg - The header component will display it
For text-only branding, the site title displays in the header by default.
Favicon
To change the browser tab icon:
- Create a favicon (use favicon.io for generation)
- Replace
static/favicon.png - Redeploy
Advanced Customization
For deeper changes, you can edit the Svelte components directly:
src/routes/+layout.svelte- Site-wide layoutsrc/routes/+page.svelte- Homepage- Component styling in each
.sveltefile
This requires basic knowledge of HTML, CSS, and Svelte. The codebase is intentionally simple to make customization accessible.
What Not to Customize
Some things are better left alone:
- Content structure - The cluster/lesson hierarchy works
- CMS configuration - Unless you understand the implications
- Build settings - The defaults are optimized
Focus your energy on content and light visual tweaks. The infrastructure should fade into the background.
Assignment
Customize your curriculum in this order:
1. Site Identity (CMS)
- Log into the CMS at
/admin/ - Go to "Settings" → "Site Settings"
- Update:
- Site title
- Site description (for SEO)
- Author name
- Save and publish
2. About Page (CMS)
- Go to "Pages" → "About"
- Write a compelling description of your curriculum
- Include:
- What learners will gain
- Who this is for
- Your background/credibility
- Save and publish
3. Colors (Code)
If you want custom colors, edit src/app.css:
- Find the
:rootsection - Change
--color-primaryto your brand color - Commit and push
4. Logo (Files) To add a logo:
- Add your logo image to
static/images/ - Update the logo path in Site Settings
- Or edit the header component directly
Site Settings
Core site information is stored in content/settings/site.json:
- title: Your curriculum's name (appears in browser tabs)
- description: Meta description for search engines
- author: Creator attribution
- logo: Path to your logo image
Edit these through the CMS under "Settings" → "Site Settings".
CSS Custom Properties
The curriculum uses CSS custom properties (variables) for theming. Key variables in src/app.css:
:root {
--color-primary: #2563eb;
--color-background: #ffffff;
--color-text: #1f2937;
--font-body: system-ui, sans-serif;
--font-heading: system-ui, sans-serif;
}
Change these values to instantly update colors across the entire site.
Content-First Customization
The most important customization isn't visual—it's your content.
Before tweaking colors:
- Write compelling cluster and lesson descriptions
- Craft a clear About page explaining your curriculum's purpose
- Define your domain and audience clearly
Good content with default styling beats poor content with custom branding.
What should you customize before changing colors?
Hint: Think about what visitors actually read vs. what they see.
How do CSS custom properties make theming easier?
Hint: Consider what happens when you change a variable in one place.