Typography

Typography is the thing that makes the difference between and well designed and an average website. Explore Vulk's typography.

Title

Title component variations

This is a title

This is a title

This is a title

This is a title

This is a title

This is a title

This is a title

This is a title

This is a title

This is a title

This is a title

This is a title


<template>
  <Title 
    tag="h2" 
    :size="2" 
    weight="thin" 
    leading>
    This is a title
  </Title>
</template>

Subtitle

Subtitle component variations

This is a subtitle

This is a subtitle

This is a subtitle

This is a subtitle

This is a subtitle

This is a subtitle

This is a subtitle

This is a subtitle

This is a subtitle

This is a subtitle

This is a subtitle

This is a subtitle


<template>
  <Subtitle 
    tag="h3" 
    :size="3" 
    weight="thin" 
    leading>
    This is a subtitle
  </Subtitle>
</template>

Page Title

Page title component variations

Get Started

Make it count again

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Qui ita affectus, beatum esse numquam probabis

Get Started

Make it count again

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Qui ita affectus, beatum esse numquam probabis


<template>
  <PageTitle
    title="Make it count again"
    subtitle="Get Started"
    text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Qui ita affectus, beatum esse numquam probabis"
  >
    <template #content>
      <Buttons alignment="centered" class="mt-4">
        <Button color="primary" :long="3" bold raised>
          Get Started
        </Button>
        <Button :long="3" bold>Learn More</Button>
      </Buttons>
    </template>
  </PageTitle>
</template>

Section Title

Section title component variations

Get Started

Make it count again


<template>
  <SectionTitle title="Make it count again" subtitle="Get Started" />
</template>

Collection Title

Collection title component variations

Trending 🔥

Take a closer look at our trending items


<template>
  <CollectionTitle
    title="Trending 🔥"
    subtitle="Take a closer look at our trending items"
  >
    <template #toolbar>
      <Button :long="2">View All</Button>
    </template>
  </CollectionTitle>
</template>

Paragraph

Paragraph text variations

This is a paragraph at 1.25rem

This is a paragraph at 1rem

This is a paragraph at .9rem

This is a paragraph at .8rem

This is a paragraph (default)

This is a paragraph (primary)

This is a paragraph (success)

This is a paragraph (info)

This is a paragraph (warning)

This is a paragraph (danger)


<template>
  <!--Paragraph size-->
  <p class="paragraph rem-125">This is a paragraph at 1.25rem</p>

  <!--Paragraph color-->
  <p class="paragraph text-primary">This is a paragraph (primary)</p>
</template>