🐬 Ocean Protocol's assets for community distribution.
Go to file
Troy McConaghy 5568102de8 Change license to CC-BY-4.0 2019-03-26 16:25:29 +01:00
banner new banners, new mantaray, tweaked jellyfish 2018-11-22 13:19:43 +01:00
github new banners, new mantaray, tweaked jellyfish 2018-11-22 13:19:43 +01:00
jellyfish new banners, new mantaray, tweaked jellyfish 2018-11-22 13:19:43 +01:00
logo add favicon 2018-11-22 14:38:40 +01:00
mantaray new banners, new mantaray, tweaked jellyfish 2018-11-22 13:19:43 +01:00
squid add new squid assets 2018-12-21 15:13:33 +01:00
.gitignore make it an npm package 2018-06-04 17:18:17 +02:00
CONTRIBUTING.md Standardize contrib guidelines across public repos 2018-11-30 16:54:40 +01:00
LICENSE Change license to CC-BY-4.0 2019-03-26 16:25:29 +01:00
README.md Change license to CC-BY-4.0 2019-03-26 16:25:29 +01:00
package.json Change license to CC-BY-4.0 2019-03-26 16:25:29 +01:00

README.md

art

art

🐬 Ocean Protocol's assets for community distribution.

npm

All assets in this repo can also be viewed and downloaded from oceanprotocol.com/art. You'll find a living styleguide there too.


Repository Contents

Typography

Our branding typefaces are Sharp Sans Medium/Bold in use as body text, and Sharp Sans Display No. 1 Bold for headings.

Those are commercial fonts and the license doesn't allow us to distribute them. Hence you won't find them in this repository. If you're a member of the Ocean Protocol team, ask a designer to hand you the font files.

If you only need them for use on the web, you can grab them from inside the private site repo's fonts folder.

Usage

It's encouraged to use this repo as a dependency within your projects to keep the assets in sync.

Use as npm package

The whole repo is published as a npm module so just run for installation:

npm i @oceanprotocol/art

Use as a submodule

From the root of your project folder execute the following to put the submodule under lib/art/:

git submodule add git@github.com:oceanprotocol/art.git lib/art

Then, from time to time, update the submodule to get latest upstream changes:

# go into submodule folder
cd ./lib/art
git checkout master
git pull
# get back to your project root
cd ../../

# or if you're a busy person, update all your submodules at once from the root of your project
git submodule foreach git pull origin master

Usage in JavaScript/React

Import the required assets into your project, which will return the file source path:

import Logo from '@oceanprotocol/art/logo/logo.svg'

<img src={Logo} />

But you usually want SVG assets to be inlined for full control over styling with CSS. To achieve that, you can incorporate svgr into your build process to import SVG assets as actual React components:

import Logo from '@oceanprotocol/art/logo/logo.svg'

<Logo className="logo" />

And then style away in CSS:

.logo {
    fill: #141414;
    stroke: none;
}

License

All assets are licensed under a Creative Commons Attribution 4.0 International License.