Skip to content

Commit c44ad7b

Browse files
committed
feat: unify brand colors to blue/teal across docs and landing page, update one-liner
1 parent 4838271 commit c44ad7b

3 files changed

Lines changed: 25 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img src="assets/lerim.png" alt="Lerim Logo" width="160">
33
</p>
44

5-
<h3 align="center">Your coding agents forget everything after each session.<br>Lerim learns — across all of them.</h3>
5+
<h3 align="center">You shouldn't have to repeat yourself every session, to every agent.<br>Lerim makes your decisions, patterns, and context persist across all of them.</h3>
66

77
<p align="center">
88
<a href="https://pypi.org/project/lerim/"><img src="https://img.shields.io/pypi/v/lerim?style=flat-square&color=blue" alt="PyPI version"></a>

docs/stylesheets/extra.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
/* Custom CSS for Lerim docs — enriches MkDocs Material with
22
step indicators, parameter fields, hero sections, and feature grids. */
33

4+
/* ── Brand colors (matching lerim-landing: blue #3b82f6 + teal #10b981) ── */
5+
:root,
6+
[data-md-color-scheme="default"] {
7+
--md-primary-fg-color: #3b82f6;
8+
--md-primary-fg-color--light: #60a5fa;
9+
--md-primary-fg-color--dark: #2563eb;
10+
--md-accent-fg-color: #10b981;
11+
--md-accent-fg-color--transparent: rgba(16, 185, 129, 0.1);
12+
}
13+
14+
[data-md-color-scheme="slate"] {
15+
--md-primary-fg-color: #3b82f6;
16+
--md-primary-fg-color--light: #60a5fa;
17+
--md-primary-fg-color--dark: #2563eb;
18+
--md-accent-fg-color: #10b981;
19+
--md-accent-fg-color--transparent: rgba(16, 185, 129, 0.1);
20+
--md-default-bg-color: #0f172a;
21+
--md-default-bg-color--light: #1e293b;
22+
}
23+
424
/* ── Hero section on landing page ── */
525
.hero {
626
text-align: center;

mkdocs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ theme:
1212
palette:
1313
- media: "(prefers-color-scheme: light)"
1414
scheme: default
15-
primary: deep purple
16-
accent: purple
15+
primary: custom
16+
accent: custom
1717
toggle:
1818
icon: material/brightness-7
1919
name: Switch to dark mode
2020
- media: "(prefers-color-scheme: dark)"
2121
scheme: slate
22-
primary: deep purple
23-
accent: purple
22+
primary: custom
23+
accent: custom
2424
toggle:
2525
icon: material/brightness-4
2626
name: Switch to light mode

0 commit comments

Comments
 (0)