Skip to content

Commit

Permalink
Add design page'
Browse files Browse the repository at this point in the history
  • Loading branch information
choldgraf committed Nov 14, 2023
1 parent eb6cacc commit cdd3428
Show file tree
Hide file tree
Showing 6 changed files with 98 additions and 0 deletions.
98 changes: 98 additions & 0 deletions content/design/index.md
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>
Binary file added content/design/logo-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/design/logo-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/design/logo-wide-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/design/logo-wide.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/design/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cdd3428

Please sign in to comment.