Fluent Design Theme based on Bulma CSS framework, inspired by Microsoft’s Fluent Design System
npm install bulma-fluent
sh
npm install bulma-fluent
`
$3
`sh
yarn add bulma-fluent
`
$3
After installation, you can import the CSS/Sass file into your project using this snippet:
#### css
`sh
import 'bulma-fluent/css/bulma.css'
`
#### sass
`sh
import 'bulma-fluent/bulma.sass'
`
CDN link
unpkg.com/bulma-fluent
Download from this Repository
Download Latest Minified Build
Customize
Simply set your own Sass variables before importing Bulma-fluent.
`scss
// Set your brand colors
$primary: #8a4d76;
$info: #fa7c91;
$success: #757763;
$warning: yellow;
$danger: red;
$light: #ccc;
$dark: #444;
// Update font family
$family-sans-serif: 'Calibri', 'Arial';
// Import the Bulma-fluent
@import 'bulma-fluent/bulma.sass';
``