Looka Theme Documentation
Customizing Theme Colors & Fonts
The Looka theme uses CSS variables in src/styles/theme.css for colors and typography. Update these values to match your brand.
@theme inline { /* Configure font families in `src/config/fonts.json` */ --leading-body: 1.8; --leading-inherit: inherit;
/* Colors */ --color-primary: #1f58eb; --color-secondary: #BCD4FF; --color-accent: #E4EA8C; --color-body: #fff; --color-border-light: #E5E5E5; --color-theme-dark: #101E43; --color-theme-light: #F9FBFF;
--color-text-default: #2E2E2E; --color-dark: #000E30; /* Heading colors */ --color-light: #565555;
}Customizing Colors
- Adjust the
--color-*variables to match your brand palette. - Update
--color-text-*variables to refine text contrast.
Typography Settings
Fonts are configured in src/config/fonts.json and loaded automatically.
[ { "name": "DM Sans", "weights": [ 400, 500, 600, 700 ], "styles": [ "normal" ], "preload": false, "display": "swap", "cssVariable": "--font-primary", "provider": "google", "subsets": [ "latin" ], "fallbacks": [ "sans-serif" ] }, { "name": "Syne", "weights": [ 700 ], "styles": [ "normal" ], "preload": false, "display": "swap", "cssVariable": "--font-secondary", "provider": "google", "subsets": [ "latin" ], "fallbacks": [ "sans-serif" ] }]Font Customization
- Update
name,weights/variants, andstylesto match your brand. - Keep
cssVariablein sync with theme styles that reference it. - For local fonts, ensure the
srcpaths exist and are committed.