11.) Which Bootstrap utility allows color customization for components?
A) $theme-variable
B) $colors-primary
C) $color-picker
D) $theme-colors
12.) How do you add a new color to Bootstrap’s theme colors?
A) Modify _variables.scss
B) Edit Bootstrap’s CSS file
C) Add a new CSS class
D) Use JavaScript to add a color
13.) What does the $enable-rounded variable control?
A) Enables card borders
B) optiEnables rounded buttons onlyon2
C) Enables rounded corners for all elements
D) Enables flexbox in Bootstrap
14.) What variable controls the default font size in Bootstrap?
A) $font-size-base
B) $text-size
C) $default-font
D) $primary-font-size
15.) How do you disable the default Bootstrap shadows?
A) $shadow-none: true;
B) $box-shadow: none;
C) $disable-shadows: true;
D) $enable-shadows: false;
16.) How do you change the default container width in Bootstrap?
A) Use JavaScript to adjust width
B) Use container-fluid
C) Set max-width in CSS
D) Modify $container-max-widths
17.) How do you globally enable dark mode in Bootstrap?
A) $enable-dark-mode: true;
B) op.dark-mode {}ion2
C) @use dark-theme;
D) data-theme=”dark”
18.) Which variable sets the default color for Bootstrap’s navbar in light mode?
A) $navbar-bg-color
B) $navbar-light-color
C) $navbar-default
D) $navbar-theme
19.) What is the default background color for Bootstrap’s primary button?
A) $btn-color
B) $btn-bg-primary
C) $btn-primary-bg
D) $btn-theme-primary
20.) How do you enable the Bootstrap grid system to use Flexbox?
A) $enable-grid-flexbox: true;
B) $enable-flex: true;
C) $use-flexbox: true;
D) $grid-flex-enable: true;
Related