-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
+++ | ||
reading_time = false # Show estimated reading time? | ||
share = false # Show social sharing links? | ||
profile = false # Show author profile? | ||
comments = false # Show comments? | ||
title = "Design and brand guidelines" | ||
banner.image = false | ||
+++ | ||
|
||
## Brand guidelines | ||
|
||
Our [Brand Guidelines document](https://docs.google.com/presentation/d/1O36_yjTSKiXB9_yAnj4QnF_sob1z_GQmcfIVrZ_ymeY/edit?usp=drive_link) describes 2i2c's overall brand and visual style. | ||
|
||
## Logos | ||
|
||
### Square logo (default) | ||
|
||
**Logo** | ||
|
||
![](logo.png) | ||
|
||
**Logo white** | ||
|
||
![](logo-white.png) | ||
|
||
**Logo black** | ||
|
||
![](logo-black.png) | ||
|
||
### Wide logos | ||
|
||
**Wide logo** | ||
|
||
![](logo-wide.png) | ||
|
||
**Wide logo white** | ||
|
||
![](logo-wide-white.png) | ||
|
||
## Colors | ||
|
||
### Primary colors | ||
|
||
- Big Blue: `#1D4EF5` | ||
- Pale Blue: `#F2F5FC` | ||
- Black: `#000000` | ||
|
||
### Secondary colors | ||
|
||
- Midnight: `#230344` | ||
- Mauve: `#B86BFC` | ||
|
||
- Forest: `#057761` | ||
- Light Green: `#0CEFAE` | ||
|
||
- Magenta: `#C60A76` | ||
- Pink: `#FF808B` | ||
|
||
- Coral: `#FF4E4F` | ||
- Yellow: `#FFDE17` | ||
|
||
## Design assets | ||
|
||
_These two links are only accessible to 2i2c team members._ | ||
|
||
[Figma canvas with design assets](https://www.figma.com/file/pp9e4cNYthJnm8u6MzpUdp/Logo-and-brand-assets?type=design&node-id=0%3A1&mode=design&t=Rtl3KwVFv63I4sj9-1) | ||
|
||
[Google Drive folder with design assets](https://drive.google.com/drive/folders/1YMb1nEW-tX8DaNPzKx5IOJ747BPQDDDe?usp=drive_link) | ||
|
||
|
||
|
||
<script> | ||
// This is a hacky little script to add a circle to preview the color for in-line color snippets. | ||
function addColorCircle() { | ||
document.querySelectorAll("code").forEach((el) => { | ||
color = el.textContent; | ||
if (color.startsWith("#")) { | ||
el.insertAdjacentHTML('afterbegin', `<span class='colorDemo' style='background-color: ${color}'></span>`); | ||
} | ||
}); | ||
} | ||
addColorCircle(); | ||
</script> | ||
<style> | ||
.colorDemo { | ||
width: .7rem; | ||
height: .7rem; | ||
margin-right: .2rem; | ||
display: inline-flex; | ||
border-radius:1rem; | ||
} | ||
|
||
figure img { | ||
height: 5rem; | ||
width: auto; | ||
float: left; | ||
} | ||
</style> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.