7684e0c9bd
Brand assets из !100 пришли с DeepBlue/SkyBlue colors (design system prototype). Ordinis app theme uses warm terracotta accent (#d97757 light / #b05a2e dark) на cream/ink palette. Never blue. Recolored все 5 SVG + inline Sidebar mark: - favicon.svg: stroke #d97757, dots/core #b05a2e - ordinis-mark.svg: orbits #e6e1d4 (line), dots accent gradient terracotta - ordinis-appicon.svg: dark warm-ink tile (#2c2b27 → #1a1714), accent dots, white outer dots for contrast on dark - ordinis-lockup-light.svg: terracotta orbits + warm-ink wordmark (Tektur) - ordinis-lockup-dark.svg: warm-dark bg + terracotta accents + cream wordmark - Sidebar inline svg: currentColor + text-accent, var(--color-line) для orbits — автоматически работает в both light + dark themes - index.html: theme-color/mask-icon → #b05a2e (terracotta dark) User feedback: 'DeepBlue никакого синего адаптируй под наши темы'.
17 lines
590 B
HTML
17 lines
590 B
HTML
<!doctype html>
|
|
<html lang="ru-RU">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="apple-touch-icon" href="/ordinis-appicon.svg" />
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#b05a2e" />
|
|
<meta name="theme-color" content="#b05a2e" />
|
|
<title>Ordinis Admin</title>
|
|
</head>
|
|
<body class="bg-zinc-50 text-zinc-900">
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|