Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .brand/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Finch Brand Assets

This directory contains official branding assets for Finch.

## Files

| File | Description |
|------|-------------|
| `finch-logo-horizontal.svg` | Full horizontal logo — bird mark + wordmark, light mode |
| `finch-logo-horizontal-dark.svg` | Full horizontal logo — bird mark + wordmark, dark mode |
| `finch-icon-circle.svg` | Bird mark inside a circle, light mode |
| `finch-icon-circle-dark.svg` | Bird mark inside a circle, dark mode |

## Colours

| Role | Hex |
|------|-----|
| Brand navy | `#20415a` |
| White | `#ffffff` |

## Usage

- Use the **light** variants on white or light-coloured backgrounds.
- Use the **dark** variants on dark backgrounds (e.g. GitHub dark theme).
- For GitHub `README.md` use a `<picture>` element to switch automatically:

```html
<picture>
<source media="(prefers-color-scheme: dark)" srcset=".brand/finch-logo-horizontal-dark.svg">
<img src=".brand/finch-logo-horizontal.svg" alt="Finch - The Minimal Observability Infrastructure" width="300">
</picture>
```

## Notes

- All assets have a transparent background unless otherwise noted
(`finch-icon-circle.svg` has a white fill inside the circle stroke).
- Do not alter the wordmark paths or the proportions of the bird mark.
12 changes: 12 additions & 0 deletions .brand/finch-icon-circle-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions .brand/finch-icon-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions .brand/finch-logo-horizontal-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions .brand/finch-logo-horizontal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# The Minimal Observability Infrastructure
<picture>
<source media="(prefers-color-scheme: dark)" srcset=".brand/finch-logo-horizontal-dark.svg">
<img src=".brand/finch-logo-horizontal.svg" alt="Finch - The Minimal Observability Infrastructure" width="300">
</picture>

# The Minimal Observability Infrastructure

[![Tag](https://img.shields.io/github/tag/tschaefer/finch.svg)](https://github.com/tschaefer/finch/releases)
[![Go Report Card](https://goreportcard.com/badge/github.com/tschaefer/finch)](https://goreportcard.com/report/github.com/tschaefer/finch)
Expand Down