Skip to main content
Ctrl+K
RockVerse documentation - Home RockVerse documentation - Home
  • Getting started
  • Tutorials
  • Gallery
  • API
  • Getting Help
    • Mailing list
  • GitHub
  • StackOverflow
  • LinkedIn
  • Getting started
  • Tutorials
  • Gallery
  • API
  • Getting Help
  • Mailing list
  • GitHub
  • StackOverflow
  • LinkedIn

Section Navigation

  • Using the RockVerse logo
  • Belgian Fieldstone Sample
  • Bentheimer Sandstone Sample
    • Exploring the Orthogonal Viewer
  • C04B21 Dual Energy Carbonate Core CT
  • Exploring the Orthogonal Viewer
  • Gallery
  • Using the RockVerse logo

Using the RockVerse logo#

You are encouraged to incorporate the RockVerse logo on websites, presentations, and elsewhere to indicate the use of RockVerse in your work. The RockVerse logo comes in three different models, each with options for white and black backgrounds (a total of six variations).

Use the make_logo function to generate the logo as a Matplotlib figure, which can be saved in various formats and resolutions. This will guarantee the right proportions and margins.

Model 1#

Model 1, the “vertical mode”, builds the rock model with “RockVerse” written below.

[1]:
#For interactive plotting:
%matplotlib qt

import rockverse as rv

#Call the make_logo function for model 1
fig1w = rv.make_logo(model=1, facecolor='white')
fig1b = rv.make_logo(model=1, facecolor='black')

#Outputs are Matplotlib figures, save it to disk with desired format and resolution
fig1w.savefig('rockverse_logo_model1_white.png', dpi=300)
fig1b.savefig('rockverse_logo_model1_black.png', dpi=300)

This generates the two images below with white and black background, respectively. Notice how some of the colors change based on the chosen background color.

5b8a360467b54edc892e689d4fcdcc49 5a635e942d464848b61b8521752ee169

Model 2#

Model 2 is just model 1 without the writing:

[2]:
fig2w = rv.make_logo(model=2, facecolor='white')
fig2b = rv.make_logo(model=2, facecolor='black')
fig2w.savefig('rockverse_logo_model2_white.png', dpi=300)
fig2b.savefig('rockverse_logo_model2_black.png', dpi=300)

9bc2ecb920a1416f81e14f8e7d895e99 877e369fe8184555b60eba455fb438af

Model 3#

Model 3 is the “horizontal mode”, placing more emphasis on the library’s name.

[3]:
fig3w = rv.make_logo(model=3, facecolor='white')
fig3b = rv.make_logo(model=3, facecolor='black')
fig3w.savefig('rockverse_logo_model3_white.png', dpi=300)
fig3b.savefig('rockverse_logo_model3_black.png', dpi=300)

10e51e5a85a2407ba90f63354bdb9650 68eb05ebffc14e9f8208ffa40a26c484

Using transparent background#

If backgrounds are light or dark gray, you have the option of saving the images with transparent background, giving a nice touch to the final design.

Below is a comparison between the white and transparent face colors over a light gray background:

[4]:
fig1w.savefig('rockverse_logo_model1_white_transparent.png', dpi=300, transparent=True)
fig2w.savefig('rockverse_logo_model2_white_transparent.png', dpi=300, transparent=True)
fig3w.savefig('rockverse_logo_model3_white_transparent.png', dpi=300, transparent=True)

47a197ad70274ed1b7e5197a54071c69 4419be8c24ed45ef8f6e74a808544c35

Similarly, here is the comparison for the dark mode on a dark gray background:

[5]:
fig1b.savefig('rockverse_logo_model1_black_transparent.png', dpi=300, transparent=True)
fig2b.savefig('rockverse_logo_model2_black_transparent.png', dpi=300, transparent=True)
fig3b.savefig('rockverse_logo_model3_black_transparent.png', dpi=300, transparent=True)

693261fea2be45c3934f22b81d9e9838 2eea91179a3c488794144e3342adcd1c

Note! Please be careful not to use a transparent face color over colored backgrounds, which can lead to poor contrast between the logo and the background. In these cases, prefer white face color.

d3b072d73dba4fb2a5976293e9b4313d fd07207a78a94b4faea4d6b39b2a7531 37a4a712c04147daab12e0b0f5f75baf

a023cbf50c74435a9df8d85747f7e71d 801b98f4fefe49a9abb353fe4fc89dd4 6d84afb1ed0143aead5c6e4b57f05f75

Download#

Below you can download the images generated in these examples:

  • rockverse_logo_model1_white.png

  • rockverse_logo_model1_white_transparent.png

  • rockverse_logo_model1_black.png

  • rockverse_logo_model1_black_transparent.png

  • rockverse_logo_model2_white.png

  • rockverse_logo_model2_white_transparent.png

  • rockverse_logo_model2_black.png

  • rockverse_logo_model2_black_transparent.png

  • rockverse_logo_model3_white.png

  • rockverse_logo_model3_white_transparent.png

  • rockverse_logo_model3_black.png

  • rockverse_logo_model3_black_transparent.png

previous

Gallery

next

API

On this page
  • Model 1
  • Model 2
  • Model 3
  • Using transparent background
  • Download

This Page

  • Show Source

© Copyright 2024, Rodolfo A. Victor.

Created using Sphinx 8.1.3.

Last updated on Jan 31, 2025.

Built with the PyData Sphinx Theme 0.16.1.