From 8bce7d2df0412fb912c40f65541962b5ab631865 Mon Sep 17 00:00:00 2001 From: Grummfy Date: Fri, 31 May 2019 12:08:39 +0200 Subject: [PATCH] fix jgthms/bulma#2244 --- docs/documentation/customize/variables.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/documentation/customize/variables.html b/docs/documentation/customize/variables.html index eb57aafe..b8f2b342 100644 --- a/docs/documentation/customize/variables.html +++ b/docs/documentation/customize/variables.html @@ -62,6 +62,25 @@ breadcrumb:

To override any of these variables, just set them before importing Bulma.

+

+ Simple variable are quiete easy to change. + + {{ initial_vars['$blue'].name }}: #00008B + +
+ For list, you mostly need to rewrite it. + + $size-8: 0.25rem + $sizes: $size-1 $size-2 $size-3 $size-4 $size-5 $size-6 $size-7 $size-8 + +
+ But some liste already have customize option, like the colors. In order to add custom colors (is-orange), you need to customize $custom-colors variable. + + $orange: #ff8606 + $orange-invert: findColorInvert($orange) + $custom-colors: ("orange": ($orange, $orange-invert)) + +

{% include elements/anchor.html name="Initial variables" %}