Skip to content

Commit 7653ea4

Browse files
committed
docs: add brand logos
1 parent 0b21196 commit 7653ea4

6 files changed

Lines changed: 99 additions & 0 deletions

File tree

.brand/README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Finch Brand Assets
2+
3+
This directory contains official branding assets for Finch.
4+
5+
## Files
6+
7+
| File | Description |
8+
|------|-------------|
9+
| `finch-logo-horizontal.svg` | Full horizontal logo — bird mark + wordmark, light mode |
10+
| `finch-logo-horizontal-dark.svg` | Full horizontal logo — bird mark + wordmark, dark mode |
11+
| `finch-icon-circle.svg` | Bird mark inside a circle, light mode |
12+
| `finch-icon-circle-dark.svg` | Bird mark inside a circle, dark mode |
13+
14+
## Colours
15+
16+
| Role | Hex |
17+
|------|-----|
18+
| Brand navy | `#20415a` |
19+
| White | `#ffffff` |
20+
21+
## Usage
22+
23+
- Use the **light** variants on white or light-coloured backgrounds.
24+
- Use the **dark** variants on dark backgrounds (e.g. GitHub dark theme).
25+
- For GitHub `README.md` use a `<picture>` element to switch automatically:
26+
27+
```html
28+
<picture>
29+
<source media="(prefers-color-scheme: dark)" srcset=".brand/finch-logo-horizontal-dark.svg">
30+
<img src=".brand/finch-logo-horizontal.svg" alt="Finch - The Minimal Observability Infrastructure" width="300">
31+
</picture>
32+
```
33+
34+
## Notes
35+
36+
- All assets have a transparent background unless otherwise noted
37+
(`finch-icon-circle.svg` has a white fill inside the circle stroke).
38+
- Do not alter the wordmark paths or the proportions of the bird mark.

.brand/finch-icon-circle-dark.svg

Lines changed: 12 additions & 0 deletions
Loading

.brand/finch-icon-circle.svg

Lines changed: 12 additions & 0 deletions
Loading
Lines changed: 16 additions & 0 deletions
Loading

.brand/finch-logo-horizontal.svg

Lines changed: 16 additions & 0 deletions
Loading

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<picture>
2+
<source media="(prefers-color-scheme: dark)" srcset=".brand/finch-logo-horizontal-dark.svg">
3+
<img src=".brand/finch-logo-horizontal.svg" alt="Finch - The Minimal Observability Infrastructure" width="300">
4+
</picture>
5+
16
# The Minimal Observability Infrastructure
27

38
[![Tag](https://img.shields.io/github/tag/tschaefer/finchctl.svg)](https://github.com/tschaefer/finchctl/releases)

0 commit comments

Comments
 (0)