Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add branding guidelines page #143

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
80 changes: 80 additions & 0 deletions content/branding_guidelines.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
---
template: fullwidth.html
title: Branding Guidelines
---

The following guidelines are made available for anyone who wants to use the Valkey logo and/or brand assets.

It is important that these guidelines are followed so that people can easily identify all references to Valkey, and to ensure consistency.

## Logo Overview
<section class="branding-split-container">
{% logo_split_section(title="Primary Logo", image_url="/img/valkey-horizontal-color.svg", image_width="380px", image_alt="Valkey Horizontal Logo") %}
This is our primary logo and should be used wherever possible.
{% end %}

{% logo_split_section(title="Stacked Logo", image_url="/img/valkey-stacked-color.svg", image_width="250px", image_alt="Valkey Stacked Logo") %}
In the instance where the primary logo can not be used, the stacked variation is acceptable.
{% end %}
</section>

<section class="branding-single-container">
{% logo_single_section(
title="Color Variations",
image_width="320px",
image1_url="/img/valkey-horizontal-black.svg",
image1_alt="Valkey Horizontal Black Logo",
image2_url="/img/valkey-horizontal-color-light.svg",
image2_alt="Valkey Horizontal Light Logo"
) %}
In the instance where the full color logo can not be used, there are two variations available.
{% end %}
</section>

<section class="branding-split-container">
{% logo_split_section(title="Spacing", image_url="/img/valkey-spacing-example.png", image_width="320px", image_alt="Valkey Logo Spacing Example") %}
Always preserve clear space around the Valkey logo. It is required to provide clarity and breathing room.
{% end %}

{% logo_split_section(title="Color", image_url="/img/valkey-horizontal-incorrect.svg", image_width="320px", image_alt="Valkey Logo Incorrect Color Example") %}
Changing the logo color is strictly not permitted. The Valkey logo should be used in its full color option or all-black or all-white when required.
{% end %}
</section>

<section class="branding-split-container">
{% logo_split_section(title="Elements", image_url="/img/valkey-horizontal-modified.svg", image_width="320px", image_alt="Valkey Logo Element Modification") %}
Changing the Valkey logo elements is strictly not permitted.
{% end %}

{% logo_split_section(title="Scaling", image_url="/img/valkey-horizontal-squashed.svg", image_width="320px", image_alt="Valkey Logo Scaling Modification") %}
Scaling or stretching the Valkey logo away from its normal proportions is strictly not permitted.
{% end %}
</section>

## Color Palette

<section class="palette-single-container">
<h3>Primary Color Palette</h3>
<div>
{{ palette_entry(palette_hex="#6983FF", palette_rgb="110 129 246", palette_cmyk="63 51 0 0", palette_pantone="Pantone 2718 C") }}

{{ palette_entry(palette_text_hex="#E7E4F4", palette_hex="#1A2026", palette_rgb="27 32 37", palette_cmyk="79 68 60 71", palette_pantone="Pantone Black C") }}
</div>
</section>

<section class="palette-single-container">
<h3>Secondary Color Palette</h3>
<div>
{{ palette_entry(palette_text_hex="#E7E4F4", palette_hex="#642637", palette_rgb="100 38 55", palette_cmyk="39 92 60 42", palette_pantone="Pantone 7421 C") }}

{{ palette_entry(palette_text_hex="#E7E4F4", palette_hex="#30176E", palette_rgb="48 23 110", palette_cmyk="95 100 20 14", palette_pantone="Pantone 2685 C") }}

{{ palette_entry(palette_text_hex="#1A2026", palette_hex="#E0A2AF", palette_rgb="224 162 175", palette_cmyk="4 45 15 0", palette_pantone="Pantone 494 C") }}

{{ palette_entry(palette_text_hex="#30176E", palette_hex="#BCB5E7", palette_rgb="188 181 231", palette_cmyk="24 27 0 0", palette_pantone="Pantone 2705 C") }}
</div>
</section>

There is also a downloadable [PDF version of these guidelines](https://github.com/valkey-io/assets/blob/main/Valkey%20Branding/valkey_brand_guidelines.pdf).

Further information regarding appropriate usage of the Valkey brand can be found in the [LF Projects Trademark Policy](https://lfprojects.org/policies/trademark-policy/).
93 changes: 93 additions & 0 deletions sass/_valkey.scss
Original file line number Diff line number Diff line change
Expand Up @@ -570,3 +570,96 @@ pre table {

border-top: 1px solid $grey-dk-100;
}


.branding-split-container {
display: flex;
justify-content: space-evenly;
gap: 2rem;
margin: 2rem 0;

@media (max-width: 768px) {
flex-direction: column;
}
}


.branding-section {
padding: 2rem;
border: 1px solid $grey-lt-000;
gap: 2rem;
display: flex;
flex-direction: column;
flex: 1;

img {
place-self: center;
flex: 1;
object-fit: contain;

@media (max-width: 768px) {
max-width: 100%;
}
}

div {
display: flex;
justify-content: space-evenly;
padding: 2rem;
gap: 2rem;

img:nth-of-type(2) {
background: rgb(27, 32, 37);
}

img {
flex: 0;
border: 1px solid $grey-lt-300;
padding: 2rem;
}

@media (max-width: 768px) {
flex-direction: column;
}
}
}

.palette-single-container {
border: 1px solid $grey-lt-000;
padding: 2rem;
margin: 2rem 0;

> div {
display: flex;
gap: 2rem;
flex-wrap: wrap;

@media (max-width: 768px) {
justify-content: center;
}
}
}

.palette-container {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
}

.palette-icon {
border-radius: 100%;
width: 100px;
height: 100px;
padding: 1rem;
display: flex;
justify-content: center;
align-items: center;
font-size: 1rem;
text-align: center;
}

.palette-text {
display: grid;
font-size: 1rem;
}
53 changes: 53 additions & 0 deletions static/img/valkey-horizontal-black.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions static/img/valkey-horizontal-color-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading