Customization

If you're familiar with Sass and want to customize Buefy with your own theme, follow these steps

1

Install Buefy via npm

npm install buefy

Or clone the repository: https://github.com/buefy/buefy

2

Set your variables with Sass

Tip: You can see all of Bulma's variables.

There's also two other variables created by Buefy:

  1. $speed-slow: 150ms !default
  2. $speed-slower: 250ms !default
You might also have to install node-sass and sass-loader depending on your environment.

It can be done in your App.vue within the <style lang="scss"> tag, or in a separate .scss file.

// Import Bulma's core
@import "~bulma/sass/utilities/_all";

// Set your colors
$primary: #8c67ef;
$primary-invert: findColorInvert($primary);
$twitter: #4099FF;
$twitter-invert: findColorInvert($twitter);

// Setup $colors to use as bulma classes (e.g. 'is-twitter')
$colors: (
    "white": ($white, $black),
    "black": ($black, $white),
    "light": ($light, $light-invert),
    "dark": ($dark, $dark-invert),
    "primary": ($primary, $primary-invert),
    "info": ($info, $info-invert),
    "success": ($success, $success-invert),
    "warning": ($warning, $warning-invert),
    "danger": ($danger, $danger-invert),
    "twitter": ($twitter, $twitter-invert)
);

// Links
$link: $primary;
$link-invert: $primary-invert;
$link-focus-border: $primary;

// Import Bulma and Buefy styles
@import "~bulma";
@import "~buefy/src/scss/buefy";

3

Import and use Buefy

Please note that import 'buefy/dist/buefy.css' from the start section has been omitted.
import Vue from 'vue'
import Buefy from 'buefy'

Vue.use(Buefy)

This page is open source. Noticed a typo or something's unclear?

Improve this page on GitHub