@osage/logo
v0.1.2
Published
Official logo package for Osage Group — SVG marks, React components, and build utilities.
Downloads
339
Maintainers
Readme
@osage/logo
Official Osage Group brand marks in every format and size — SVG strings, a React
component, and pre-rendered PNG, multi-resolution ICO, favicons, and app / dock /
tray / social icons. Installable via @osage/logo, browsable in dist/.
Install
pnpm add @osage/logoUse — React
import { OsageLogo } from '@osage/logo/react';
<OsageLogo size={64} /> {/* gold mark */}
<OsageLogo variant="mono" form="wordmark" size="2rem"/> {/* ink wordmark */}
<OsageLogo variant="white" form="lockup" size={240}/> {/* white lockup */}
<OsageLogo variant="color" form="wazhazhe" size={200}/> {/* native script: 𐓏𐓘𐓻𐓘𐓻𐓟 */}
<OsageLogo variant="white" form="heritage" size={300}/> {/* mark + Wazhazhe + subtitle */}The wazhazhe and heritage forms render in Noto Sans Osage (Unicode
block U+104B0–U+104FF). The host app must load the font — the easiest path
is to import the @osage/brand preset, which already includes the Google
Fonts link and a .osage-script utility class:
@import "@osage/brand/styles/preset.css";Use — SVG strings
import { getMarkColor, getLockupWhite, getWordmarkMono } from '@osage/logo';
document.head.insertAdjacentHTML('beforeend', `<style>
.brand-mark > svg { width: 64px; height: 64px; }
</style>`);
document.querySelector('.brand-mark')!.innerHTML = getMarkColor();Variants and forms
| variant | use on background |
| ------- | ----------------------- |
| color | any (gold) |
| mono | light (ink) |
| dark | alias of mono |
| white | dark |
| form | what it is |
| ---------- | ---------------------------------------------------------------- |
| mark | medallion only (icon, square) |
| wordmark | "Osage Group" set in EB Garamond |
| wazhazhe | native Osage-script wordmark 𐓏𐓘𐓻𐓘𐓻𐓟 in Noto Sans Osage |
| lockup | mark + Latin wordmark, side by side |
| heritage | mark + Wazhazhe (Osage script) over a small Latin subtitle |
Mark design
A circular medallion with a four-point sun motif, quartered by a thin cross. The four points are a neutral reference to the four traditional districts of the Osage Nation (Pawhuska, Hominy, Fairfax, Gray Horse). It does not depict any specific tribal regalia and is appropriate for use by the holding company; the Nation itself uses its own seal.
Pre-rendered assets
assets/
├── mark/mark.svg — gold mark on transparent
├── wordmark/wordmark.svg — gold wordmark
└── favicon/favicon.svg — gold mark on ink, squareLicense
MIT. © Osage Group.
