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))
+
+