Add Matter and Mattermost logos, update styles, and enhance Thread logo

- Added Matter and Mattermost logos in SVG format with appropriate attributes and color sets.
- Updated global CSS to include new color variables for default fills.
- Modified existing Mattermost logo to include additional color options.
- Replaced the Thread logo with a new SVG version.
This commit is contained in:
sHa
2025-06-10 18:00:35 +03:00
parent a94fdc992a
commit 222ab46fc3
7 changed files with 177 additions and 4 deletions

View File

@@ -14,6 +14,7 @@
--color-card: var(--card-background);
--color-accent: var(--primary-color);
--color-accent-hover: var(--primary-color-hover);
--color-default-fill: #c8aca5;
}
/* Dark theme overrides - using both media query and class-based approach */
@@ -45,6 +46,7 @@
--color-text: #333333;
--color-border: #ddd;
--color-accent: var(--primary-color);
--color-default-fill: #524643;
}
* {
@@ -116,7 +118,7 @@ button:hover {
background: var(--color-accent);
color: var(--white);
font-weight: bold;
outline: 2px solid var(--color-border);
/* outline: 2px solid var(--color-border); */
}
.copy-btn,
@@ -355,7 +357,7 @@ div.logo-image img {
max-height: 100%;
display: block;
object-fit: contain;
color: var(--color-text);
color: var(--color-default-fill);
}
/* Modal styles */