diff --git a/branding/README.md b/branding/README.md index 9fecd66..7c5f66b 100644 --- a/branding/README.md +++ b/branding/README.md @@ -4,11 +4,21 @@ ## Концепция -Логотип представляет собой стилизованное изображение дома с элементами, символизирующими: -- **WiFi сигнал** (верхний правый угол) — беспроводная связь, IoT -- **Центральный хаб** (круг в центре) — управление и автоматизация -- **Точки подключения** — подключённые устройства и каналы -- **Красный цвет** — энергия, активность, современность +Логотип представляет собой изометрический куб, символизирующий: +- **Куб** — центральный хаб/контроллер умного дома, ядро системы +- **Орбитальные точки** — подключённые устройства (разные цвета = разные типы устройств) +- **Орбита** — сеть, связь между устройствами, экосистема +- **Скруглённый квадрат** — защита, безопасность, дом + +## Цветовая палитра + +``` +Primary Purple: #6366f1 (Indigo) +Secondary Purple: #8b5cf6 (Violet) +Accent Orange: #f97316 (Orange) +Accent Teal: #14b8a6 (Teal) +Background: #1e1b4b (Dark Indigo) +``` ## Файлы @@ -16,40 +26,31 @@ | Файл | Описание | Использование | |------|----------|---------------| -| `logo-primary.svg` | Основная версия с градиентом | Презентации, документация, сайт | -| `logo-simple.svg` | Упрощённая версия | UI элементы, кнопки, заголовки | -| `logo-monochrome.svg` | Монохромная версия | Тёмные фоны, печать | +| `logo-cube-square.svg` | Основная версия — куб в скруглённом квадрате | UI, сайт, презентации | +| `logo-32.png` — `logo-512.png` | PNG версии разных размеров | Приложения, документы | ### Favicon | Файл | Размер | Использование | |------|--------|---------------| | `favicon.svg` | Вектор | Современные браузеры | -| `favicon-16px.png` | 16×16 | Браузеры, списки закладок | +| `favicon-16px.png` | 16×16 | Браузеры, закладки | | `favicon-32px.png` | 32×32 | Вкладки браузера | | `favicon-48px.png` | 48×48 | Ярлыки на рабочем столе | | `favicon-64px.png` | 64×64 | Retina дисплеи | - -## Цветовая палитра - -``` -Primary Red: #ff4757 -Light Red: #ff6b7a -Dark Red: #c41e3a -Dark: #2d3436 -White: #ffffff -``` +| `apple-touch-icon.png` | 180×180 | iOS устройства | ## Подключение в HTML ```html - + - - + + + ``` @@ -57,18 +58,18 @@ ```vue ``` ## Генерация дополнительных форматов ```bash -# Конвертация SVG в PNG -rsvg-convert -w 180 -h 180 logo-simple.svg apple-touch-icon.png +# Конвертация SVG в PNG нужного размера +convert -background none -resize 256x256 logo-cube-square.svg logo-256.png -# Генерация всех размеров favicon из SVG -# Используйте онлайн-генератор или инструмент like realfavicongenerator.net +# Генерация favicon всех размеров +# Используйте realfavicongenerator.net или аналогичный сервис ``` ## Лицензия diff --git a/branding/favicon.svg b/branding/favicon.svg index e886273..326e27f 100644 --- a/branding/favicon.svg +++ b/branding/favicon.svg @@ -1,30 +1,44 @@ - - - + + + + + + + + + + + - - + + - - - - + + + + + + - - - + + + + + + + + diff --git a/branding/logo-128.png b/branding/logo-128.png new file mode 100644 index 0000000..9bb21ed --- /dev/null +++ b/branding/logo-128.png Binary files differ diff --git a/branding/logo-256.png b/branding/logo-256.png new file mode 100644 index 0000000..a744779 --- /dev/null +++ b/branding/logo-256.png Binary files differ diff --git a/branding/logo-32.png b/branding/logo-32.png new file mode 100644 index 0000000..d6f61f0 --- /dev/null +++ b/branding/logo-32.png Binary files differ diff --git a/branding/logo-512.png b/branding/logo-512.png new file mode 100644 index 0000000..0313f00 --- /dev/null +++ b/branding/logo-512.png Binary files differ diff --git a/branding/logo-64.png b/branding/logo-64.png new file mode 100644 index 0000000..4fab5d6 --- /dev/null +++ b/branding/logo-64.png Binary files differ diff --git a/branding/logo-cube-square.svg b/branding/logo-cube-square.svg new file mode 100644 index 0000000..1339cae --- /dev/null +++ b/branding/logo-cube-square.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/branding/logo-monochrome.svg b/branding/logo-monochrome.svg deleted file mode 100644 index cb9b448..0000000 --- a/branding/logo-monochrome.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/branding/logo-primary.svg b/branding/logo-primary.svg deleted file mode 100644 index 91ea06f..0000000 --- a/branding/logo-primary.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/branding/logo-simple.svg b/branding/logo-simple.svg deleted file mode 100644 index 1c5abed..0000000 --- a/branding/logo-simple.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/webclient/public/apple-touch-icon.png b/webclient/public/apple-touch-icon.png index 946bd13..bec3bfc 100644 --- a/webclient/public/apple-touch-icon.png +++ b/webclient/public/apple-touch-icon.png Binary files differ diff --git a/webclient/public/favicon-16px.png b/webclient/public/favicon-16px.png index 4edac65..9dbde92 100644 --- a/webclient/public/favicon-16px.png +++ b/webclient/public/favicon-16px.png Binary files differ diff --git a/webclient/public/favicon-32px.png b/webclient/public/favicon-32px.png index 8723f9f..de47cff 100644 --- a/webclient/public/favicon-32px.png +++ b/webclient/public/favicon-32px.png Binary files differ diff --git a/webclient/public/favicon-48px.png b/webclient/public/favicon-48px.png new file mode 100644 index 0000000..0b90c40 --- /dev/null +++ b/webclient/public/favicon-48px.png Binary files differ diff --git a/webclient/public/favicon-64px.png b/webclient/public/favicon-64px.png new file mode 100644 index 0000000..ab3fee3 --- /dev/null +++ b/webclient/public/favicon-64px.png Binary files differ diff --git a/webclient/public/favicon.svg b/webclient/public/favicon.svg index e886273..326e27f 100644 --- a/webclient/public/favicon.svg +++ b/webclient/public/favicon.svg @@ -1,30 +1,44 @@ - - - + + + + + + + + + + + - - + + - - - - + + + + + + - - - + + + + + + + +