12 Dec 2022 · 3 min read

Kecil, part 8 - making it look like mine

A logo in Canva, dropped into /public/images, and a find-and-replace across the views. This is where you can tell I have no design training.

The Kecil logo: purple scissors cutting a chain link
The logo - scissors over a link. Subtle it is not.
VS Code search and replace changing the logo path across the project
One find-and-replace swaps the template's logo path for mine across every view.
Canva colour wheel generating a tetradic palette from a purple base
Canva's colour wheel, tetradic from the logo purple. That is the entire design process.

Then a template.css loaded after the theme's stylesheet in every page, so overrides win without editing vendor files:

<link rel="stylesheet" href="/css/template.css">
.content-wrapper { background: #ffffff !important; }
.auth .auth-form-light { background: #ffffff; border-radius: 10px; }
.card { box-shadow: 2px 2px 10px 2px rgba(91, 46, 110, .8); }
.footer { background: #ffffff; }

Keeping the personal layer in one file means the template can be swapped later without unpicking anything. The app is yours from here.

The finished Kecil dashboard with the scissors logo and purple accents
Part 8 done: own logo, own palette, the template underneath but no longer recognisable.

Share this

← All writing